aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Noble <github+jasonn@jasonnoble.org>2012-11-24 21:02:48 -0700
committerJason Noble <github+jasonn@jasonnoble.org>2012-11-24 21:02:48 -0700
commitc332393f751fdbd2bf1c821e2ac1fa5f06fea7b6 (patch)
tree043c57a3c16039b2f3499d00804745a55309abaa
parent65ee3d76b345973188eeeecfa1c5537854816ba0 (diff)
downloadrails-c332393f751fdbd2bf1c821e2ac1fa5f06fea7b6.tar.gz
rails-c332393f751fdbd2bf1c821e2ac1fa5f06fea7b6.tar.bz2
rails-c332393f751fdbd2bf1c821e2ac1fa5f06fea7b6.zip
Update version numbers of Ruby and Rails
-rw-r--r--guides/source/getting_started.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index f963a31ca4..76a2a3c1be 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -81,7 +81,7 @@ Open up a command line prompt. On a mac this is called terminal, on windows it i
```bash
$ ruby -v
-ruby 1.9.3p194
+ruby 1.9.3p327
```
To install Rails, use the `gem install` command provided by RubyGems:
@@ -100,7 +100,7 @@ To verify that you have everything installed correctly, you should be able to ru
$ rails --version
```
-If it says something like "Rails 3.2.8" you are ready to continue.
+If it says something like "Rails 3.2.9" you are ready to continue.
### Creating the Blog Application