Sha256: 30ec405e0014c05e00fbab51680029478de6a9330b534ccd3c84cf5a7bcacbf6
Contents?: true
Size: 324 Bytes
Versions: 55
Compression:
Stored size: 324 Bytes
Contents
module Models class Process include AASM aasm do state :sleeping state :running state :suspended event :start do transitions :from => :sleeping, :to => :running end event :stop do transitions :from => :running, :to => :suspended end end end end
Version data entries
55 entries across 55 versions & 1 rubygems