benhoskings / is_paranoid forked from semanticart/is_paranoid

ActiveRecord 2.3 compatible gem "allowing you to hide and restore records without actually deleting them." Yes, like acts_as_paranoid, only with less code and less complexity.

This URL has Read+Write access

is_paranoid / CHANGELOG
100644 20 lines (15 sloc) 0.747 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
This will only document major changes. Please see the commit log for minor changes.
 
-2009-04-27
* restoring models now cascades to child dependent => destroy models via Matt Todd
 
-2009-04-22
* destroying and restoring records no longer triggers saving/updating callbacks
 
-2009-03-28
* removing syntax for calculation require (all find and ActiveRecord calculations are done on-the-fly now via method_missing)
* adding ability to specify alternate fields and values for destroyed objects
* adding in support for _destroyed_only methods (with inspiration from David Krmpotic)
* adding init.rb via David Krmpotic
* adding jewler tasks via Scott Woods
 
-2009-03-24
* requiring specific syntax to include calculations
 
-2009-03-21
* initial release