Sha256: e403b3709a43732fa656b7b155515dc865e521a1450c7dfa198cdaadc7d70f8f

Contents?: true

Size: 951 Bytes

Versions: 27

Compression:

Stored size: 951 Bytes

Contents

# frozen_string_literal: true

module ActionController # :nodoc:
  # This module is responsible for providing +rescue_from+ helpers
  # to controllers and configuring when detailed exceptions must be
  # shown.
  module Rescue
    extend ActiveSupport::Concern
    include ActiveSupport::Rescuable

    # Override this method if you want to customize when detailed
    # exceptions must be shown. This method is only called when
    # +consider_all_requests_local+ is +false+. By default, it returns
    # +false+, but someone may set it to <tt>request.local?</tt> so local
    # requests in production still show the detailed exception pages.
    def show_detailed_exceptions?
      false
    end

    private
      def process_action(*)
        super
      rescue Exception => exception
        request.env["action_dispatch.show_detailed_exceptions"] ||= show_detailed_exceptions?
        rescue_with_handler(exception) || raise
      end
  end
end

Version data entries

27 entries across 25 versions & 3 rubygems

Version Path
actionpack-7.0.1 lib/action_controller/metal/rescue.rb
actionpack-7.0.0 lib/action_controller/metal/rescue.rb
actionpack-7.0.0.rc3 lib/action_controller/metal/rescue.rb
actionpack-7.0.0.rc2 lib/action_controller/metal/rescue.rb
actionpack-7.0.0.rc1 lib/action_controller/metal/rescue.rb
actionpack-7.0.0.alpha2 lib/action_controller/metal/rescue.rb
actionpack-7.0.0.alpha1 lib/action_controller/metal/rescue.rb