Method: WOTC::Configuration#options

Defined in:
lib/wotc/configuration.rb

#optionsObject

Create a hash of options and their values



80
81
82
83
84
# File 'lib/wotc/configuration.rb', line 80

def options
  VALID_OPTIONS_KEYS.inject({}) do |option, key|
    option.merge!(key => send(key))
  end
end