diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2016-09-29 17:26:41 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2016-09-29 17:30:56 +0900 |
commit | ca41fafd9a391edc202ad7c08e592dfa35f96ee9 (patch) | |
tree | 63be00e1b028a1a1837c3c75f04cea7b68284d6f /railties/lib | |
parent | 29f883640cd8b3cebfada163d03595de2dd3daf5 (diff) | |
download | rails-ca41fafd9a391edc202ad7c08e592dfa35f96ee9.tar.gz rails-ca41fafd9a391edc202ad7c08e592dfa35f96ee9.tar.bz2 rails-ca41fafd9a391edc202ad7c08e592dfa35f96ee9.zip |
remove `mongrel` once again
`mongrel` was removed in #26408. But have back accidentally in #26414.
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/commands/server/server_command.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/server/server_command.rb b/railties/lib/rails/commands/server/server_command.rb index 4349dfdc71..14cf72f483 100644 --- a/railties/lib/rails/commands/server/server_command.rb +++ b/railties/lib/rails/commands/server/server_command.rb @@ -21,7 +21,7 @@ module Rails def option_parser(options) # :nodoc: OptionParser.new do |opts| - opts.banner = "Usage: rails server [mongrel, thin etc] [options]" + opts.banner = "Usage: rails server [puma, thin etc] [options]" opts.separator "" opts.separator "Options:" |