1
0
Fork 0
mirror of https://github.com/endofunky/sidetiq.git synced 2022-11-09 13:53:30 -05:00

Add documentation for Sidetiq::VERSION.

This commit is contained in:
Tobias Svensson 2013-02-04 12:09:20 +00:00
parent 29b3496f41
commit 877a12a7dd

View file

@ -1,9 +1,16 @@
module Sidetiq module Sidetiq
# Public: Sidetiq version namespace.
module VERSION module VERSION
# Public: Sidetiq major version number.
MAJOR = 0 MAJOR = 0
# Public: Sidetiq minor version number.
MINOR = 1 MINOR = 1
# Public: Sidetiq patch level.
PATCH = 2 PATCH = 2
# Public: String representation of the current Sidetiq version.
STRING = [MAJOR, MINOR, PATCH].compact.join('.') STRING = [MAJOR, MINOR, PATCH].compact.join('.')
end end
end end