Method: Oahu::Config#options

Defined in:
lib/oahu/config.rb

#optionsObject

Create a hash of options and their values



65
66
67
68
69
# File 'lib/oahu/config.rb', line 65

def options
  options = {}
  VALID_OPTIONS_KEYS.each{|k| options[k] = send(k)}
  options
end