mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 07:33:36 +08:00
10 lines
168 B
Ruby
10 lines
168 B
Ruby
|
module Discourse
|
||
|
module VERSION #:nodoc:
|
||
|
MAJOR = 0
|
||
|
MINOR = 8
|
||
|
TINY = 0
|
||
|
PRE = nil
|
||
|
|
||
|
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
|
||
|
end
|
||
|
end
|