Method: Gitlab::Configuration#options

Defined in:
lib/gitlab/configuration.rb

#optionsObject

Creates a hash of options and their values.

[View source]

30
31
32
33
34
# File 'lib/gitlab/configuration.rb', line 30

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