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