Sha256: 09545839e606339bfe175e3239adccf1273c8e87895d91e28b25677dbf8cdb23

Contents?: true

Size: 1020 Bytes

Versions: 10

Compression:

Stored size: 1020 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

    # for importmap
    initializer "ahoy.importmap" do |app|
      if defined?(Importmap)
        app.config.assets.precompile << "ahoy.js"
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ahoy_matey-5.2.1 lib/ahoy/engine.rb
ahoy_matey-5.2.0 lib/ahoy/engine.rb
ahoy_matey-5.1.0 lib/ahoy/engine.rb
ahoy_matey-5.0.2 lib/ahoy/engine.rb
ahoy_matey-5.0.1 lib/ahoy/engine.rb
ahoy_matey-5.0.0 lib/ahoy/engine.rb
ahoy_matey-4.2.1 lib/ahoy/engine.rb
ahoy_matey-4.2.0 lib/ahoy/engine.rb
ahoy_matey-4.1.0 lib/ahoy/engine.rb
ahoy_matey-4.0.3 lib/ahoy/engine.rb