method
run
v2_6_3 -
Show latest stable
- Class:
Bundler::Thor::DynamicCommand
run(instance, args = [])public
No documentation available.
# File lib/bundler/vendor/thor/lib/thor/command.rb, line 126
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