2_app.rb 213 字节
Newer Older
R
randx 已提交
1
module Gitlab
2
  def self.config
R
Riyad Preukschas 已提交
3
    Settings
4
  end
5 6 7

  VERSION = File.read(Rails.root.join("VERSION")).strip
  REVISION = Gitlab::Popen.popen(%W(#{config.git.bin_path} log --pretty=format:%h -n 1)).first.chomp
R
randx 已提交
8
end