Skip to content

Instantly share code, notes, and snippets.

@pithyless
Created April 12, 2013 18:56
Show Gist options
  • Save pithyless/5374257 to your computer and use it in GitHub Desktop.
Save pithyless/5374257 to your computer and use it in GitHub Desktop.
Equalable ruby mixin.
module Equalable
def ==(o)
o.class == self.class && o.equality_state == equality_state
end
alias_method :eql?, :==
def hash
equality_state.hash
end
end
class Foo
private
def equality_state
[ id, name, created_at ]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment