class Rails::Server

Parent:
Rack::Server

Public Class Methods

new(*) Show source
# File railties/lib/rails/commands/server.rb, line 76
def initialize(*)
  super
  set_environment
end
Calls superclass method

Public Instance Methods

app() Show source
# File railties/lib/rails/commands/server.rb, line 82
def app
  @app ||= begin
    app = super
    app.respond_to?(:to_app) ? app.to_app : app
  end
end

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

Calls superclass method
default_options() Show source
# File railties/lib/rails/commands/server.rb, line 115
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
Calls superclass method
middleware() Show source
# File railties/lib/rails/commands/server.rb, line 111
def middleware
  Hash.new([])
end
opt_parser() Show source
# File railties/lib/rails/commands/server.rb, line 89
def opt_parser
  Options.new
end
set_environment() Show source
# File railties/lib/rails/commands/server.rb, line 93
def set_environment
  ENV["RAILS_ENV"] ||= options[:environment]
end
start() Show source
# File railties/lib/rails/commands/server.rb, line 97
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
Calls superclass method

© 2004–2018 David Heinemeier Hansson
Licensed under the MIT License.