Module: ImmosquareActiveRecordChangeTracker::ClassMethods
- Defined in:
- lib/immosquare-active-record-change-tracker.rb
Instance Method Summary collapse
-
#kept_in_db ⇒ Object
## Can be improved with other gems like paranoia ============================================================##.
- #track_active_record_changes(options = {}, &modifier_block) ⇒ Object
Instance Method Details
#kept_in_db ⇒ Object
##
Can be improved with other gems like paranoia
##
15 16 17 |
# File 'lib/immosquare-active-record-change-tracker.rb', line 15 def kept_in_db paranoid? end |
#track_active_record_changes(options = {}, &modifier_block) ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/immosquare-active-record-change-tracker.rb', line 19 def track_active_record_changes( = {}, &modifier_block) ##============================================================## ## Inclut les méthodes d'instance nécessaires ##============================================================## include(ImmosquareActiveRecordChangeTracker::InstanceMethods) ##============================================================## ## Construire dynamiquement les options de l'association ##============================================================## = { :as => :recordable, :class_name => "ImmosquareActiveRecordChangeTracker::HistoryRecord" } ##============================================================## ## Ajouter :dependent => :destroy si acts_as_paranoid n'est pas utilisé ## on se base sur paranoia_column car acts_as_paranoid répond true ## sur tous les modèles du temps que la gem est incluse ##============================================================## [:dependent] = :destroy if !kept_in_db ##============================================================## ## Ajout de l'association has_many :history_records ##============================================================## has_many(:history_records, -> { order(:created_at => :desc) }, **) ##============================================================## ## Stocker les options dans un attribut de classe ##============================================================## class_attribute(:history_options) self. = ##============================================================## ## Stocker le bloc du modificateur s'il est fourni ##============================================================## [:modifier_block] = modifier_block if block_given? ##============================================================## ## Configure le callback after_save et after_destroy ##============================================================## after_save(:save_change_history) after_destroy(:delete_change_history) after_real_destroy(:delete_all_change_histories) if paranoid? end |