diff options
author | Douwe Maan <douwe@gitlab.com> | 2018-04-23 15:21:46 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2018-04-23 15:21:46 +0000 |
commit | 1f062ee0d04175bbed3ea1d23a3e090230d4b9bd (patch) | |
tree | 165998a59d8eadb0ced83e3a7bba3f0a039f4a2e /lib/gitlab.rb | |
parent | 38b35076575e440860d45625747da882dfc97af7 (diff) | |
parent | 2afe3a1210e6c444f9b92d59a02fcb3f474ae614 (diff) | |
download | gitlab-ce-1f062ee0d04175bbed3ea1d23a3e090230d4b9bd.tar.gz |
Merge branch '44713-fast-spec-helper' into 'master'
Resolve "Skip setup of gitlab-shell, gitaly, ... for specs that don't need it."
Closes #44713
See merge request gitlab-org/gitlab-ce!18074
Diffstat (limited to 'lib/gitlab.rb')
-rw-r--r-- | lib/gitlab.rb | 13 |
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 |