Class: Rails::Server

Inherits:
Rack::Server
  • Object
show all
Defined in:
lib/rails/commands/server.rb

Defined Under Namespace

Classes: Options

Instance Method Summary collapse

Constructor Details

#initializeServer

Returns a new instance of Server.



51
52
53
54
# File 'lib/rails/commands/server.rb', line 51

def initialize(*)
  super
  set_environment
end

Instance Method Details

#appObject

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



57
58
59
60
61
62
# File '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_optionsObject



90
91
92
93
94
95
96
97
98
99
100
# File '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

#middlewareObject



86
87
88
# File 'lib/rails/commands/server.rb', line 86

def middleware
  Hash.new([])
end

#opt_parserObject



64
65
66
# File 'lib/rails/commands/server.rb', line 64

def opt_parser
  Options.new
end

#set_environmentObject



68
69
70
# File 'lib/rails/commands/server.rb', line 68

def set_environment
  ENV["RAILS_ENV"] ||= options[:environment]
end

#startObject



72
73
74
75
76
77
78
79
80
81
82
83
84
# File '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