Skip to content

Instantly share code, notes, and snippets.

@Martin91
Created June 13, 2014 07:45
Show Gist options
  • Save Martin91/f64d1de98cb34b09defe to your computer and use it in GitHub Desktop.
Save Martin91/f64d1de98cb34b09defe to your computer and use it in GitHub Desktop.
state_machine dynamical initial state require states list
# From http://stackoverflow.com/a/23497743
state_machine :state, initial: ->(t) { t.active? ? :seeking_flesh : :dormant } do
state :dormant, :seeking_flesh, :attacking # this must be present
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment