Exception: Bundler::Thor::UnknownArgumentError
- Defined in:
- lib/bundler/vendor/thor/lib/thor/error.rb
Defined Under Namespace
Classes: SpellChecker
Instance Attribute Summary collapse
-
#switches ⇒ Object
readonly
Returns the value of attribute switches.
-
#unknown ⇒ Object
readonly
Returns the value of attribute unknown.
Instance Method Summary collapse
-
#initialize(switches, unknown) ⇒ UnknownArgumentError
constructor
A new instance of UnknownArgumentError.
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
#switches ⇒ Object (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 |
#unknown ⇒ Object (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 |