Module: Kettle::Family::CLI::SelectionOptions
- Included in:
- BaseCommand
- Defined in:
- lib/kettle/family/cli.rb
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
39 40 41 42 43 |
# File 'lib/kettle/family/cli.rb', line 39 def self.included(base) base.option :only, value: {type: String, usage: "MEMBERS"}, desc: "Select comma-separated members" base.option :exclude, value: {type: String, usage: "MEMBERS"}, desc: "Exclude comma-separated members" base.option :start_at, long: "--start-at", value: {type: String, usage: "MEMBER[@BRANCH]"}, desc: "Select from member through the end of order" end |