Method: Gem::Dependency#==

Defined in:
lib/rubygems/dependency.rb

#==(other) ⇒ Object

:nodoc:



168
169
170
171
172
173
# File 'lib/rubygems/dependency.rb', line 168

def ==(other) # :nodoc:
  Gem::Dependency === other &&
    name        == other.name &&
    type        == other.type &&
    requirement == other.requirement
end