Created
April 12, 2013 18:56
-
-
Save pithyless/5374257 to your computer and use it in GitHub Desktop.
Equalable ruby mixin.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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