aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-08-31 11:54:07 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2010-08-31 11:54:07 -0300
commit94b850c6611f202a09990f0a2066ce7aea13c6c5 (patch)
tree403cfd055a2d0cb3a541f6c481f6a56bfe06cc42 /railties/guides
parent58d3b9042302d41f90fc129f12787d83f7bdade9 (diff)
downloadrails-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.textile4
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>