Sha256: 94f71b80728998cf07113cddaa6c8855420aac499f001178b1909c02a6752552

Contents?: true

Size: 475 Bytes

Versions: 4

Compression:

Stored size: 475 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|
    GitReflow.deliver base: args[0], force: options[:'skip-lgtm']
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
git_reflow-0.8.10 lib/git_reflow/commands/deliver.rb
git_reflow-0.8.9 lib/git_reflow/commands/deliver.rb
git_reflow-0.8.8 lib/git_reflow/commands/deliver.rb
git_reflow-0.8.7 lib/git_reflow/commands/deliver.rb