Module: ActiveDecorator::Monkey::ActionController::Base
- Defined in:
- lib/active_decorator/monkey/action_controller/base/rescue_from.rb
Instance Method Summary collapse
Instance Method Details
#rescue_with_handler ⇒ Object
9 10 11 12 13 14 |
# File 'lib/active_decorator/monkey/action_controller/base/rescue_from.rb', line 9 def rescue_with_handler(*) ActiveDecorator::ViewContext.push(view_context) if defined?(view_context) super ensure ActiveDecorator::ViewContext.pop if defined?(view_context) end |