Method: Bundler::Thor::Command#initialize

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

#initialize(name, description, long_description, wrap_long_description, usage, options = nil, options_relation = nil) ⇒ Command

Returns a new instance of Command.

[View source]

5
6
7
# File 'lib/bundler/vendor/thor/lib/thor/command.rb', line 5

def initialize(name, description, long_description, wrap_long_description, usage, options = nil, options_relation = nil)
  super(name.to_s, description, long_description, wrap_long_description, usage, options || {}, options_relation || {})
end