Sha256: c97909e1b19cef2eaee8cd57e0db5625517e4594d712fdcd14454dc9cd4bf872
Contents?: true
Size: 379 Bytes
Versions: 42
Compression:
Stored size: 379 Bytes
Contents
class Silencer include AASM aasm :whiny_transitions => false do state :silent, :initial => true state :crying state :smiling event :cry do transitions :from => :silent, :to => :crying end event :smile do transitions :from => :crying, :to => :smiling end event :smile_any do transitions :to => :smiling end end end
Version data entries
42 entries across 42 versions & 1 rubygems