Method: Halite::Dependencies::Dependency#==

Defined in:
lib/halite/dependencies.rb

#==(other) ⇒ Object

Since:

  • 1.0.0



31
32
33
34
35
# File 'lib/halite/dependencies.rb', line 31

def ==(other)
  self.name == other.name && \
  self.requirement == other.requirement && \
  self.type == other.type
end