Module: AASM::Persistence
- Defined in:
- lib/alexrevin-aasm_numerical/persistence.rb,
lib/alexrevin-aasm_numerical/persistence/active_record_persistence.rb
Defined Under Namespace
Modules: ActiveRecordPersistence
Class Method Summary collapse
-
.set_persistence(base) ⇒ Object
Checks to see this class or any of it’s superclasses inherit from ActiveRecord::Base and if so includes ActiveRecordPersistence.
Class Method Details
.set_persistence(base) ⇒ Object
Checks to see this class or any of it’s superclasses inherit from ActiveRecord::Base and if so includes ActiveRecordPersistence
5 6 7 8 9 10 11 12 13 |
# File 'lib/alexrevin-aasm_numerical/persistence.rb', line 5 def self.set_persistence(base) # Use a fancier auto-loading thingy, perhaps. When there are more persistence engines. hierarchy = base.ancestors.map {|klass| klass.to_s} if hierarchy.include?("ActiveRecord::Base") require File.join(File.dirname(__FILE__), 'persistence', 'active_record_persistence') base.send(:include, AASM::Persistence::ActiveRecordPersistence) end end |