class ScoutApm::ServerIntegrations::Webrick

Attributes

logger[R]

Public Class Methods

new(logger) click to toggle source
# File lib/scout_apm/server_integrations/webrick.rb, line 6
def initialize(logger)
  @logger = logger
end

Public Instance Methods

forking?() click to toggle source
# File lib/scout_apm/server_integrations/webrick.rb, line 14
def forking?; false; end
found?() click to toggle source
# File lib/scout_apm/server_integrations/webrick.rb, line 24
def found?
  true
end
install() click to toggle source

TODO: What does it mean to install on a non-forking env?

# File lib/scout_apm/server_integrations/webrick.rb, line 21
def install
end
name() click to toggle source
# File lib/scout_apm/server_integrations/webrick.rb, line 10
def name
  :webrick
end
present?() click to toggle source
# File lib/scout_apm/server_integrations/webrick.rb, line 16
def present?
  defined?(::WEBrick) && defined?(::WEBrick::VERSION)
end