mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
12 lines
201 B
Ruby
12 lines
201 B
Ruby
class StateMachineWithFailedEvent
|
|
include AASM
|
|
|
|
aasm do
|
|
state :init, :initial => true
|
|
state :failed
|
|
|
|
event :failed do
|
|
transitions :from => :init, :to => :failed
|
|
end
|
|
end
|
|
end
|