1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

no more supporting 1.8

This commit is contained in:
Akira Matsuda 2013-01-02 03:58:09 +09:00
parent 6f3fbc6969
commit ffbcb09a4e

View file

@ -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 To get the best from Rails' performance tests under MRI, you'll need to build
a special Ruby binary with some super powers. a special Ruby binary with some super powers.
The recommended patches for each MRI version are: The recommended patches for MRI can be found on [RVM's _patches_ directory](https://github.com/wayneeseguin/rvm/tree/master/patches/ruby)
| 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)
under each specific interpreter version. under each specific interpreter version.
Concerning the installation itself, you can either do this easily by using Concerning the installation itself, you can either do this easily by using
@ -449,7 +441,6 @@ patched Ruby interpreter:
```bash ```bash
$ rvm install 1.9.2-p180 --patch gcdata $ 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 $ rvm install 1.9.2-p180 --patch ~/Downloads/downloaded_gcdata_patch.patch
``` ```
@ -483,7 +474,6 @@ $ cd <ruby-version>
```bash ```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.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 ##### Configure and Install