BabySqueel
PaperTrail
Our great sponsors
BabySqueel | PaperTrail | |
---|---|---|
0 | 12 | |
403 | 6,303 | |
- | 0.3% | |
5.6 | 7.7 | |
3 months ago | 14 days ago | |
Ruby | Ruby | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
BabySqueel
We haven't tracked posts mentioning BabySqueel yet.
Tracking mentions began in Dec 2020.
PaperTrail
-
Adding soft delete to a Phoenix Commanded (CQRS) API
In most designs, this would probably not be possible unless a table tracking extension is being used in an ORM. Even with change tracking enabled through extensions like paper trail or Django simple history, it can be tricky to restore deleted entities. Object tracking would need to have been enabled before it is needed to ensure the data is still around to be restored.
- Looking for a Rails Gem that Audits Manual Database Changes
-
Temporality/time-travelling in DB with ActiveRecord?
Maybe you are looking for the papertrail gem? https://github.com/paper-trail-gem/paper_trail
- Looking for an observer gem
-
`method_missing': undefined method `has_paper_trail'
has_paper_trail is from the paper-trail-gem, do you have that installed?
-
What's your process to run ruby scripts on production?
If talking about console access on production: First this is pretty limited. Then, we have logic in place, that sets the public key, the person authenticated with to access the console as the whodunnit ID in paper-trail, so that at least all their changes are audited. The thing @bluehavana posted, with auditing everything that was entered in the console is a good idea as well.
-
PaperTrail VS time-travel - a user suggested alternative
2 projects | 18 Sep 2021
-
Avo for Rails v1.0 💪 🎉
They might be referring to the model change checking gem, not the log aggregation service.
-
Ask HN: How to Do Audit Trail?
In the Ruby on Rails world we have https://github.com/paper-trail-gem/paper_trail It adds a table with event type (create, update, destroy etc), object type (class) and id, and user who initiated it. Optionally a column that stores previous versions.
-
Querying PaperTrail Object Changes in JSON
PaperTrail provides a few options to navigate changes made over the history of our object. We're going to use where_object_changes to figure out what happened with [email protected] where_object_changes will find any time the provided attributes changed to or from the values provided.
What are some alternatives?
Audited - Audited (formerly acts_as_audited) is an ORM extension that logs all changes to your Rails models.
Paranoia - acts_as_paranoid for Rails 5, 6 and 7
Logidze - Database changes log for Rails
mongoid-history - Multi-user non-linear history tracking, auditing, undo, redo for mongoid.
ActsAsParanoid - ActiveRecord plugin allowing you to hide and restore records without actually deleting them.
ActiveRecord Import - A library for bulk insertion of data into your database using ActiveRecord.
Discard - 🃏🗑 Soft deletes for ActiveRecord done right
Espinita - Audit activerecord models like a boss (and works with rails 4!)
ActiveRecordExtended - Adds additional postgres functionality to an ActiveRecord / Rails application
Destroyed At - ActiveRecord Mixin for Safe Destroys
arel-helpers - Useful tools to help construct database queries with ActiveRecord and Arel.