acts_as_revisable
acts_as_revisable copied to clipboard
A framework for building heavily versioned applications
As an avid acts_as_revisable user I'd like to know whether it's compatible with Rails 3.
This is using Single Table Inheritance. The issue is easily remediated with my childish method: acts_as_revisable do revision_class_name "AccountRevision" except [:update_tracker, :last_login_on, :last_update_on, :last_login_at, :password_changed_on, :updated_at, :revoked_on, :resumed_on] end acts_as_revisable...
I like the idea of keeping the revisions inside a single table, but after so many revisions... Things get slow. Is there a simple way to have it store the...
If a branch is created from the "current_revision", then branch.branch_source appears to always point to the latest revision of the original branch. Should a branch operation save the revisable_branched_from_revision_number?