search for: acts_as_archived

Displaying 2 results from an estimated 2 matches for "acts_as_archived".

2008 May 15
13
ANNOUNCE: act_as_soft_deletable - new rails plugin for soft deleting / disabling ActiveRecord models
Acts_as_soft_deletable is a rails plugin that provides the ability to soft delete or disable models. When models are destroyed, they will be archived so that they can later be restored easily. Its similar to acts_as_paranoid but uses a different approach that should make it a little more foolproof. See the README at the following url for a better description. github url:
2006 Apr 05
0
Advice needed for new versioning plugin
I''m working on a new plugin called acts_as_archived. It is based on acts_as_versioned, but uses a different table schema and has some other features. The table design is like so (let''s say we''re dealing with models called Record): records id archived_record_id archived_records id record_id name date version etc The main reco...