diff options
author | Aditya Sanghi <asanghi@me.com> | 2012-04-24 21:56:41 -0500 |
---|---|---|
committer | Aditya Sanghi <asanghi@me.com> | 2012-04-24 21:56:41 -0500 |
commit | d6c831c198baee2542a070c62f1608f88fe60e34 (patch) | |
tree | bc34bac025f2c07688c79f666656d0ffc6ba8766 /railties/lib/rails/commands/server.rb | |
parent | 67ede880550836ce9f66164c56c8afeb397a54da (diff) | |
download | rails-d6c831c198baee2542a070c62f1608f88fe60e34.tar.gz rails-d6c831c198baee2542a070c62f1608f88fe60e34.tar.bz2 rails-d6c831c198baee2542a070c62f1608f88fe60e34.zip |
and one more time
Diffstat (limited to 'railties/lib/rails/commands/server.rb')
-rw-r--r-- | railties/lib/rails/commands/server.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/server.rb b/railties/lib/rails/commands/server.rb index 2dea456386..4c4caad69f 100644 --- a/railties/lib/rails/commands/server.rb +++ b/railties/lib/rails/commands/server.rb @@ -17,7 +17,7 @@ module Rails opts.on("-c", "--config=file", String, "Use custom rackup configuration file") { |v| options[:config] = v } opts.on("-d", "--daemon", "Make server run as a Daemon.") { options[:daemonize] = true } - opts.on("-u", "--debugger", "Enable ruby debugging for the server.") { options[:debugger] = true } + opts.on("-u", "--debugger", "Enable the debugger") { options[:debugger] = true } opts.on("-e", "--environment=name", String, "Specifies the environment to run this server under (test/development/production).", "Default: development") { |v| options[:environment] = v } |