Class: ScoutApm::Config::ConfigNull

Inherits:
Object
  • Object
show all
Defined in:
lib/scout_apm/config.rb

Overview

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

Instance Method Summary collapse

Instance Method Details

#any_keys_found?Boolean

Returns:

  • (Boolean)


295
296
297
# File 'lib/scout_apm/config.rb', line 295

def any_keys_found?
  false
end

#has_key?Boolean

Returns:

  • (Boolean)


291
292
293
# File 'lib/scout_apm/config.rb', line 291

def has_key?(*)
  true
end

#nameObject



299
300
301
# File 'lib/scout_apm/config.rb', line 299

def name
  "no-config"
end

#valueObject



287
288
289
# File 'lib/scout_apm/config.rb', line 287

def value(*)
  nil
end