Sha256: ccdbffec6c7b82534e0b4b1de55cea07af4f253f8f4cd06ec6d6a082171d9471

Contents?: true

Size: 495 Bytes

Versions: 2

Compression:

Stored size: 495 Bytes

Contents

desc 'deliver your feature branch'
long_desc 'merge your feature branch down to your base branch, and cleanup your feature branch'

command :deliver do |c|
  c.desc 'merge your feature branch down to your base branch, and cleanup your feature branch'
  c.switch [:f, :'skip-lgtm'], desc: 'skip the lgtm checks and deliver your feature branch'
  c.action do |global_options,options,args|
    deliver_options = {:skip_lgtm => options[:'skip-lgtm']}
    GitReflow.deliver deliver_options
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
git_reflow-0.8.1 lib/git_reflow/commands/deliver.rb
git_reflow-0.8.0 lib/git_reflow/commands/deliver.rb