Exception: Bundler::Thor::UnknownArgumentError

Inherits:
Error
  • Object
show all
Includes:
if defined?(DidYouMeanif defined?(DidYouMean::SpellChecker) && defined?(DidYouMeanif defined?(DidYouMean::SpellChecker) && defined?(DidYouMean::Correctable) # In order to support versions of Ruby that don't have keyword # arguments, we need our own spell checker class that doesn't take key # words. Even though this code wouldn't be hit because of the check # above, it's still necessary because the interpreter would otherwise be # unable to parse the file. class NoKwargSpellChecker < DidYouMean::SpellChecker # :nodoc: def initialize(dictionary) @dictionary = dictionary end end DidYouMean::Correctable end
Defined in:
lib/bundler/vendor/thor/lib/thor/error.rb

Defined Under Namespace

Classes: SpellChecker

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(switches, unknown) ⇒ UnknownArgumentError

Returns a new instance of UnknownArgumentError.



88
89
90
91
92
93
# File 'lib/bundler/vendor/thor/lib/thor/error.rb', line 88

def initialize(switches, unknown)
  @switches = switches
  @unknown = unknown

  super("Unknown switches #{unknown.map(&:inspect).join(', ')}")
end

Instance Attribute Details

#switchesObject (readonly)

Returns the value of attribute switches.



86
87
88
# File 'lib/bundler/vendor/thor/lib/thor/error.rb', line 86

def switches
  @switches
end

#unknownObject (readonly)

Returns the value of attribute unknown.



86
87
88
# File 'lib/bundler/vendor/thor/lib/thor/error.rb', line 86

def unknown
  @unknown
end