Exception: Gem::LoadError

Inherits:
LoadError
  • Object
show all
Defined in:
lib/rubygems.rb

Overview

Raised when RubyGems is unable to load or activate a gem. Contains the name and version requirements of the gem that either conflicts with already activated gems or that RubyGems is otherwise unable to activate.

Instance Attribute Summary collapse

Instance Attribute Details

#nameObject

Name of gem



133
134
135
# File 'lib/rubygems.rb', line 133

def name
  @name
end

#requirementObject

Version requirement of gem



136
137
138
# File 'lib/rubygems.rb', line 136

def requirement
  @requirement
end