Method: Sonarqube::Configuration#options

Defined in:
lib/sonarqube/configuration.rb

#optionsObject

Creates a hash of options and their values.



29
30
31
32
33
# File 'lib/sonarqube/configuration.rb', line 29

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