Module: ActiveRecord::Acts::Readable::ClassMethods
- Defined in:
- lib/acts-as-readable.rb
Instance Method Summary collapse
Instance Method Details
#acts_as_readable ⇒ Object
9 10 11 12 13 14 15 |
# File 'lib/acts-as-readable.rb', line 9 def acts_as_readable has_many :readings, :as => :readable has_many :users_who_read, :through => :readings, :source => :user include ActiveRecord::Acts::Readable::InstanceMethods extend ActiveRecord::Acts::Readable::SingletonMethods end |