mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
8 lines
123 B
Ruby
8 lines
123 B
Ruby
![]() |
require_relative 'super_class'
|
||
|
class SubClassWithMoreStates < SuperClass
|
||
|
include AASM
|
||
|
aasm do
|
||
|
state :foo
|
||
|
end
|
||
|
end
|