module Gitlab::Configuration

def options

Creates a hash of options and their values.
def options
  VALID_OPTIONS_KEYS.inject({}) do |option, key|
    option.merge!(key => send(key))
  end
end