rails/version.rb
David Heinemeier Hansson 82857adc56 Bump versions for rc1
2011-05-21 20:56:52 -05:00

11 lines
167 B
Ruby

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