1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00
aasm/API
2013-04-24 12:57:06 +02:00

9 lines
160 B
Text

Overwrite method to read the current state
class MyClass
include AASM
def aasm_read_state
# retrieve the current state manually
end
end