Module: Rack::MiniProfilerRails

Defined in:
lib/mini_profiler_rails/railtie.rb

Defined Under Namespace

Classes: Railtie

Class Method Summary collapse

Class Method Details

.initialize!(app) ⇒ Object

call direct if needed to do a defer init



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/mini_profiler_rails/railtie.rb', line 6

def self.initialize!(app)

  raise "MiniProfilerRails initialized twice. Set `require: false' for rack-mini-profiler in your Gemfile" if @already_initialized

  c = Rack::MiniProfiler.config

  # By default, only show the MiniProfiler in development mode.
  # To use the MiniProfiler in production, call Rack::MiniProfiler.authorize_request
  # from a hook in your ApplicationController
  #
  # Example:
  #   before_action { Rack::MiniProfiler.authorize_request if current_user.is_admin? }
  #
  # NOTE: this must be set here with = and not ||=
  #  The out of the box default is "true"
  c.pre_authorize_cb = lambda { |env|
    !Rails.env.test?
  }

  c.skip_paths ||= []

  if serves_static_assets?(app)
    c.skip_paths << app.config.assets.prefix
  end

  unless Rails.env.development? || Rails.env.test?
    c.authorization_mode = :whitelist
  end

  if Rails.logger
    c.logger = Rails.logger
  end

  # The file store is just so much less flaky
  base_path = Rails.application.config.paths['tmp'].first rescue "#{Rails.root}/tmp"
  tmp       = base_path + '/miniprofiler'

  c.storage_options = {:path => tmp}
  c.storage = Rack::MiniProfiler::FileStore

  # Quiet the SQL stack traces
  c.backtrace_remove = Rails.root.to_s + "/"
  c.backtrace_includes =  [/^\/?(app|config|lib|test)/]
  c.skip_schema_queries = (Rails.env.development? || Rails.env.test?)

  # Install the Middleware
  app.middleware.insert(0, Rack::MiniProfiler)

  # Attach to various Rails methods
  ActiveSupport.on_load(:action_controller) do
    ::Rack::MiniProfiler.profile_method(ActionController::Base, :process) {|action| "Executing action: #{action}"}
  end
  ActiveSupport.on_load(:action_view) do
    ::Rack::MiniProfiler.profile_method(ActionView::Template, :render) {|x,y| "Rendering: #{@virtual_path}"}
  end

  @already_initialized = true
end

.serves_static_assets?(app) ⇒ Boolean

Returns:

  • (Boolean)


65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/mini_profiler_rails/railtie.rb', line 65

def self.serves_static_assets?(app)
  config = app.config

  if !config.respond_to?(:assets) || !config.assets.respond_to?(:prefix)
    return false
  end

  if ::Rails.version >= "5.0.0"
    ::Rails.configuration.public_file_server.enabled
  elsif ::Rails.version >= "4.2.0"
    ::Rails.configuration.serve_static_files
  else
    ::Rails.configuration.serve_static_assets
  end
end