This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/lib/version.rb
2015-02-12 18:30:43 -05:00

14 lines
257 B
Ruby

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