class Central::Devtools::Config::Container

Container configuration

Constants

FILE
OPTIONS

Public Instance Methods

options() click to toggle source

Options hash for the container

@return [Hash] @api private

# File lib/central/devtools/config.rb, line 185
def options
  OPTIONS.each_with_object({}) do |name, hash|
    hash[name] = raw.fetch(name, nil)
  end
end