2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/lib/version.rb
2015-04-22 11:11:31 -04:00

13 lines
257 B
Ruby

module Discourse
# work around reloader
unless defined? ::Discourse::VERSION
module VERSION #:nodoc:
MAJOR = 1
MINOR = 3
TINY = 0
PRE = 'beta6'
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
end
end