ExceptionEngine

Copyright © 2011 Consoci8 Sdn Bhd

The Exception Engine logs your Rails exceptions in your mongodb database and provides a web interface to manage them

It assumes that the main rails application it’s mounted to uses devise for authentication and you have mongodb installed and running in your machine

To use this in your rails engine, add the following line to your gemfile:

gem "exception_engine", :git => 'git://github.com/Consoci8/exception_engine'

And then run

bundle install

Next, run your rails server and you can view all your application exceptions at localhost:3000/exceptions

For mongo installation:

www.mongodb.org/display/DOCS/Quickstart

After you installed mongodb, make sure you run the mongod server

$ mongod

This project uses GPLv3 License. Check Gemfile for other dependencies.

Credits:

  1. José Valim for enginex

  2. Thoughtbot’s HoptoadNotifier gem