Method: Bundler::Thor.default_command

Defined in:
lib/bundler/vendor/thor/lib/thor.rb

.default_command(meth = nil) ⇒ Object Also known as: default_task

Sets the default command when thor is executed without an explicit command to be called.

Parameters

meth<Symbol>

name of the default command



21
22
23
24
25
26
27
# File 'lib/bundler/vendor/thor/lib/thor.rb', line 21

def default_command(meth = nil)
  if meth
    @default_command = meth == :none ? "help" : meth.to_s
  else
    @default_command ||= from_superclass(:default_command, "help")
  end
end