class ScoutApm::Config::ConfigNull

Good News: It has every config value you could want Bad News: The content of that config value is always nil Used for the null-object pattern

Public Instance Methods

any_keys_found?() click to toggle source
# File lib/scout_apm/config.rb, line 346
def any_keys_found?
  false
end
has_key?(*) click to toggle source
# File lib/scout_apm/config.rb, line 342
def has_key?(*)
  true
end
name() click to toggle source
# File lib/scout_apm/config.rb, line 350
def name
  "no-config"
end
value(*) click to toggle source
# File lib/scout_apm/config.rb, line 338
def value(*)
  nil
end