Method: Gem::Molinillo::DependencyGraph::Vertex#shallow_eql?
- Defined in:
- lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb
#shallow_eql?(other) ⇒ Boolean
115 116 117 118 119 120 |
# File 'lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb', line 115 def shallow_eql?(other) return true if equal?(other) other && name == other.name && payload == other.payload end |