summaryrefslogtreecommitdiff
path: root/config/initializers/2_app.rb
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