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:
parent
29b3496f41
commit
877a12a7dd
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue