Method: FSM::System::DSL#method_missing
- Defined in:
- lib/fsm-0.0.0/dsl.rb
#method_missing(m, *a, &b) ⇒ Object
60 61 62 63 64 65 66 |
# File 'lib/fsm-0.0.0/dsl.rb', line 60 def method_missing m, *a, &b if fsm.respond_to? m fsm.send m, *a, &b else super end end |