summaryrefslogtreecommitdiff
path: root/lib/gitlab.rb
diff options
context:
space:
mode:
authorSean McGivern <sean@gitlab.com>2018-04-24 13:59:00 +0100
committerSean McGivern <sean@gitlab.com>2018-04-24 13:59:00 +0100
commit6a88ffb412430820e23f19c7c32049abe1a019c3 (patch)
treefc99c7049b7dc4be4ac2f24a38a78026476f3da9 /lib/gitlab.rb
parentdb3774376aafbdea8db6840c88bd6d875cb9bac3 (diff)
parenta544f6ec58ba5f9cfbff6b59b50bc92bc2274bdb (diff)
downloadgitlab-ce-6a88ffb412430820e23f19c7c32049abe1a019c3.tar.gz
Merge branch 'master' into matbaj/gitlab-ce-add-inherit-command
Diffstat (limited to 'lib/gitlab.rb')
-rw-r--r--lib/gitlab.rb13
1 files changed, 12 insertions, 1 deletions
diff --git a/lib/gitlab.rb b/lib/gitlab.rb
index f6629982512..0a167104bf4 100644
--- a/lib/gitlab.rb
+++ b/lib/gitlab.rb
@@ -1,9 +1,20 @@
-require_dependency 'gitlab/git'
+require_dependency 'settings'
+require_dependency 'gitlab/popen'
module Gitlab
+ def self.root
+ Pathname.new(File.expand_path('..', __dir__))
+ end
+
+ def self.config
+ Settings
+ end
+
COM_URL = 'https://gitlab.com'.freeze
APP_DIRS_PATTERN = %r{^/?(app|config|ee|lib|spec|\(\w*\))}
SUBDOMAIN_REGEX = %r{\Ahttps://[a-z0-9]+\.gitlab\.com\z}
+ VERSION = File.read(root.join("VERSION")).strip.freeze
+ REVISION = Gitlab::Popen.popen(%W(#{config.git.bin_path} log --pretty=format:%h -n 1)).first.chomp.freeze
def self.com?
# Check `gl_subdomain?` as well to keep parity with gitlab.com