mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
11 lines
155 B
Ruby
11 lines
155 B
Ruby
class ThisNameBetterNotBeInUse
|
|
include AASM
|
|
|
|
aasm do
|
|
state :initial
|
|
state :symbol
|
|
state :string
|
|
state :array
|
|
state :proc
|
|
end
|
|
end
|