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-02-03 14:18:10 -05:00

13 lines
257 B
Ruby

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