diff options
author | Rémy Coutable <remy@rymai.me> | 2018-05-04 19:23:08 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-05-23 16:14:43 +0200 |
commit | 02f17a0988acfdc60d7e1f920e8f750cb81f09d0 (patch) | |
tree | e9ba4c4eae51eedf06c998fb3892bb599a347314 /lib/gitlab.rb | |
parent | a2dbca4a27b8f380652bf1165f89238895b0f5d8 (diff) | |
download | gitlab-ce-02f17a0988acfdc60d7e1f920e8f750cb81f09d0.tar.gz |
Introduce a new CacheableAttributes concern
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'lib/gitlab.rb')
-rw-r--r-- | lib/gitlab.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/gitlab.rb b/lib/gitlab.rb index c5498d0da1a..31119471b8e 100644 --- a/lib/gitlab.rb +++ b/lib/gitlab.rb @@ -9,6 +9,10 @@ module Gitlab Settings end + def self.migrations_hash + @_migrations_hash ||= Digest::MD5.hexdigest(ActiveRecord::Migrator.get_all_versions.to_s) + 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} |