aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands
diff options
context:
space:
mode:
authorRyunosuke Sato <tricknotes.rs@gmail.com>2016-09-07 01:59:37 +0900
committerRyunosuke Sato <tricknotes.rs@gmail.com>2016-09-07 01:59:37 +0900
commitb9e98d62c24b04937a219285aef69c2a8344beab (patch)
tree4f4dfb81b3b9976c0342dfe6d1aa8cba6b02244e /railties/lib/rails/commands
parent1722397f9a63f74bc7ff633895aec7109568a25b (diff)
downloadrails-b9e98d62c24b04937a219285aef69c2a8344beab.tar.gz
rails-b9e98d62c24b04937a219285aef69c2a8344beab.tar.bz2
rails-b9e98d62c24b04937a219285aef69c2a8344beab.zip
Remove the word "mongrel" from documents
Currently mongrel is not maintained. And it couldn't be built with any Ruby versions that supported by Rails. It is reasonable to remove the word "mongrel" in order to avoid confusion from newcomer.
Diffstat (limited to 'railties/lib/rails/commands')
-rw-r--r--railties/lib/rails/commands/server.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/server.rb b/railties/lib/rails/commands/server.rb
index 0339849bfe..1eabf3fef3 100644
--- a/railties/lib/rails/commands/server.rb
+++ b/railties/lib/rails/commands/server.rb
@@ -23,7 +23,7 @@ module Rails
def option_parser(options)
OptionParser.new do |opts|
- opts.banner = "Usage: rails server [mongrel, thin etc] [options]"
+ opts.banner = "Usage: rails server [puma, thin etc] [options]"
opts.on("-p", "--port=port", Integer,
"Runs Rails on the specified port.", "Default: 3000") { |v| options[:Port] = v }
opts.on("-b", "--binding=IP", String,