aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2013-01-02 03:58:09 +0900
committerAkira Matsuda <ronnie@dio.jp>2013-01-02 03:59:56 +0900
commitffbcb09a4ee1d484edefe369b9509049af40f528 (patch)
treece96a674d36355bded878369b515d76d66cbbb6e /guides/source
parent6f3fbc696955f249b6a46a50353ec10b242494fd (diff)
downloadrails-ffbcb09a4ee1d484edefe369b9509049af40f528.tar.gz
rails-ffbcb09a4ee1d484edefe369b9509049af40f528.tar.bz2
rails-ffbcb09a4ee1d484edefe369b9509049af40f528.zip
no more supporting 1.8
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/performance_testing.md12
1 files changed, 1 insertions, 11 deletions
diff --git a/guides/source/performance_testing.md b/guides/source/performance_testing.md
index 56e202337c..5fe4f7b9f7 100644
--- a/guides/source/performance_testing.md
+++ b/guides/source/performance_testing.md
@@ -426,15 +426,7 @@ will behave much as they do in the `production` environment.
To get the best from Rails' performance tests under MRI, you'll need to build
a special Ruby binary with some super powers.
-The recommended patches for each MRI version are:
-
-| Version | Patch |
-| --------------- | --------- |
-| 1.8.6 | ruby186gc |
-| 1.8.7 | ruby187gc |
-| 1.9.2 and above | gcdata |
-
-All of these can be found on [RVM's _patches_ directory](https://github.com/wayneeseguin/rvm/tree/master/patches/ruby)
+The recommended patches for MRI can be found on [RVM's _patches_ directory](https://github.com/wayneeseguin/rvm/tree/master/patches/ruby)
under each specific interpreter version.
Concerning the installation itself, you can either do this easily by using
@@ -449,7 +441,6 @@ patched Ruby interpreter:
```bash
$ rvm install 1.9.2-p180 --patch gcdata
-$ rvm install 1.8.7 --patch ruby187gc
$ rvm install 1.9.2-p180 --patch ~/Downloads/downloaded_gcdata_patch.patch
```
@@ -483,7 +474,6 @@ $ cd <ruby-version>
```bash
$ curl https://raw.github.com/wayneeseguin/rvm/master/patches/ruby/1.9.2/p180/gcdata.patch | patch -p0 # if you're on 1.9.2!
-$ curl https://raw.github.com/wayneeseguin/rvm/master/patches/ruby/1.8.7/ruby187gc.patch | patch -p0 # if you're on 1.8.7!
```
##### Configure and Install