AnastasiaSulyagina e81f4ab7de init
2016-08-19 14:50:14 +03:00

14 lines
388 B
Ruby

HBC_VERSION = "0.60.0".freeze
module Hbc
def self.full_version
@full_version ||= begin
revision, commit = Dir.chdir(Hbc.default_tap.path) do
[`git rev-parse --short=4 --verify -q HEAD 2>/dev/null`.chomp,
`git show -s --format="%cr" HEAD 2>/dev/null`.chomp]
end
"#{HBC_VERSION} (git revision #{revision}; last commit #{commit})"
end
end
end