No commit activity in last 3 years
No release in over 3 years
Rails Exception Handler Admin interface built on rails scaffolding with a twitter bootstrap theme.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

rails_exception_handler_admin

An administrator interface for the rails_exception_handler gem.

Installation

Set up and install rails_exception_handler in this or another application. Add the line below to your gemfile and run bundler

gem 'rails_exception_handler_admin'

Mount the rails engine in your application:

mount RailsExceptionHandlerAdmin::Engine, :at => '/errors'

To add authentication to this route:

# Be sure to customize the lambda to your needs
scope constraints: lambda{|req| User.find(session[:current_user_id]).admin? rescue false } do
  mount RailsExceptionHandlerAdmin::Engine, :at => '/errors'
end

Users who attempt to visit the mounted URL without proper authorization will receive a 404 response.

Notes

Pagination is supported by either WillPaginate or Kaminari but not a dependency of this gem. If you want pagination on the error records, just include either gem in your gemfile.