Exception Notifier seems to have ceased working for some reason. I
thought perhaps a change in edge rails was to blame, but I rolled back
to 4900 and the problem was still there.
The problem is that it generates an error in the _session.rhtml partial.
It looks as if a method in the PP class is bombing. It says wrong
number of argument (1 for 0), but there is no method on that line with
only 1 argument.
Any help is appreciated.
ActionView::TemplateError (wrong number of arguments (1 for 0)) on line
#3 of
vendor/plugins/exception_notification/views/exception_notifier/_session.rhtml:
1: <% for variable in @request.session.instance_variables -%>
2: <% next if variable =~ /^@db/ -%>
3: * <%= variable %>: <%=
PP.pp(@request.session.instance_variable_get(variable),"").gsub(/\n/,
"\n ").strip %>
4: <% end -%>
/usr/local/lib/ruby/1.8/pp.rb:244:in `method'
/usr/local/lib/ruby/1.8/pp.rb:244:in `pretty_print'
/usr/local/lib/ruby/1.8/pp.rb:126:in `pp'
...snipped...