HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/share/rubygems-integration/all/gems/web-console-4.2.0/lib/web_console.rb
# frozen_string_literal: true

require "active_support/dependencies/autoload"
require "active_support/logger"

module WebConsole
  extend ActiveSupport::Autoload

  autoload :View
  autoload :Evaluator
  autoload :ExceptionMapper
  autoload :Session
  autoload :Injector
  autoload :Interceptor
  autoload :Request
  autoload :WhinyRequest
  autoload :Permissions
  autoload :Template
  autoload :Middleware
  autoload :Context
  autoload :SourceLocation

  autoload_at "web_console/errors" do
    autoload :Error
    autoload :DoubleRenderError
  end

  def self.logger
    Rails.logger || (@logger ||= ActiveSupport::Logger.new($stderr))
  end
end

require "web_console/railtie"