Spec-Zone.ru › Ruby on Rails 5.1

class Rails::Server

Parent:
Rack::Server

Общедоступные методы класса

new(options = nil) Показать исходный код
# File railties/lib/rails/commands/server/server_command.rb, line 15
def initialize(options = nil)
  @default_options = options || {}
  super(@default_options)
  set_environment
end
Вызывает метод суперкласса

Общедоступные методы экземпляра

app() Показать исходный код
# File railties/lib/rails/commands/server/server_command.rb, line 22
def app
  @app ||= begin
    app = super
    app.respond_to?(:to_app) ? app.to_app : app
  end
end

TODO: это больше не требуется, но мы сохраняем его на данный момент для поддержки более старых файлов config.ru.

Вызывает метод суперкласса
default_options() Показать исходный код
# File railties/lib/rails/commands/server/server_command.rb, line 55
def default_options
  super.merge(@default_options)
end
Вызывает метод суперкласса
middleware() Показать исходный код
# File railties/lib/rails/commands/server/server_command.rb, line 51
def middleware
  Hash.new([])
end
opt_parser() Показать исходный код
# File railties/lib/rails/commands/server/server_command.rb, line 29
def opt_parser
  Options.new
end
set_environment() Показать исходный код
# File railties/lib/rails/commands/server/server_command.rb, line 33
def set_environment
  ENV["RAILS_ENV"] ||= options[:environment]
end
start() Показать исходный код
# File railties/lib/rails/commands/server/server_command.rb, line 37
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
Вызывает метод суперкласса

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

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API