Class: Thor::DynamicCommand
- Defined in:
- lib/thor/command.rb
Overview
A dynamic command that handles method missing scenarios.
Constant Summary
Constants inherited from Command
Instance Attribute Summary
Attributes inherited from Command
#ancestor_name, #description, #long_description, #name, #options, #usage
Instance Method Summary collapse
-
#initialize(name, options = nil) ⇒ DynamicCommand
constructor
A new instance of DynamicCommand.
- #run(instance, args = []) ⇒ Object
Methods inherited from Command
#formatted_usage, #handle_argument_error?, #handle_no_method_error?, #hidden?, #initialize_copy, #local_method?, #not_debugging?, #private_method?, #public_method?, #required_options, #sans_backtrace, #subcommand?
Constructor Details
#initialize(name, options = nil) ⇒ DynamicCommand
Returns a new instance of DynamicCommand.
303 304 305 306 307 308 309 |
# File 'lib/thor/command.rb', line 303 def initialize(name, = nil) super( name.to_s, "A dynamically-generated command", name.to_s, name.to_s, ) end |
Instance Method Details
#run(instance, args = []) ⇒ Object
311 312 313 314 315 316 317 |
# File 'lib/thor/command.rb', line 311 def run(instance, args = []) if (instance.methods & [name.to_s, name.to_sym]).empty? super else instance.class.handle_no_command_error(name) end end |