mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 19:46:55 +08:00
14 lines
253 B
Ruby
14 lines
253 B
Ruby
module Discourse
|
|
# work around reloader
|
|
unless defined? ::Discourse::VERSION
|
|
module VERSION #:nodoc:
|
|
MAJOR = 0
|
|
MINOR = 9
|
|
TINY = 6
|
|
PRE = nil
|
|
|
|
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
|
|
end
|
|
end
|
|
end
|