1
0
Fork 0
mirror of https://github.com/endofunky/sidetiq.git synced 2022-11-09 13:53:30 -05:00
endofunky--sidetiq/lib/sidetiq/version.rb
2016-08-15 09:16:44 +01:00

20 lines
435 B
Ruby

module Sidetiq
# Public: Sidetiq version namespace.
module VERSION
# Public: Sidetiq major version number.
MAJOR = 0
# Public: Sidetiq minor version number.
MINOR = 7
# Public: Sidetiq patch level.
PATCH = 2
# Public: Sidetiq version suffix.
SUFFIX = nil
# Public: String representation of the current Sidetiq version.
STRING = [MAJOR, MINOR, PATCH, SUFFIX].compact.join('.')
end
end