Sha256: 124284ac7b714ac0e9fd9af14ff35bb1b3740d3f884dcf189c8986f7e16c636f
Contents?: true
Size: 311 Bytes
Versions: 26
Compression:
Stored size: 311 Bytes
Contents
module Models class Process include AASM aasm_state :sleeping aasm_state :running aasm_state :suspended aasm_event :start do transitions :from => :sleeping, :to => :running end aasm_event :stop do transitions :from => :running, :to => :suspended end end end
Version data entries
26 entries across 26 versions & 1 rubygems