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
Actually, now, it is much easier. In your Gemfile
you need to write:
gem "exception_notification", :git => "http://github.com/rails/exception_notification.git", :require => 'exception_notifier'
And all should be fixed. The :require
option is crucial (i guess because the names differ you have to specify explicitly).
All other patches mentioned before have been merged i presume.