Sha256: 468539dacb9497020d109811424583e2e87d8f2cad0ed08be50e729be30c2f33
Contents?: true
Size: 323 Bytes
Versions: 19
Compression:
Stored size: 323 Bytes
Contents
class SimpleExample include AASM aasm do state :initialised, :initial => true state :filled_out state :authorised event :fill_out do transitions :from => :initialised, :to => :filled_out end event :authorise do transitions :from => :filled_out, :to => :authorised end end end
Version data entries
19 entries across 19 versions & 1 rubygems