Exception: Gem::LoadError
- Inherits:
 - 
      LoadError
      
        
- Object
 - LoadError
 - Gem::LoadError
 
 
- Defined in:
 - lib/rubygems/errors.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.
Direct Known Subclasses
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Name of gem.
 - 
  
    
      #requirement  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Version requirement of gem.
 
Instance Attribute Details
#name ⇒ Object
Name of gem
      18 19 20  | 
    
      # File 'lib/rubygems/errors.rb', line 18 def name @name end  | 
  
#requirement ⇒ Object
Version requirement of gem
      21 22 23  | 
    
      # File 'lib/rubygems/errors.rb', line 21 def requirement @requirement end  |