gitlabhq/gitlab-shell

View on GitHub
support/gitlab_config.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'yaml'

# Determine the root of the gitlab-shell directory
ROOT_PATH = ENV.fetch('GITLAB_SHELL_DIR', File.expand_path('..', __dir__))

class GitlabConfig
  attr_reader :config

  def initialize
    @config = YAML.load_file(File.join(ROOT_PATH, 'config.yml'))
  end

  def auth_file
    @config['auth_file'] ||= File.join(Dir.home, '.ssh/authorized_keys')
  end
end