Merge pull request #5765 from anildigital/3-2-stable

Update getting started guide to change Rails version to Rails 3.2
This commit is contained in:
Vijay Dev
2012-04-06 11:31:52 -07:00

View File

@@ -10,7 +10,7 @@ you should be familiar with:
endprologue.
WARNING. This Guide is based on Rails 3.1. Some of the code shown here will not
WARNING. This Guide is based on Rails 3.2. Some of the code shown here will not
work in earlier versions of Rails.
h3. Guide Assumptions
@@ -23,9 +23,9 @@ prerequisites installed:
* The "Ruby":http://www.ruby-lang.org/en/downloads language version 1.8.7 or higher
TIP: Note that Ruby 1.8.7 p248 and p249 have marshaling bugs that crash Rails
3.0. Ruby Enterprise Edition have these fixed since release 1.8.7-2010.02
3.0 and above. Ruby Enterprise Edition have these fixed since release 1.8.7-2010.02
though. On the 1.9 front, Ruby 1.9.1 is not usable because it outright segfaults
on Rails 3.0, so if you want to use Rails 3 with 1.9.x jump on 1.9.2 for smooth
on Rails 3.0 and above, so if you want to use Rails 3.0 or above with 1.9.x jump on 1.9.2 for smooth
sailing.
* The "RubyGems":http://rubyforge.org/frs/?group_id=126 packaging system
@@ -248,7 +248,7 @@ the following:
$ rails --version
</shell>
If it says something like "Rails 3.1.3" you are ready to continue.
If it says something like "Rails 3.2.3" you are ready to continue.
h4. Creating the Blog Application