Method: Bundler::Resolver::Candidate#==

Defined in:
lib/bundler/resolver/candidate.rb

#==(other) ⇒ Object



60
61
62
63
64
# File 'lib/bundler/resolver/candidate.rb', line 60

def ==(other)
  return unless other.is_a?(self.class)

  version == other.version && priority == other.priority
end