class Flipper::Actor
Attributes
flipper_id[R]
Public Class Methods
new(flipper_id)
click to toggle source
# File lib/flipper/actor.rb, line 7 def initialize(flipper_id) @flipper_id = flipper_id end
Public Instance Methods
eql?(other)
click to toggle source
# File lib/flipper/actor.rb, line 11 def eql?(other) self.class.eql?(other.class) && @flipper_id == other.flipper_id end
Also aliased as: ==