vestal_versions adds versioning support to an ActiveRecord model. With vestal_versions, models can be reverted back to a previous revision, even to a particular date and time.
0
votes
1answer
32 views
Rails vestal_versions gem create versions without saving parent
I'm interested in using the vestal_versions gem in my rails app, but I'm wondering if anyone knows if there's any way that I can create a new version, but not actually update the associated ...
1
vote
2answers
132 views
Rails 3.2 app - Should I use a versioning gem (paper_trail or vestal_versions) or handle it manually?
My question: Should I roll my own model versioning or use one of the versioning gems that's already out there? If I should use a gem, which one seems best for this application?
Info about my app
My ...
1
vote
1answer
47 views
How can I get around NoMethodError with Vestal Versions on Rails 3.2 and Ruby 1.9.3?
OK - I think I've searched everywhere, I'd think this ought to be a duplicate question, but still don't have a basic vestal_versions (1.2.2) working after looking and trying multiple things. I'm early ...
1
vote
2answers
62 views
belongs_to a specific version
I need to store the specific version of a model with an order. I'm planning to use a versioning gem like paper_trail or vestal_versions. I'd like the correct version automatically loaded with the ...
0
votes
0answers
58 views
Building vestal_versions change summary for branching hierarchy data
I am fairly new to ruby and rails and as such feel there should be a better way to achieve my requirements.
The site I have developed is a fairly simple Rails 3 site utilizing vestal_versions for ...
2
votes
1answer
353 views
Active Record audit history
We are planning to make some of the tables audit enabled in our Rails3 application. We did look at paper_trail and it seems to store all the versions, but I wasn't sure if there was a mechanism to ...
1
vote
1answer
222 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
0
votes
1answer
253 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:
...
2
votes
0answers
196 views
Rails 3.0.3: using vestal_versions with globalize3
I am trying to add vestal_versions (1.2.2) to a site that uses globalize3 (0.0.11) for localization of the Models.
When I try to display the Version of a Model like this:
<% if can?(:edit, Page) ...
0
votes
1answer
648 views
vestal_versions
I was watching railscasts episode 177, as I need to implement some versioning in my app. But this episode was not done in Rails 3. So i went to the site of the gem itself.
...
0
votes
1answer
79 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 ...
1
vote
1answer
325 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 ...
2
votes
1answer
213 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 > ...
0
votes
1answer
304 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 ...
2
votes
1answer
1k 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: ...
0
votes
1answer
104 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, ...
2
votes
1answer
333 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", ...
3
votes
2answers
879 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
237 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 ...
0
votes
1answer
1k 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 ...
1
vote
1answer
340 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
598 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 ...
14
votes
6answers
4k 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
...
1
vote
1answer
274 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
586 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 ...
