Skip to content

Instantly share code, notes, and snippets.

@bobmcwhirter
Created November 30, 2009 17:57
Show Gist options
  • Save bobmcwhirter/245596 to your computer and use it in GitHub Desktop.
Save bobmcwhirter/245596 to your computer and use it in GitHub Desktop.
define_instance_states do
start.to( :pending ) .automatically
pending.to( :running ) .automatically
pending.to( :stopped ) .on( :stop )
running.to( :running ) .on( :reboot )
running.to( :shutting_down ) .on( :stop )
shutting_down.to( :stopped ) .automatically
stopped.to( :finish ) .automatically
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment