Method: Sonarqube::Configuration#options
- Defined in:
- lib/sonarqube/configuration.rb
#options ⇒ Object
Creates a hash of options and their values.
29 30 31 32 33 |
# File 'lib/sonarqube/configuration.rb', line 29 def VALID_OPTIONS_KEYS.inject({}) do |option, key| option.merge!(key => send(key)) end end |