Module: Kettle::Family::CLI::ExecutionOptions

Included in:
AddChangelog, BumpVersion, Install, Release, WorkflowCommand
Defined in:
lib/kettle/family/cli.rb

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



47
48
49
50
51
52
# File 'lib/kettle/family/cli.rb', line 47

def self.included(base)
  base.option :execute, desc: "Execute external workflow commands"
  base.option :dry_run, long: "--dry-run", desc: "Plan external workflow commands without running them" do
    options[:execute] = false
  end
end