aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/state_machine
diff options
context:
space:
mode:
authorrick <technoweenie@gmail.com>2008-06-28 11:33:50 -0700
committerrick <technoweenie@gmail.com>2008-06-28 11:33:50 -0700
commitc9e366e997c6f3a383cfaa6351fa847e92de7fe4 (patch)
tree1fce341c1b769bd78494bfb6a99a314b57d6a3ed /activemodel/lib/active_model/state_machine
parenta9d9ca16c739ec39a192d29c62f760e51040fc6e (diff)
downloadrails-c9e366e997c6f3a383cfaa6351fa847e92de7fe4.tar.gz
rails-c9e366e997c6f3a383cfaa6351fa847e92de7fe4.tar.bz2
rails-c9e366e997c6f3a383cfaa6351fa847e92de7fe4.zip
all aasm tests without activerecord moved over and passing
Diffstat (limited to 'activemodel/lib/active_model/state_machine')
-rw-r--r--activemodel/lib/active_model/state_machine/event.rb4
-rw-r--r--activemodel/lib/active_model/state_machine/machine.rb8
2 files changed, 7 insertions, 5 deletions
diff --git a/activemodel/lib/active_model/state_machine/event.rb b/activemodel/lib/active_model/state_machine/event.rb
index ea4df343de..e8bc8ebdb7 100644
--- a/activemodel/lib/active_model/state_machine/event.rb
+++ b/activemodel/lib/active_model/state_machine/event.rb
@@ -37,10 +37,6 @@ module ActiveModel
@transitions.any? { |t| t.from? state }
end
- def success?
- !!@success
- end
-
def ==(event)
if event.is_a? Symbol
name == event
diff --git a/activemodel/lib/active_model/state_machine/machine.rb b/activemodel/lib/active_model/state_machine/machine.rb
index 53ce71794f..170505c0b2 100644
--- a/activemodel/lib/active_model/state_machine/machine.rb
+++ b/activemodel/lib/active_model/state_machine/machine.rb
@@ -28,7 +28,9 @@ module ActiveModel
record.send(event_fired_callback, record.current_state, new_state)
end
- record.current_state(@name, new_state)
+ record.current_state(@name, new_state, persist)
+ record.send(@events[event].success) if @events[event].success
+ true
else
if record.respond_to?(event_failed_callback)
record.send(event_failed_callback, event)
@@ -47,6 +49,10 @@ module ActiveModel
events.map! { |event| event.name }
end
+ def current_state_variable
+ "@#{@name}_current_state"
+ end
+
private
def state(name, options = {})
@states << (state_index[name] ||= State.new(name, :machine => self)).update(options)