Method: Bundler::Thor.method_option
- Defined in:
- lib/bundler/vendor/thor/lib/thor.rb
.method_option(name, options = {}) ⇒ Object Also known as: option
Adds an option to the set of method options. If :for is given as option, it allows you to change the options from a previous defined command.
def previous_command
# magic
end
method_option :foo => :bar, :for => :previous_command
def next_command
# magic
end
Parameters
- name<Symbol>
-
The name of the argument.
- options<Hash>
-
Described below.
Options
:desc - Description for the argument. :required - If the argument is required or not. :default - Default value for this argument. It cannot be required and have default values. :aliases - Aliases for this option. :type - The type of the argument, can be :string, :hash, :array, :numeric or :boolean. :banner - String to show on usage notes. :hide - If you want to hide this option from the help.
155 156 157 158 159 160 161 162 163 |
# File 'lib/bundler/vendor/thor/lib/thor.rb', line 155 def method_option(name, = {}) scope = if [:for] find_and_refresh_command([:for]). else end build_option(name, , scope) end |