collectiveidea / acts_as_audited

acts_as_audited is an ActiveRecord extension that logs all changes to your models in an audits table.

This URL has Read+Write access

acts_as_audited / CHANGELOG
8531b195 » brandon 2006-08-14 made Audit.changes a serial... 1 acts_as_audited ChangeLog
2 -------------------------------------------------------------------------------
938f3d9b » brandon 2009-01-27 Store all attributes on cre... Comment 3 * 2009-01-27 - Store old and new values for updates, and store all attributes on destroy.
4 Refactored revisioning methods to work as expected
d50e57f7 » metatribe 2008-10-10 updates CHANGELOG 5 * 2008-10-10 - changed to make it work in development mode
7528ff04 » brandon 2008-04-19 updated changelog and remov... 6 * 2008-04-19 - refactored to make compatible with dirty tracking in edge rails
7 and to stop storing both old and new values in a single audit
c10ca9ab » brandon 2008-04-18 Fix NoMethodError when tryi... 8 * 2008-04-18 - Fix NoMethodError when trying to access the :previous revision
9 on a model that doesn't have previous revisions [Alex Soto]
5bdb2358 » brandon 2008-03-21 updated changelog format 10 * 2008-03-21 - added #changed_attributes to get access to the changes before a
11 save [Chris Parker]
12 * 2007-12-16 - Added #revision_at for retrieving a revision from a specific
13 time [Jacob Atzen]
14 * 2007-12-16 - Fix error when getting revision from audit with no changes
15 [Geoffrey Wiseman]
16 * 2007-12-16 - Remove dependency on acts_as_list
17 * 2007-06-17 - Added support getting previous revisions
18 * 2006-11-17 - Replaced use of singleton User.current_user with cache sweeper
19 implementation for auditing the user that made the change
20 * 2006-11-17 - added migration generator
21 * 2006-08-14 - incorporated changes from Michael Schuerig to write_attribute
22 that saves the new value after every change and not just the
23 first, and performs proper type-casting before doing comparisons
24 * 2006-08-14 - The "changes" are now saved as a serialized hash
25 * 2006-07-21 - initial version