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

34 lines
520 B
Ruby

class Foo
include AASM
aasm do
state :open, :initial => true, :exit => :exit
state :closed, :enter => :enter
event :close, :success => :success_callback do
transitions :from => [:open], :to => [:closed]
end
event :null do
transitions :from => [:open], :to => :closed, :guard => :always_false
end
end
def always_false
false
end
def success_callback
end
def enter
end
def exit
end
end
class FooTwo < Foo
include AASM
aasm do
state :foo
end
end