Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
5
votes
3answers
232 views

General question about Ruby

I have installed the acts_as_versioned plugin from github.com in my rails application, and there was a block of code that I don't fully understand, I was hoping someone could clear this up for me ...
2
votes
2answers
528 views

What's the best way to store the ActiveRecord Models with Versions and their Associations with Versions?

If all I have is one model (for example Wiki) and want to save it along with its versions, I could use acts_as_versioned plugin which stores the wikis in "wikis" table and its versions in ...
1
vote
0answers
23 views

Rails ActiveRecord plugin acts_as_versioned for Java (JPA)

Anyone know of an equivalent of the acts_as_versioned plugin for ActiveRecord in Rails for Java (more specifically for JPA) I'm asking before I have to go to the trouble of re-modelling to accomodate ...
1
vote
0answers
263 views

Rails - PaperClip & Acts_As_Versioned - Accessing a Photo URL

I've implemented the following: File versioning in Ruby on Rails with Paperclip & acts_as_versioned: ...
1
vote
2answers
1k views

Rails & Acts-as-versioned: How would you restfully revert records?

How can you revert records in a way that respects REST conventions and routing? I am looking for examples of how to setup my routes.rb and build the link & controller action to do the revert. ...
0
votes
2answers
89 views

Acts_as_Version is there a way to skip a versioning from occurring on save?

Using rails acts_as_versioned, is there a way to skip a versioning event from happening, and just allowing a regular save?
0
votes
0answers
137 views

Rails - Acts_as_versioned delete a specific version — help with the route

I'm using Acts_as_versioned with my Attachments model. Given an Attachment with 6 versions. I want to be able to delete a specific version. Model: def clear_old_version(version) ...