Method: Thor::DynamicCommand#run

Defined in:
lib/thor/command.rb

#run(instance, args = []) ⇒ Object



370
371
372
373
374
375
376
# File 'lib/thor/command.rb', line 370

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