diff options
author | Joshua Peek <josh@joshpeek.com> | 2010-01-30 18:38:01 -0600 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2010-01-30 18:38:01 -0600 |
commit | db49c706b62e7ea2ab93f05399dbfddf5087ee0c (patch) | |
tree | 7f369bd2b77d620e344f19ba8156c597e2493f58 /activerecord/lib/active_record/state_machine.rb | |
parent | 657d85580e914caf368a8a12ff5642e4d979ab7e (diff) | |
download | rails-db49c706b62e7ea2ab93f05399dbfddf5087ee0c.tar.gz rails-db49c706b62e7ea2ab93f05399dbfddf5087ee0c.tar.bz2 rails-db49c706b62e7ea2ab93f05399dbfddf5087ee0c.zip |
Axe AM state machine
We're going do it eventually, get it done before 3.0 is final.
Diffstat (limited to 'activerecord/lib/active_record/state_machine.rb')
-rw-r--r-- | activerecord/lib/active_record/state_machine.rb | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/activerecord/lib/active_record/state_machine.rb b/activerecord/lib/active_record/state_machine.rb deleted file mode 100644 index aebd03344a..0000000000 --- a/activerecord/lib/active_record/state_machine.rb +++ /dev/null @@ -1,24 +0,0 @@ -module ActiveRecord - module StateMachine #:nodoc: - extend ActiveSupport::Concern - include ActiveModel::StateMachine - - included do - before_validation :set_initial_state - validates_presence_of :state - end - - protected - def write_state(state_machine, state) - update_attributes! :state => state.to_s - end - - def read_state(state_machine) - self.state.to_sym - end - - def set_initial_state - self.state ||= self.class.state_machine.initial_state.to_s - end - end -end |