class Rudy::Config::Defaults

Default configuration. All of the defaults can be overridden on the command line with global options.

Public Instance Methods

postprocess() click to toggle source

All values should scalars

# File lib/rudy/config/objects.rb, line 31
def postprocess
  self.keys.each do |k| 
    next unless self[k].is_a?(Array)
    raise Defaults::DoubleDefined.new(:defaults, k)
  end
  self.keydir &&= File.expand_path(self.keydir)
end