Namespace
Methods
A
D
M
N
O
S
Class Public methods
new(*)
# File railties/lib/rails/commands/server.rb, line 51
def initialize(*)
  super
  set_environment
end
Instance Public methods
app()

TODO: this is no longer required but we keep it for the moment to support older config.ru files.

# File railties/lib/rails/commands/server.rb, line 57
def app
  @app ||= begin
    app = super
    app.respond_to?(:to_app) ? app.to_app : app
  end
end
default_options()
# File railties/lib/rails/commands/server.rb, line 90
def default_options
  super.merge({
    Port:               ENV.fetch('PORT', 3000).to_i,
    DoNotReverseLookup: true,
    environment:        (ENV['RAILS_ENV'] || ENV['RACK_ENV'] || "development").dup,
    daemonize:          false,
    caching:            nil,
    pid:                Options::DEFAULT_PID_PATH,
    restart_cmd:        restart_command
  })
end
middleware()
# File railties/lib/rails/commands/server.rb, line 86
def middleware
  Hash.new([])
end
opt_parser()
# File railties/lib/rails/commands/server.rb, line 64
def opt_parser
  Options.new
end
set_environment()
# File railties/lib/rails/commands/server.rb, line 68
def set_environment
  ENV["RAILS_ENV"] ||= options[:environment]
end
start()
# File railties/lib/rails/commands/server.rb, line 72
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