aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/3_2_release_notes.textile
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-12-25 19:33:33 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-12-25 19:33:33 +0530
commit54e522a38827b7b78968237a762334f94c20f7d7 (patch)
tree73771abe79e954495753e2c875f6e063bac77482 /railties/guides/source/3_2_release_notes.textile
parentebddca18bb16c4d9bda4db72b5154a23f459b7c8 (diff)
parent2d1cbd02b4600625dc5db6b70ab003127a8b5559 (diff)
downloadrails-54e522a38827b7b78968237a762334f94c20f7d7.tar.gz
rails-54e522a38827b7b78968237a762334f94c20f7d7.tar.bz2
rails-54e522a38827b7b78968237a762334f94c20f7d7.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'railties/guides/source/3_2_release_notes.textile')
-rw-r--r--railties/guides/source/3_2_release_notes.textile6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/guides/source/3_2_release_notes.textile b/railties/guides/source/3_2_release_notes.textile
index a4d5ed9116..c1afee004e 100644
--- a/railties/guides/source/3_2_release_notes.textile
+++ b/railties/guides/source/3_2_release_notes.textile
@@ -7,7 +7,7 @@ Highlights in Rails 3.2:
* Automatic Query Explains
* Tagged Logging
-This release notes cover the major changes, but don't include every little bug fix and change. If you want to see everything, check out the "list of commits":https://github.com/rails/rails/commits/3-2-stable in the main Rails repository on GitHub.
+These release notes cover the major changes, but don't include every little bug fix and change. If you want to see everything, check out the "list of commits":https://github.com/rails/rails/commits/3-2-stable in the main Rails repository on GitHub.
endprologue.
@@ -19,7 +19,7 @@ h4. Rails 3.2 requires at least Ruby 1.8.7
Rails 3.2 requires Ruby 1.8.7 or higher. Support for all of the previous Ruby versions has been dropped officially and you should upgrade as early as possible. Rails 3.2 is also compatible with Ruby 1.9.2.
-TIP: Note that Ruby 1.8.7 p248 and p249 have marshaling bugs that crash Rails. 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, so if you want to use 1.9.x jump on 1.9.2 or 1.9.3 for smooth sailing.
+TIP: Note that Ruby 1.8.7 p248 and p249 have marshaling bugs that crash Rails. Ruby Enterprise Edition have these fixed since release 1.8.7-2010.02. On the 1.9 front, Ruby 1.9.1 is not usable because it outright segfaults, so if you want to use 1.9.x, jump on 1.9.2 or 1.9.3 for smooth sailing.
h3. Creating a Rails 3.2 application
@@ -33,7 +33,7 @@ h4. Vendoring Gems
Rails now uses a +Gemfile+ in the application root to determine the gems you require for your application to start. This +Gemfile+ is processed by the "Bundler":https://github.com/carlhuda/bundler gem, which then installs all your dependencies. It can even install all the dependencies locally to your application so that it doesn't depend on the system gems.
-More information: - "bundler homepage":http://gembundler.com
+More information: - "Bundler homepage":http://gembundler.com
h4. Living on the Edge