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 => has_versioning. I haven't looked at the code yet but I couldn't find anything related with versioned associations from the readme file or the issue section on github. Help would be appreciated!
Versioned associations using vestal_versions?
1.3k views Asked by jpemberthy At
2
There are 2 answers
2
otaviofcs
On
I'm looking for something that appears to be very close to your needs. But I don't need to revert the associated objects, just to record them. I was thinking of handle it in a nosql way. So I can save the model version and the associations would be embedded documents.
So I can compare versions in a more comprehensive way. Right now I use paper_trail, but as it can't handle associations, it's not possible to store the tags associated to a model and see how it changes through time.
Related Questions in RUBY-ON-RAILS
- How to display legend box in tooltip text for amCharts 5 in Rails application?
- how to integrate cashfree payment gateway in ruby on rails project
- RSpec Capybara throwing Selenium error when trying to click a button with browser confirm
- rails minitest not picking up fixture properly, instance variable not percolating
- Duplicate GET requests - Rails & Heroku
- How to stub out current_user in JWT model for Rspec?
- NameError in Home#index
- Verifying Google Identity OAuth2 token with Ruby
- Error WebMock::NetConnectNotAllowedError in testing with stub using minitest in rails (using Faraday)
- why is mission_control-jobs erroring with load path error?
- Rescuing validation errors from a polymorphic association
- New error on random number assigned to local variable , Rails
- How to fix error in model with gem lockbox
- Images uploaded via Active Storage not displaying in Active Admin or on certain devices
- controller test_methods generating two errors intermittently
Related Questions in VERSIONING
- Finding all available versions of a NuGet package within a specific version range
- Flutter - How to get the build number of the app?
- Django drf-yasg API versions switch from drop down
- Sharing dependency version with NPM workspaces in monorepo
- Versioning C# projects with visual studio
- How to implement js and css versioning in hybris based project via wro4j
- Why does the Haskell PVP describe new functions as non-breaking?
- How to update version in package.json using calendar versioning
- Develop a service mesh solution that enables developers deploy and test multiple code versions
- how to add the property to delete the blob versions after X days in terraform
- Is symbol versioning widely used in linux libraries or is it just used in some specific and rare cases?
- Relocate bookmarks.xml file to maintain Sourcetree bookmarks throughout several machines (Windows)
- If a parent entity is SCD type 4 with a history table, should the child entities (one-to-many) also have a history table?
- How to make a dynamic Relationship with versioning in SQL?
- Package management - list of common version named tags? - E.g., "latest", "lts"
Related Questions in ASSOCIATIONS
- Can't get XAF/XPO association working as expected
- Is there a way to create a has_many association that just filters items from another has_many association?
- Having trouble populating an array of UUID's into their referenced type
- Sequelize - Wrong sql request generated using include, with a basic example
- How to prevent ActiveRecord from making an associated record in a callback before it is saved?
- Cannot delete GORM many2many association due to foreign key constraint
- Is there a way dynamically set class_name in belong_to associations
- Unable to import models and create associations in sequelize
- Passing an association to a pluggable widget
- How to add associations if I have a custom foreign key using Sequelize?
- How to order ActiveRecord query based on calculations
- Separate 1 column into 2 based on occurrences on the same day in R?
- ExtJS store is not updated or wrongly updated after changing associated object
- Modelling relation between two similar classes in UML
- Accessing a Match record, which belongs to a Run record, which belongs to a User record
Related Questions in VESTAL-VERSIONS
- vestal_versions increments version in Rails Console but not through UI
- use vestal versions to access object with version number
- Rails 3 vestal_versions: Create new version at parent model upon change in child model
- Rails vestal_versions gem create versions without saving parent
- Rails 3.2 app - Should I use a versioning gem (paper_trail or vestal_versions) or handle it manually?
- How can I get around NoMethodError with Vestal Versions on Rails 3.2 and Ruby 1.9.3?
- belongs_to a specific version
- Active Record audit history
- how to insert user_id,user_name,user_type with vestal versions?
- Why am I getting this error: unknown attribute: data_changes
- Rails 3.0.3: using vestal_versions with globalize3
- vestal_versions
- Rails - really_create_a_version in the model
- Paperclip versioning files with vestal_versions
- Vestal Versions changes_between not working for me
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
(At the moment of writing this) There is an associations branch in the official vestal_versions repository, It is still a basic idea and isn't merged yet in the master branch. So I decided to go with another versioning gem, specifically acts_as_revisable following the instructions in this blog post.