Welcome to mirror list, hosted at ThFree Co, Russian Federation.

2_app.rb « initializers « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 688cdf5f4b0887eb23bcdfdf41a2c51719eb329b (plain)
1
2
3
4
5
6
7
8
module Gitlab
  VERSION = File.read(Rails.root.join("VERSION")).strip
  REVISION = Gitlab::Popen.popen(%W(git log --pretty=format:%h -n 1)).first.chomp

  def self.config
    Settings
  end
end