aasm/spec/models/bar.rb

16 lines
177 B
Ruby
Raw Normal View History

2013-04-21 16:43:03 +00:00
class Bar
include AASM
aasm do
state :read
state :ended
event :foo do
transitions :to => :ended, :from => [:read]
end
end
end
class Baz < Bar
end