mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-12 06:06:05 +10:00
9 lines
161 B
Ruby
9 lines
161 B
Ruby
module Gitlab
|
|
VERSION = File.read(Rails.root.join("VERSION")).strip
|
|
REVISION = `git log --pretty=format:'%h' -n 1`
|
|
|
|
def self.config
|
|
Settings
|
|
end
|
|
end
|