PaperTrail is a record versioning plugin for Ruby on Rails.
1
vote
2answers
23 views
undefined method 'paper_trail_event='
I've followed the extremely simple set up guide for the paper_trail gem.
In my class I've got
class MyClass
has_paper_trail on:[:update]
Everything is working fine, until I decided to set my own ...
0
votes
0answers
26 views
rails paper trail using custom version subclass with multiple database
My project contains different database and each database have multiple tables.
config/database.yml
development:
adapter: mysql2
database: mechanics
timeout: 5000
development_electronics:
...
0
votes
0answers
17 views
PaperTrail and batch versioning
In my Rails app, I have a series of objects that can be reordered on the page (each object saves its position relative to other objects on the page). I'd like to do some versioning on how these ...
0
votes
0answers
22 views
Is there an easy way to perform moderation with PaperTrail?
I'm looking around but can't find any insight on this. I'm looking to have moderated model changes. If the user is an admin they can push updates to the model, however if the user is not an admin, I ...
0
votes
2answers
174 views
Logging services ala splunk, papertrail, etc
Is Papertrail the only service of its class that allows you to react to a logged event via webhook?
A hosted logging solution is what i'm looking for like Splunk storm or Papertrail.
1
vote
2answers
142 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 ...
0
votes
1answer
49 views
papertrail, set the admin user
I am using state_machine and papertrail gems on a model (rails 3.2)
I want to track all state changes and who has originated it, papertrail works like a charm.
Now I have a situation where the ...
3
votes
1answer
73 views
paper_trail and keeping relations untouched
Is there any possibility to force paper_trail to not change relations when it's version changes?
My app is a betting software and I need to keep user bets on the one that was active at the time when ...
0
votes
1answer
80 views
Rails & Papertrail - Include previous version in query
I'm creating an application the requires Admin approval when articles are created and updated. I used paper trail to accomplish this, storing each update to the articles.
When an article is updated, ...
0
votes
1answer
161 views
Rails PaperTrail versioning
I'm using the Paper Trail gem to version one of my models.
It works very nicely, I refined when it logs versions so that it tracks updates on approved products only, this part works fine.
What I ...
0
votes
1answer
119 views
Testing with paper_trail with Rails 3
I am trying an example using paper_trail v2.6.3 in Rails 3 by following the Github Documentation for paper_trail. I want to write a spec for a model that lets me check if its versioned under ...
0
votes
1answer
97 views
Papertrail versioning & storing current versions?
I've added the Papertrail gem to my app after approx 1000 records have already been created.
Does anyone know how to populate the versions table with the current versions of my data?
Without doing ...
0
votes
1answer
77 views
Papertrail and code access security
I am currently looking into papertrail and find it very interesting.
However my web application will be deployed to web servers that I don't control.
The problem is that I use this solution to send ...
1
vote
2answers
63 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
86 views
How to add only Application log in PaperTrail App
I'm new to PaperTrial Application. I added my Windows 7 system in Paper Trial by following the steps given in
"https://papertrailapp.com/systems/setup"
My system got listed in Paper Trial. And its ...
3
votes
0answers
157 views
Using oink on Heroku by creating Hodel 3000 compliant logs
I am having a memory leak and am trying to track it down, therefore im trying to use oink on Heroku servers. Since Heroku does not provide log archives, im exporting them to Amazon S3 through the ...
1
vote
0answers
237 views
Rails 3 paper_trail track multiple associated models for undo
I've been trying for the last few days to use paper_trail as an undo system, where multiple objects can be rolled back at once; I began with the Railscast, and have been trying my best to get ...
0
votes
1answer
119 views
Skipping version creation of paper_trail when creating child records
I have a simple model with an after_create filter that creates association records.
class Subject
after_create :create_topics!
has_paper_trail :on => [:create, :update],
...
0
votes
2answers
97 views
paper trail plugin and rspec
I have a model, Car.
When I update an instance of Car through a form in my application, the PaperTrail plugin is called and a new version is created.
But if I test this model using rspec, the ...
1
vote
1answer
361 views
Storing user_id in the paper_trail versions table
I am using paper trail to audit changes to data and would like to store the user_id of the current user in addition to the "whodunnit" column that paper_trail stores by default.
I had no trouble ...
0
votes
1answer
355 views
Getting Paper_trail + Rails_admin + Devise with Multiple 'user' models
I am developing an app in Rails 3, currently I use Devise as the login and Rails_admin as the admin panel with Paper_trail tracking all changes made by 'user' model... Problem is I have two user ...
2
votes
2answers
102 views
Cannot understand what the following code does
Can somebody explain to me what the below code is doing. before and after are hashes.
def differences(before, after)
before.diff(after).keys.sort.inject([]) do |diffs, k|
diff = { ...
0
votes
1answer
439 views
Display all versions of individual records in Papertrail
I'm building a league system and currently it stores and updates the players 'elo score' depending on the result. Now, I'm trying to add in 'HighCharts' to display the players elo score over the ...
1
vote
1answer
273 views
Is there a JavaScript API to send logs to a cloud logging service (like papertrail)?
I have some key events that are captured on the client side, and I would like to aggregate them easily. Instead of sending them to my server and pushing to Papertrail, is there any service out there ...
5
votes
0answers
308 views
How to reify versions on has_many/belongs_to association with paper_trail
Actually I use paper_trail in rails to track my models versions.But the documentation on the github repo indicates that the gem doesn't support has_many, belongs_to associations.
Let's say I've an ...
2
votes
1answer
358 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 ...
3
votes
1answer
440 views
Papertrail and Carrierwave
I have a model that use both: Carrierwave for store photos, and Papertrail for versioning.
I also configured Carrierwave for store diferent files when updates (That's because I want to version the ...
0
votes
1answer
221 views
paper_trail gives me errors with existing User model
Is there any conflict to set a User model to be versioned with paper_trail? I have a model 'User' as follows:
class User < ActiveRecord::Base
has_paper_trail
end
The problem is that whenever ...
0
votes
1answer
74 views
Using paper_trail with a class whose primary key is not 'id'
I've used paper_trail for a couple of models in my rails 3 app but
I've hit a snag when trying to apply it to a join model - its
primary key is not id.
I checked the doc and the source but couldn't ...
1
vote
1answer
53 views
Ruby on Rails: Update to a gem clobbering my model's pre-existing attribute, options?
A gem I've been using adds methods to models. It recently updated its method names such that one of the method names is now the same as one of my model's pre-existing database attributes.
Are there ...
0
votes
1answer
90 views
Implementing Undo & Redo in the controller/view
I'm using paper_trail to implement versioning in my Rails app. I've run into a bit of a head scratcher when tying the back end into my front end.
Since I allow users to update record (create new ...
3
votes
2answers
400 views
How to setup admin approval a model's edits
I need a system where a regular user can edit a model but the edits don't actually happen until they are approved by an administrator. I found a gem called paper_trail that does had model versioning ...
0
votes
1answer
336 views
Rails model versioning - one model with independently versioned columns
I have a model for a multilingual website with wiki functionality which contains various fields I wish to have versioned, however I need to revert changes made to some columns but not others.
For ...
