I need to create a object history, as I’ll have multiple editors for a
site i am working on. Of course it would be great to have the ability
to restore an object to its state and undo the damage due to a bad
editor, but I’ll settle for a system that will tell me who to blame.
Basically I want to track who changed what on what object. I would
like your input on the best way to do this, or someone to stop me if
its already been done.
My first thought, was to simply make the activity log and log the
“self.changed.to_yaml” to the database, but I would like more
information then that if possible, adding this along with the
“self.to_yaml” would provide semi-readable output on the changed
values but no details on the original values.
I would, if at all possible like to make it a bit more detailed, but
right now I’m looking for someone with a bit more experience in AR to
provide me with some tips/tricks.
Haven’t used it myself, but looks to be able to revert objects to
pretty much any previous version and show what changed between
arbitrary pairs of versions.
Haven’t used it myself, but looks to be able to revert objects to
pretty much any previous version and show what changed between
arbitrary pairs of versions.
–Matt J.
Ooh, thanks! I’m writing a medical records app, so I’m likely to need
this soon.
Haven’t used it myself, but looks to be able to revert objects to
pretty much any previous version and show what changed between
arbitrary pairs of versions.
–Matt J.
I have to agree, that looks great. Thanks for the link.
Haven’t used it myself, but looks to be able to revert objects to
pretty much any previous version and show what changed between
arbitrary pairs of versions.
–Matt J.
So I looked into Vestal Versions and it appears there is an issue with
it using the class name Tag
I already have a tagging and tags relationship and their use of those
names is causing problems with Thinking Sphinx and Formtastic
When thinking sphinx tries to index tag_ids, or when formtastic
queries the tag relationship its talking to the VestalVersions model,
which doesn’t talk like a normal relationship. I end up with the
following error:
“`reflect_on_association’ for VestalVersions::Tagging:Module”
If I remove thinking sphinx’s index on tag_ids it will be all fine and
dandy until formtastic throws the same error.
Brian
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.