1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/action_pack/version.rb
David Heinemeier Hansson 82857adc56 Bump versions for rc1
2011-05-21 20:56:52 -05:00

10 lines
172 B
Ruby

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