lib/flipper/actor.rb in flipper-0.24.0 vs lib/flipper/actor.rb in flipper-0.24.1
- old
+ new
@@ -10,7 +10,11 @@
def eql?(other)
self.class.eql?(other.class) && @flipper_id == other.flipper_id
end
alias_method :==, :eql?
+
+ def hash
+ flipper_id.hash
+ end
end
end