Class: Quails::Server
- Defined in:
- railties/lib/rails/commands/server/server_command.rb
Defined Under Namespace
Classes: Options
Instance Method Summary collapse
- #app ⇒ Object
- #default_options ⇒ Object
-
#initialize(options = nil) ⇒ Server
constructor
A new instance of Server.
- #middleware ⇒ Object
- #opt_parser ⇒ Object
- #set_environment ⇒ Object
- #start ⇒ Object
Constructor Details
#initialize(options = nil) ⇒ Server
Returns a new instance of Server.
19 20 21 22 23 |
# File 'railties/lib/rails/commands/server/server_command.rb', line 19 def initialize( = nil) = || {} super() set_environment end |
Instance Method Details
#app ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'railties/lib/rails/commands/server/server_command.rb', line 25 def app @app ||= begin app = super if app.is_a?(Class) ActiveSupport::Deprecation.warn(" Use `Quails::Application` subclass to start the server is deprecated and will be removed in Quails 6.0.\n Please change `run \#{app}` to `run Quails.application` in config.ru.\n MSG\n end\n app.respond_to?(:to_app) ? app.to_app : app\n end\nend\n".squish) |
#default_options ⇒ Object
64 65 66 |
# File 'railties/lib/rails/commands/server/server_command.rb', line 64 def super.merge() end |
#middleware ⇒ Object
60 61 62 |
# File 'railties/lib/rails/commands/server/server_command.rb', line 60 def middleware Hash.new([]) end |
#opt_parser ⇒ Object
38 39 40 |
# File 'railties/lib/rails/commands/server/server_command.rb', line 38 def opt_parser Options.new end |
#set_environment ⇒ Object
42 43 44 |
# File 'railties/lib/rails/commands/server/server_command.rb', line 42 def set_environment ENV["RAILS_ENV"] ||= [:environment] end |
#start ⇒ Object
46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'railties/lib/rails/commands/server/server_command.rb', line 46 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 && [:daemonize] end |