aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/command_line.md
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2013-01-04 14:40:21 +0900
committerAkira Matsuda <ronnie@dio.jp>2013-01-04 14:40:21 +0900
commitffaad630e2166cd77ff4761f1e3d1b555beb9ee5 (patch)
treed53b8fab0b6431c5d50e7bbf8a038333621d26e7 /guides/source/command_line.md
parent40c3d80296763aed4df3b918ace39312fd0a1bd9 (diff)
downloadrails-ffaad630e2166cd77ff4761f1e3d1b555beb9ee5.tar.gz
rails-ffaad630e2166cd77ff4761f1e3d1b555beb9ee5.tar.bz2
rails-ffaad630e2166cd77ff4761f1e3d1b555beb9ee5.zip
get rid of outdated "`server` with Different Backends" section
* I don't think people are running Rails under mongrel today * it's better not to sudo gem install * basically all we need to do is just bundle the server. No need to give its name as a parameter * I could write ^^^, but I realized that it's not really about "command line"
Diffstat (limited to 'guides/source/command_line.md')
-rw-r--r--guides/source/command_line.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/guides/source/command_line.md b/guides/source/command_line.md
index a23e5011be..fd9c2b474f 100644
--- a/guides/source/command_line.md
+++ b/guides/source/command_line.md
@@ -592,28 +592,3 @@ development:
It also generated some lines in our database.yml configuration corresponding to our choice of PostgreSQL for database.
NOTE. The only catch with using the SCM options is that you have to make your application's directory first, then initialize your SCM, then you can run the `rails new` command to generate the basis of your app.
-
-### `server` with Different Backends
-
-Many people have created a large number of different web servers in Ruby, and many of them can be used to run Rails. Since version 2.3, Rails uses Rack to serve its webpages, which means that any webserver that implements a Rack handler can be used. This includes WEBrick, Mongrel, Thin, and Phusion Passenger (to name a few!).
-
-NOTE: For more details on the Rack integration, see [Rails on Rack](rails_on_rack.html).
-
-To use a different server, just install its gem, then use its name for the first parameter to `rails server`:
-
-```bash
-$ sudo gem install mongrel
-Building native extensions. This could take a while...
-Building native extensions. This could take a while...
-Successfully installed gem_plugin-0.2.3
-Successfully installed fastthread-1.0.1
-Successfully installed cgi_multipart_eof_fix-2.5.0
-Successfully installed mongrel-1.1.5
-...
-...
-Installing RDoc documentation for mongrel-1.1.5...
-$ rails server mongrel
-=> Booting Mongrel (use 'rails server webrick' to force WEBrick)
-=> Rails 3.1.0 application starting on http://0.0.0.0:3000
-...
-```