Method: PDK::Config#system_config
- Defined in:
- lib/pdk/config.rb
#system_config ⇒ PDK::Config::Namespace
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
The system level configuration settings.
37 38 39 40 41 42 |
# File 'lib/pdk/config.rb', line 37 def system_config = @config_options @system_config ||= PDK::Config::JSON.new('system', file: ['system.path']) do mount :module_defaults, PDK::Config::JSON.new(file: ['system.module_defaults.path']) end end |