Method: Librarian::Dependency#consistent_with?

Defined in:
lib/librarian/dependency.rb

#consistent_with?(other) ⇒ Boolean

Returns:

  • (Boolean)


180
181
182
# File 'lib/librarian/dependency.rb', line 180

def consistent_with?(other)
  name != other.name || requirement.consistent_with?(other.requirement)
end