1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/version.rb

11 lines
167 B
Ruby
Raw Normal View History

module Rails
module VERSION #:nodoc:
MAJOR = 3
2011-06-30 09:18:36 -04:00
MINOR = 2
TINY = 0
2011-12-19 19:34:57 -05:00
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
end