Sha256: 59457d053e9ea1a21f6d215fa3503399b406964fb9a2ed5dcf6c5e1580f5dedc
Contents?: true
Size: 533 Bytes
Versions: 2
Compression:
Stored size: 533 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 = { base: args[0], 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.3 | lib/git_reflow/commands/deliver.rb |
git_reflow-0.8.2 | lib/git_reflow/commands/deliver.rb |