我们使用这个gem(https://github.com/smartinez87/exception_notification)与rails 3.2.11。我们想使用以下方法"ExceptionNotifier.notify_exception(e)"从控制器的动作和后台进程,如wiki上提到的,但我们得到以下错误
未定义的方法' notify_exception' for ExceptionNotifier:Class
我们正在安装这个gem的3.0.1版本。Gem "exception_notification", "~> 3.0.1"
我们的rails版本是3.2.11,ruby版本是ruby 1.9.2p320。
谢谢
您正在阅读notify_exception
的API,该版本尚未作为gem发布。
您可以将Gemfile
指向git repo
gem "exception_notification", git: "git://github.com/smartinez87/exception_notification.git"
或使用适当的API调用3.0.1
ExceptionNotifier::Notifier.exception_notification(request.env, exception,
:data => {:message => "was doing something wrong"}).deliver
3.0.1
的文档在。
在你的gem文件中写入这一行
gem 'exception_notification' , '3.0.1'
之后的
bundle install