Class: Thor::DynamicTask
- Defined in:
- lib/bundler/vendor/thor/task.rb
Overview
A dynamic task that handles method missing scenarios.
Constant Summary
Constants inherited from Task
Instance Attribute Summary
Attributes inherited from Task
#description, #long_description, #name, #options, #usage
Instance Method Summary collapse
-
#initialize(name, options = nil) ⇒ DynamicTask
constructor
A new instance of DynamicTask.
- #run(instance, args = []) ⇒ Object
Methods inherited from Task
#formatted_usage, #hidden?, #initialize_copy
Constructor Details
#initialize(name, options = nil) ⇒ DynamicTask
Returns a new instance of DynamicTask.
101 102 103 |
# File 'lib/bundler/vendor/thor/task.rb', line 101 def initialize(name, =nil) super(name.to_s, "A dynamically-generated task", name.to_s, name.to_s, ) end |
Instance Method Details
#run(instance, args = []) ⇒ Object
105 106 107 108 109 110 111 |
# File 'lib/bundler/vendor/thor/task.rb', line 105 def run(instance, args=[]) if (instance.methods & [name.to_s, name.to_sym]).empty? super else instance.class.handle_no_task_error(name) end end |