rails/version.rb
David Heinemeier Hansson 9d6e52b55e Party like its R-C-UNO!
2011-12-19 18:34:57 -06:00

11 lines
167 B
Ruby

module Rails
module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
end