BigW Consortium Gitlab

2_app.rb 294 Bytes
Newer Older
randx committed
1
module Gitlab
2
  VERSION = File.read(Rails.root.join("VERSION")).strip
3
  REVISION = Gitlab::Popen.popen(%W(git log --pretty=format:%h -n 1)).first.chomp
4 5

  def self.config
Riyad Preukschas committed
6
    Settings
7
  end
randx committed
8
end
9 10 11 12 13

#
# Load all libs for threadsafety
#
Dir["#{Rails.root}/lib/**/*.rb"].each { |file| require file }