09 Dec
Installing ExceptionNotifier for Rails 3
I was just fighting with this, and being new to the Rails 3 way of things, the docs didn’t quite make sense. Step 1 – Install the plugin rails plugin install https://github.com/rails/exception_notification.git Step 2 – Edit config/application.rb: module MyApp class Application < Rails::Application # ….. # somewhere in this block put the following: config.middleware.use “::ExceptionNotifier”, [...]
