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
2013-04-01 18:26:34 -03:00

10 lines
160 B
Ruby

module Rails
module VERSION
MAJOR = 4
MINOR = 0
TINY = 0
PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
end