Displaying 1 result from an estimated 1 matches for "audit_upd".
Did you mean:
  audit_pid
  
2006 Sep 04
2
"include" versus "extend" - what's the difference
...able ready.
   #
   #   class User < ActiveRecord::Base
   #     acts_as_audited
   #   end
   #
   # See
<tt>CollectiveIdea::Acts::Audited::ClassMethods#acts_as_audited</tt>
   # for configuration options
   module Audited
     CALLBACKS = [:clear_changed_attributes, :audit_create,
:audit_update, :audit_destroy]
     def self.included(base) # :nodoc:
       base.extend ClassMethods
     end
     module ClassMethods
       # == Configuration options
       #
       # * <tt>except</tt> - Excludes fields from being saved in the
audit log.
       #   By default, acts_as_audite...