Rails 4 Auditing Gem

10,549

Solution 1

You can try public_activity gem, even without being designed for auditing, you can use it to track user actions.

You have one screencast on the subject here and it supports both Rails 3.x and 4.x.

Solution 2

I just found this gem: https://github.com/continuum/espinita

This is from their readme:

Audit activerecord models like a boss. Tested in rails 4 and ruby 2.0.0.

This project is heavily based in audited gem.

Solution 3

Came across paper_trail which seems to be an auditing library which is under active development.

After some evaluation I chose this library for one of my projects.

Share:
10,549
andro1d
Author by

andro1d

Updated on July 21, 2022

Comments

  • andro1d
    andro1d almost 2 years

    I'm looking for a Rails 4 supported gem that does auditing related tasks. Similar gems I found, but are not supporting Rails 4 (except for paper-trail, but it has all of that versioning stuff that I don't need):

    github audited

    github pfeed

    github userstamp

    github paper_trail

    Does anyone have any recommendations? Audited gem seems to be the most similar to what I'm looking for.

    Thanks! :-)

  • fatfrog
    fatfrog almost 9 years
    This gem has not been updated in 7 months, and the documentation is something to be desired. I would stick with Audited.