Class: ScoutApm::Config::ConfigNull
- Inherits:
-
Object
- Object
- ScoutApm::Config::ConfigNull
- 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
361 362 363 |
# File 'lib/scout_apm/config.rb', line 361 def any_keys_found? false end |
#has_key? ⇒ Boolean
357 358 359 |
# File 'lib/scout_apm/config.rb', line 357 def has_key?(*) true end |
#name ⇒ Object
365 366 367 |
# File 'lib/scout_apm/config.rb', line 365 def name "no-config" end |
#value ⇒ Object
353 354 355 |
# File 'lib/scout_apm/config.rb', line 353 def value(*) nil end |