1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/lib/rails/version.rb
2013-05-01 18:10:10 -04:00

10 lines
159 B
Ruby

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