diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-08-31 11:54:07 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2010-08-31 11:54:07 -0300 |
commit | 94b850c6611f202a09990f0a2066ce7aea13c6c5 (patch) | |
tree | 403cfd055a2d0cb3a541f6c481f6a56bfe06cc42 /railties/guides | |
parent | 58d3b9042302d41f90fc129f12787d83f7bdade9 (diff) | |
download | rails-94b850c6611f202a09990f0a2066ce7aea13c6c5.tar.gz rails-94b850c6611f202a09990f0a2066ce7aea13c6c5.tar.bz2 rails-94b850c6611f202a09990f0a2066ce7aea13c6c5.zip |
Bring back build to the initialization guide
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/initialization.textile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/initialization.textile b/railties/guides/source/initialization.textile index 07ef975f80..b998066f4c 100644 --- a/railties/guides/source/initialization.textile +++ b/railties/guides/source/initialization.textile @@ -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> |