Repository URL to install this package:
Version:
0.9.7 ▾
|
module Lobbyist
class Version
MAJOR = 0 unless defined? Lobbyist::Version::MAJOR
MINOR = 9 unless defined? Lobbyist::Version::MINOR
PATCH = 7 unless defined? Lobbyist::Version::PATCH
class << self
# @return [String]
def to_s
[MAJOR, MINOR, PATCH].compact.join('.')
end
end
end
end