summaryrefslogtreecommitdiff
path: root/support/gitlab_config.rb
diff options
context:
space:
mode:
authorAsh McKenzie <amckenzie@gitlab.com>2019-10-09 02:20:36 +0000
committerAsh McKenzie <amckenzie@gitlab.com>2019-10-09 02:20:36 +0000
commite28f75c8d439812f61c4cf0c0291380df4d17106 (patch)
tree5e4ae582eb3aa506c57f954d2a1483fe5e003a2b /support/gitlab_config.rb
parent1ee64eeaea71210e89040438489edac4701a1854 (diff)
parent1a3e687f772047988b9bcaeb471d94d6f49a853e (diff)
downloadgitlab-shell-e28f75c8d439812f61c4cf0c0291380df4d17106.tar.gz
Merge branch '173-remove-bin-install-command' into 'master'
Decouple `bin/compile` and `bin/install` from code in `lib/` See merge request gitlab-org/gitlab-shell!340
Diffstat (limited to 'support/gitlab_config.rb')
-rw-r--r--support/gitlab_config.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/support/gitlab_config.rb b/support/gitlab_config.rb
new file mode 100644
index 0000000..1416488
--- /dev/null
+++ b/support/gitlab_config.rb
@@ -0,0 +1,13 @@
+require 'yaml'
+
+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