Method: Tetra::Project#dry_running?
- Defined in:
- lib/tetra/project.rb
#dry_running? ⇒ Boolean
returns true iff we are currently dry-running
61 62 63 64 |
# File 'lib/tetra/project.rb', line 61 def dry_running? latest_comment = @git.latest_comment("tetra: dry-run-") !latest_comment.nil? && !(latest_comment =~ /tetra: dry-run-finished/) end |