Method: Application::Configuration#method_missing

Defined in:
lib/application_configuration.rb

#method_missing(sym, *args) ⇒ Object



128
129
130
131
132
133
# File 'lib/application_configuration.rb', line 128

def method_missing(sym, *args)
  puts %{
WARNING: Tried to access configuration parameter: #{sym}, but there is no configuration parameter defined with this name. This is not an error, just an informative message. There is no need to open a bug report for this. Sometimes developers only use a configuration parameter to help debug in testing or development, and there is no need to litter other configuration files with these unnecessary parameters. Thank you.
  } if self.whiny_config_missing
  return nil
end