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
Keep it simple silly
In gemfile
gem 'exception_notification', :require => 'exception_notifier'
In application.rb file
config.middleware.use ExceptionNotifier,
:email_prefix => "[ERROR] ",
:sender_address => %{"Exception Notifier" },
:exception_recipients => %w{Dummy_email@example.com}
Your are Done.. :*