Exception: Gem::MissingSpecError

Inherits:
LoadError
  • Object
show all
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

MissingSpecVersionError

Instance Attribute Summary

Attributes inherited from LoadError

#name, #requirement

Instance Method Summary collapse

Constructor Details

#initialize(name, requirement) ⇒ MissingSpecError

Returns a new instance of MissingSpecError.



31
32
33
34
# File 'lib/rubygems/errors.rb', line 31

def initialize(name, requirement)
  @name        = name
  @requirement = requirement
end

Instance Method Details

#messageObject

:nodoc:



36
37
38
39
# File 'lib/rubygems/errors.rb', line 36

def message # :nodoc:
  build_message +
    "Checked in 'GEM_PATH=#{Gem.path.join(File::PATH_SEPARATOR)}', execute `gem env` for more information"
end