I\'m trying to get this up and running, but I see \"uninitialized constant ExceptionNotifier\" whenever I start my server.
http://github.com/rails/exception_notificatio
UPDATED ANSWER as of 3/14...
You just need to do gem exception_notification in your gem file. No 'require' needed.
Also, other changes just straight from the docs...
"As of 4.x version the configuration syntax has changed. All email related options MUST BE nested under the :email key."
like so...
Whatever::Application.config.middleware.use ExceptionNotification::Rack,
:email => {
:email_prefix => "[Whatever] ",
:sender_address => %{"notifier" },
:exception_recipients => %w{exceptions@example.com}
}