class ActionDispatch::ShowExceptions
Public Instance Methods
call(env)
click to toggle source
# File lib/cucumber/rails/action_controller.rb, line 11 def call(env) env['action_dispatch.show_exceptions'] = !!ActionController::Base.allow_rescue env['action_dispatch.show_detailed_exceptions'] = !ActionController::Base.allow_rescue __cucumber_orig_call__(env) end
Also aliased as: __cucumber_orig_call__