summary refs log tree commit
diff options
context:
space:
mode:
authorRyunosuke Sato <tricknotes.rs@gmail.com>2017-04-17 00:32:39 +0900
committerRyunosuke Sato <tricknotes.rs@gmail.com>2017-04-17 00:32:39 +0900
commitc0eb15d834cfe0a92af4307beee4b02ce7a9d963 (patch)
tree678ef6f879f05c84cfaabda5ef882388ea2198e9
parent85d95bbf6502a58160bf727c75633b6d37b34c89 (diff)
downloadrack-c0eb15d834cfe0a92af4307beee4b02ce7a9d963.tar.gz
Remove "mongrel" from server option's description
Currently [mongrel](https://github.com/mongrel/mongrel) is not maintained.
And it couldn't be built with any Ruby versions that supported by Rack.
-rw-r--r--lib/rack/server.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rack/server.rb b/lib/rack/server.rb
index 1f37aacb..ce965144 100644
--- a/lib/rack/server.rb
+++ b/lib/rack/server.rb
@@ -47,7 +47,7 @@ module Rack
 
           opts.separator ""
           opts.separator "Rack options:"
-          opts.on("-s", "--server SERVER", "serve using SERVER (thin/puma/webrick/mongrel)") { |s|
+          opts.on("-s", "--server SERVER", "serve using SERVER (thin/puma/webrick)") { |s|
             options[:server] = s
           }