mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 22:21: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 = 1
|
|
MINOR = 0
|
|
TINY = 0
|
|
PRE = nil
|
|
|
|
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
|
|
end
|
|
end
|
|
end
|