Method: Wdt::Configuration#options

Defined in:
lib/wdt/configuration.rb

#optionsObject

Create a hash of options and their values



64
65
66
67
68
# File 'lib/wdt/configuration.rb', line 64

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