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-23 13:14:43 +01:00

10 lines
160 B
Ruby

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