ExceptionTrack

Tracking exceptions for Rails application store them in database.

This gem is base on exception_notification.

Gem Version Build Status Code Climate codecov.io

2017-02-17 12 35 18

Installation

Add this line to your application's Gemfile:

gem 'exception-track'

And then execute:

$ bundle

Generate migration and config files

$ rails g exception_track:install

And mount routers:

config/router.rb

Rails.application.routes.draw do
  mount ExceptionTrack::Engine => "/exception-track"
end

Now you can open: http://localhost:3000/exception-track

Configuration

Add config/initializers/exception-track.rb

ExceptionTrack.configure do
  # environments for store Exception log in to database.
  # default: [:development, :production]
  # self.environments = %i(production)
end

exception_notification Configuration

You can config exception_notification by itself's way, more documentations please visit:

https://github.com/smartinez87/exception_notification/

Router admin authenticate for Devise

config/router.rb

authenticate :user, ->(u) { u.admin? } do
  mount ExceptionTrack::Engine => "/exception-track"
end

https://github.com/plataformatec/devise/wiki/How-To:-Define-resource-actions-that-require-authentication-using-routes.rb

License

The gem is available as open source under the terms of the MIT License.