Method: Auditable::Auditor.included

Defined in:
lib/auditable/auditor.rb

.included(base) ⇒ Object



4
5
6
7
8
9
# File 'lib/auditable/auditor.rb', line 4

def self.included(base)
  base.module_eval do
    attr_accessor :audited_attribute_changes
  end
  base.extend ClassMethods
end