Method: Peerindex::Configuration#options

Defined in:
lib/peerindex/configuration.rb

#optionsObject

Create a hash of options and their values



61
62
63
64
65
# File 'lib/peerindex/configuration.rb', line 61

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