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
1answer
171 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
162 views
Vestal Versions changes_between not working for me
I was expecting it to be the union of all changes between 2 versions. (using vestal versions 1.0.2)
ruby-1.8.7-p174 > contact.version
=> 12
ruby-1.8.7-p174 > ...
2
votes
1answer
761 views
Vestal Versions - Rails 3 Support?
I'm real interested in using Vestal Versions with Rails 3. Does anyone know if Rails 3 works with Vestal Versions? I've heard some users are running into issue:
ActiveRecord::DangerousAttributeError: ...
2
votes
1answer
243 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", ...
2
votes
2answers
487 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 => ...
1
vote
1answer
103 views
how to insert user_id,user_name,user_type with vestal versions?
how to insert user_id,user_name,user_type with vestal versions into the versions table ?
class Page < ActiveRecord::Base
versioned
end
1
vote
1answer
229 views
Paperclip versioning files with vestal_versions
I have it set up right now to save Images to my rails filesystem and keep the old version of the file in a path like /images/:id/:version/:filename
How do I use vestal_versions to get the url of the ...
1
vote
1answer
279 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
508 views
Vestal_versions and acts_as_taggable_on
Does anybody successfully integrated vestal versions and acts_as_taggable_on plugins? I've added to my app, that using acts_as_taggable_on following line to environment.rb
config.gem ...
1
vote
1answer
213 views
Is this a bug in Vestal Versions or am I doing something wrong
I think I might have discovered a bug in Vestal Versions (http://github.com/laserlemon/vestal_versions) -- it seems like revert_to's behavior depends on the reverts I've done in the past with the ...
1
vote
1answer
520 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 ...
0
votes
1answer
120 views
Why am I getting this error: unknown attribute: data_changes
I get this error and I don't know how to debug it. It occurs it seems at the 'save' method in my create action for my controller:
I think I started getting problems when I deployed vestal_versions:
...
0
votes
1answer
48 views
Rails - really_create_a_version in the model
I'm using the Rails 3 Vestal Versions gem: https://github.com/lailsonbm/vestal_versions
I'd like to create some logic to determine if/when to create a new version on a model update. Per the specs, I ...
0
votes
1answer
214 views
Vestal Versions -
I'm using the Vestal Version Fork here for Rails 3 support: http://github.com/adamcooper/vestal_versions/
The issue I'm having is that the updated_by => current_user is not storing in the versions ...
0
votes
1answer
67 views
Model changes to widgets (price/description) over time in Rails
I recently asked this question and the answer makes alot of sense to me. Now I ponder how those answers hold up in an environment like Rails where there are plugins/gems available like, say, ...
0
votes
1answer
749 views
vestal_versions : problem with column named changes
I am working with vestal version for 2 months. Everything was fine until this afternoon.
I didn't done anything special(or i don't remembered...) but the code works fine on others computers...
The ...