Exception: Gem::MissingSpecError
- Defined in:
- lib/rubygems/errors.rb
Overview
Raised when trying to activate a gem, and that gem does not exist on the system. Instead of rescuing from this class, make sure to rescue from the superclass Gem::LoadError to catch all types of load errors.
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from LoadError
Instance Method Summary collapse
-
#initialize(name, requirement, extra_message = nil) ⇒ MissingSpecError
constructor
A new instance of MissingSpecError.
-
#message ⇒ Object
:nodoc:.
Constructor Details
#initialize(name, requirement, extra_message = nil) ⇒ MissingSpecError
Returns a new instance of MissingSpecError.
28 29 30 31 32 |
# File 'lib/rubygems/errors.rb', line 28 def initialize(name, requirement, =nil) @name = name @requirement = requirement @extra_message = end |