Tagged Questions
9
votes
6answers
2k views
Versioning of Models in Ruby on Rails
I'm looking for a plugin/act to allow versioning of my models. It's kind of difficult to find a list of the available solutions. So far I gathered:
acts_as_versioned
simply_versioned
vestal_versions
...
3
votes
2answers
527 views
Versioned associations using vestal_versions?
I'd like to be sure if vestal_versions does support versioned associations (it seems like it doesn't) before switching out to another versioning gem that can support versioned associations e.g => ...
3
votes
1answer
194 views
rails wiki site - article edit highlighting/strikethrough with htmldiff maxes cpu
I'm implementing a wiki style site and want to highlight changes made to articles between successive versions. Using htmldiff to highlight changes works great, except it is rather cpu intensive. I'm ...
2
votes
1answer
250 views
How can I get vestal_versions to store the user who changed the record?
I'm using vestal_versions 1.0.2 and rails 2.3.8
I'm trying to associate a user with changes made to models as shown in the the documentation:
@user.update_attributes(:last_name => "Jobs", ...
1
vote
1answer
291 views
vestal_versions and htmldiff question of reversion
I'm guessing there's probably an easier way to do what I'm doing so that the code is less unwieldy.
I had trouble understanding how to use the revert_to method... i wanted something where i could ...
1
vote
1answer
528 views
Vestal versions not working
I'm trying to get the Vestal Version gem to work, but I keep getting this error:
>> Song.first.version
=> 8
>> Song.first.revert_to(7)
NoMethodError: undefined method `>' for ...