Sha256: 6a55fb8cd0d96fdaf97839af6ebd8da390fab07da919714ff8fdd28f205e38a6
Contents?: true
Size: 860 Bytes
Versions: 11
Compression:
Stored size: 860 Bytes
Contents
module Ahoy class Engine < ::Rails::Engine initializer "ahoy", after: "sprockets.environment" do Ahoy.logger ||= Rails.logger # allow Devise to be loaded after Ahoy require "ahoy/warden" if defined?(Warden) next unless Ahoy.quiet # Parse PATH_INFO by assets prefix AHOY_PREFIX = "/ahoy/".freeze # Just create an alias for call in middleware Rails::Rack::Logger.class_eval do def call_with_quiet_ahoy(env) if env["PATH_INFO"].start_with?(AHOY_PREFIX) && logger.respond_to?(:silence) logger.silence do call_without_quiet_ahoy(env) end else call_without_quiet_ahoy(env) end end alias_method :call_without_quiet_ahoy, :call alias_method :call, :call_with_quiet_ahoy end end end end
Version data entries
11 entries across 11 versions & 1 rubygems