Tagged Questions

5
votes
4answers
128 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 …
0
votes
0answers
31 views

NHibernate Versioning

I'd like to do something like the acts_as_versioned Rails plugin in NHibernate. Anyone have any suggestions for how to do this? Do I have to create a class for Entity and VersionedEntity? I'm pretty …
2
votes
2answers
169 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
2answers
549 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
0answers
27 views

updated acts_as_versioned_association

hi has anyone got a acts_as_versioned or acts_as_audited that supports the models associtions ? like the acts_as_versioned_association but this doesnt work in rails 2 + ? Also can you use …
4
votes
3answers
148 views

General question about Ruby

Hi All, 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 …
0
votes
0answers
14 views

versioning has_many_polymorphs associations

I've done a research on rails versioning support and found plugins like acts_as_versioned, acts_as_versioned_association (this one have a really serious lack of documentation), simply_versioned and …