1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Bring back build to the initialization guide

This commit is contained in:
Santiago Pastorino 2010-08-31 11:54:07 -03:00
parent 58d3b90423
commit 94b850c661

View file

@ -1375,10 +1375,10 @@ the _version_ file contains this code (comments stripped):
module VERSION #:nodoc:
MAJOR = 3
MINOR = 1
MINOR = 0
TINY = 0
BUILD = "beta"
STRING = [MAJOR, MINOR, TINY].join('.')
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
end
end
</ruby>