Namespace
- CLASS Rails::Server::Options
Methods
- A
- D
- M
- N
- O
- S
Class Public methods
new(options = nil)
Link
Instance Public methods
app()
Link
TODO: this is no longer required but we keep it for the moment to support older config.ru files.
default_options()
Link
middleware()
Link
opt_parser()
Link
set_environment()
Link
start()
Link
# File railties/lib/rails/commands/server/server_command.rb, line 37 def start print_boot_information trap(:INT) { exit } create_tmp_directories setup_dev_caching log_to_stdout if options[:log_stdout] super ensure # The '-h' option calls exit before @options is set. # If we call 'options' with it unset, we get double help banners. puts "Exiting" unless @options && options[:daemonize] end