Method: Gem::Resolver::APISpecification#==
- Defined in:
- lib/rubygems/resolver/api_specification.rb
#==(other) ⇒ Object
:nodoc:
43 44 45 46 47 48 49 |
# File 'lib/rubygems/resolver/api_specification.rb', line 43 def ==(other) # :nodoc: self.class === other && @set == other.set && @name == other.name && @version == other.version && @platform == other.platform end |