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
Using Rails 3.0.3 this works for me:
gem "exception_notification", :git => "https://github.com/sickill/exception_notification.git", :require => 'exception_notifier'
:git part is imported because its a patched version to get around the 'undefined method controller_name error' and :require to require the right lib.
Then in my production.rb environment file i only have this (from the manual)
config.middleware.use ExceptionNotifier,
:email_prefix => "[MyApp] ",
:sender_address => %{"notifier" },
:exception_recipients => %w{email@example.com}
Seems like there are many different ways to get this to work, but this was my way.
Cheers!