Module: PaperTrail::Model
- Defined in:
- lib/paper_trail/has_paper_trail.rb
Defined Under Namespace
Modules: ClassMethods, InstanceMethods
Instance Attribute Summary (collapse)
-
- (Object) version
The version this instance was reified from.
Class Method Summary (collapse)
Instance Attribute Details
- (Object) version
The version this instance was reified from.
8 9 10 |
# File 'lib/paper_trail/has_paper_trail.rb', line 8 def version @version end |
Class Method Details
+ (Object) included(base)
4 5 6 7 8 9 |
# File 'lib/paper_trail/has_paper_trail.rb', line 4 def self.included(base) base.send :extend, ClassMethods # The version this instance was reified from. attr_accessor :version end |