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
2013-10-29 10:44:21 -04:00

14 lines
251 B
Ruby

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