1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00
aasm/spec/models/parametrised_event.rb

30 lines
710 B
Ruby
Raw Normal View History

2012-12-02 02:54:58 -05:00
class ParametrisedEvent
include AASM
aasm do
state :sleeping, :initial => true
state :showering
state :working
state :dating
state :prettying_up
event :wakeup do
transitions :from => :sleeping, :to => [:showering, :working]
end
event :dress do
transitions :from => :sleeping, :to => :working, :after => :wear_clothes
transitions :from => :showering, :to => [:working, :dating], :after => Proc.new { |*args| wear_clothes(*args) }
transitions :from => :showering, :to => :prettying_up, :after => [:condition_hair, :fix_hair]
2012-12-02 02:54:58 -05:00
end
end
2015-05-05 06:16:25 -04:00
def wear_clothes(shirt_color, trouser_type=nil)
2012-12-02 02:54:58 -05:00
end
def condition_hair
end
def fix_hair
end
end