15 lines
377 B
Ruby
15 lines
377 B
Ruby
require_dependency 'gitlab/git'
|
|
|
|
module Gitlab
|
|
COM_URL = 'https://gitlab.com'.freeze
|
|
APP_DIRS_PATTERN = %r{^/?(app|config|ee|lib|spec|\(\w*\))}
|
|
|
|
def self.com?
|
|
# Check `staging?` as well to keep parity with gitlab.com
|
|
Gitlab.config.gitlab.url == COM_URL || staging?
|
|
end
|
|
|
|
def self.staging?
|
|
Gitlab.config.gitlab.url == 'https://staging.gitlab.com'
|
|
end
|
|
end
|