class Xcodeproj::Project

def ==(other)

Returns:
  • (Boolean) - whether the project is equivalent to the given object.

Parameters:
  • other (#to_hash) -- the object to compare.
def ==(other)
  other.respond_to?(:to_hash) && to_hash == other.to_hash
end