mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
16 lines
406 B
Ruby
16 lines
406 B
Ruby
require 'active_record'
|
|
|
|
class InvalidPersistor < ActiveRecord::Base
|
|
include AASM
|
|
aasm :column => :status, :skip_validation_on_save => true do
|
|
state :sleeping, :initial => true
|
|
state :running
|
|
event :run do
|
|
transitions :to => :running, :from => :sleeping
|
|
end
|
|
event :sleep do
|
|
transitions :to => :sleeping, :from => :running
|
|
end
|
|
end
|
|
validates_presence_of :name
|
|
end
|