Activity Log

Activity Log provides the ability to track model and controller activity in your app.

How to Use

First run the generator the create the required migrations:

$ rails generate activity_log

Then migrate the database:

$ rake db:migrate

To log a model’s activity, add the following line to the class:

log_model_activity

To log a controller’s activity, add the follow line to the controller:

log_controller_activity

Data can be accessed using the ActivityLog Active Record class.

Contributing to Activity Log

Copyright © 2013 Jon Erik Suero. See LICENSE.txt for further details.