The acts-as-versioned tag has no wiki summary.
0
votes
0answers
21 views
Using JOIN with elixir versioned entitites
We are using Elixir and ext.versioned extension. Consider:
class Checkpoint(Entity):
owner = ManyToOne('User', lazy=False)
...
acts_as_versioned()
Now Users are JOINed to Checkpoints, ...
0
votes
0answers
25 views
Add additional base class to Elixir generated Version
We are using Elixir and it's versioned extension. We also have a mixin class that provides some required functionality.
class Checkpoint(Entity,JSONMixin):
... # fields
acts_as_versioned()
...
1
vote
1answer
109 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 ...
0
votes
2answers
195 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
178 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)
...
1
vote
0answers
352 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:
...
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
...
2
votes
2answers
602 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 ...
5
votes
3answers
258 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
...
1
vote
2answers
2k 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. ...