class StateInterface
Attributes
state[RW]
Public Instance Methods
==(other_state)
click to toggle source
# File server/redux-os/config/e?ii/state/state_interface.rb, line 28 def ==(other_state) self.object_id == other_state.object_id end
inspect()
click to toggle source
# File server/redux-os/config/e?ii/state/state_interface.rb, line 24 def inspect "Inspect: State, object id: #{self.object_id} - #{state.inspect}" end
to_s()
click to toggle source
attr_accessor :previous_states
def initialize
@previous_states = []
end
# File server/redux-os/config/e?ii/state/state_interface.rb, line 20 def to_s "State #{state}" end