Method: FiniteMachine::UndefinedTransition#==
- Defined in:
- lib/finite_machine/undefined_transition.rb
#==(other) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
22 23 24 |
# File 'lib/finite_machine/undefined_transition.rb', line 22 def ==(other) other.is_a?(UndefinedTransition) && name == other.name end |