aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/server.rb
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2013-03-18 10:59:47 -0700
committerSteve Klabnik <steve@steveklabnik.com>2013-03-18 10:59:47 -0700
commit3b68f212410b742e941e89034483571a50518200 (patch)
tree1e1b53eed626071318a20d1ac69313b523c420f3 /railties/lib/rails/commands/server.rb
parent2392535f4085d88186097e3c23414e958fb1d16d (diff)
parentb0557389de13103c32baee438bf2d58f40176f73 (diff)
downloadrails-3b68f212410b742e941e89034483571a50518200.tar.gz
rails-3b68f212410b742e941e89034483571a50518200.tar.bz2
rails-3b68f212410b742e941e89034483571a50518200.zip
Merge pull request #9202 from gkop/more_helpful_message_when_starting_server
More helpful message when starting server
Diffstat (limited to 'railties/lib/rails/commands/server.rb')
-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 876d457359..e3119ecf22 100644
--- a/railties/lib/rails/commands/server.rb
+++ b/railties/lib/rails/commands/server.rb
@@ -62,7 +62,7 @@ module Rails
url = "#{options[:SSLEnable] ? 'https' : 'http'}://#{options[:Host]}:#{options[:Port]}"
puts "=> Booting #{ActiveSupport::Inflector.demodulize(server)}"
puts "=> Rails #{Rails.version} application starting in #{Rails.env} on #{url}"
- puts "=> Call with -d to detach" unless options[:daemonize]
+ puts "=> Run `rails server -h` for more startup options"
trap(:INT) { exit }
puts "=> Ctrl-C to shutdown server" unless options[:daemonize]