Method: Camp3::Configuration#options

Defined in:
lib/camp3/configuration.rb

#optionsObject

Creates a hash of options and their values.



33
34
35
36
37
# File 'lib/camp3/configuration.rb', line 33

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