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

fix server names [ci skip]

Per feedback in af63e4a254 (commitcomment-7477636)
This commit is contained in:
Vijay Dev 2014-08-22 09:43:45 +05:30
parent a57f7b5797
commit 285a9f0dbe

View file

@ -20,7 +20,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 [mongrel, 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,