Audit modifications & requests using Postgres.
Add this line to your application's Gemfile:
gem 'auditing-postgres', git: 'git://github.com/thomasbrus/auditing-postgres.git', ref: '<ref>'
And then execute:
$ bundle
Run this db/tables.sql against your prefered database:
psql -U postgres pep_auditing -f db/tables.sql
And then set the database connection string:
Auditing::Postgres.configure do |config|
config.db = 'postgres://postgres@localhost/pep_auditing'
end
bundle exec rspec