Class: Rails::Server
- Inherits:
-
Rack::Server
- Object
- Rack::Server
- Rails::Server
- Defined in:
- lib/rails/commands/server.rb
Defined Under Namespace
Classes: Options
Instance Method Summary collapse
-
#app ⇒ Object
TODO: this is no longer required but we keep it for the moment to support older config.ru files.
- #default_options ⇒ Object
-
#initialize ⇒ Server
constructor
A new instance of Server.
- #middleware ⇒ Object
- #opt_parser ⇒ Object
- #set_environment ⇒ Object
- #start ⇒ Object
Constructor Details
#initialize ⇒ Server
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
#app ⇒ Object
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_options ⇒ Object
90 91 92 93 94 95 96 97 98 99 100 |
# File 'lib/rails/commands/server.rb', line 90 def 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 ⇒ Object
86 87 88 |
# File 'lib/rails/commands/server.rb', line 86 def middleware Hash.new([]) end |
#opt_parser ⇒ Object
64 65 66 |
# File 'lib/rails/commands/server.rb', line 64 def opt_parser Options.new end |
#set_environment ⇒ Object
68 69 70 |
# File 'lib/rails/commands/server.rb', line 68 def set_environment ENV["RAILS_ENV"] ||= [:environment] end |
#start ⇒ Object
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 [: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 && [:daemonize] end |