Exception: Gem::MissingSpecError
Relationships & Source Files | |
Extension / Inclusion / Inheritance Descendants | |
Subclasses:
|
|
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
LoadError ,
LoadError
|
|
Instance Chain:
self,
LoadError ,
LoadError
|
|
Inherits: |
Gem::LoadError
|
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 LoadError
to catch all types of load errors.
Class Method Summary
Instance Attribute Summary
LoadError
- Inherited
#name | Name of gem. |
#requirement |
|
Instance Method Summary
- #build_message private
- #message Internal use only
Constructor Details
.new(name, requirement, extra_message = nil) ⇒ MissingSpecError
# File 'lib/rubygems/errors.rb', line 28
def initialize(name, requirement, =nil) @name = name @requirement = requirement @extra_message = end
Instance Method Details
#build_message (private)
[ GitHub ]# File 'lib/rubygems/errors.rb', line 41
def total = Gem::Specification.stubs.size "Could not find '#{name}' (#{requirement}) among #{total} total gem(s)\n" end
#message
This method is for internal use only.
[ GitHub ]