Class Rudy::Config::Defaults

  1. lib/rudy/config/objects.rb
Parent: Caesars

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

Methods

public instance

  1. postprocess

Included modules

  1. Gibbler::Complex

Classes and Modules

Class Rudy::Config::Defaults::DoubleDefined

Public instance methods

postprocess ()

All values should scalars

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