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
2014-02-18 15:45:20 -03:00

10 lines
160 B
Ruby

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