Exception: Bundler::Thor::UnknownArgumentError
- Includes:
- if defined?(DidYouMean::SpellChecker) && defined?(DidYouMean::Correctable) # rubocop:disable Naming/ConstantName Moduleif defined?(DidYouMean::SpellChecker) && defined?(DidYouMean::Correctable) # rubocop:disable Naming/ConstantName Module.new do def to_s super + DidYouMean.formatter.message_for(corrections) end def corrections @corrections ||= self.class.const_get(:SpellChecker).new(self).corrections end end end
- 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.
85 86 87 88 89 90 |
# File 'lib/bundler/vendor/thor/lib/thor/error.rb', line 85 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.
83 84 85 |
# File 'lib/bundler/vendor/thor/lib/thor/error.rb', line 83 def switches @switches end |
#unknown ⇒ Object (readonly)
Returns the value of attribute unknown.
83 84 85 |
# File 'lib/bundler/vendor/thor/lib/thor/error.rb', line 83 def unknown @unknown end |