gitlab-org--gitlab-foss/lib/gitlab.rb

21 lines
527 B
Ruby
Raw Normal View History

require_dependency 'gitlab/git'
2015-07-15 09:59:38 -04:00
module Gitlab
COM_URL = 'https://gitlab.com'.freeze
APP_DIRS_PATTERN = %r{^/?(app|config|ee|lib|spec|\(\w*\))}
2018-04-13 13:20:29 -04:00
SUBDOMAIN_REGEX = %r{\Ahttps://[a-z0-9]+\.gitlab\.com\z}
def self.com?
2018-04-13 13:20:29 -04:00
# Check `gl_subdomain?` as well to keep parity with gitlab.com
Gitlab.config.gitlab.url == COM_URL || gl_subdomain?
end
2018-04-13 13:20:29 -04:00
def self.gl_subdomain?
SUBDOMAIN_REGEX === Gitlab.config.gitlab.url
end
2018-04-13 13:20:29 -04:00
def self.dev_env_or_com?
Rails.env.test? || Rails.env.development? || com?
end
2015-07-15 09:59:38 -04:00
end