2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00
discourse/lib/version.rb
2014-09-09 17:35:51 -04:00

13 lines
257 B
Ruby

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