Rails::Server (original) (raw)

Namespace

Methods

D

M

N

O

S

Class Public methods

Source: show | on GitHub

def initialize(options = nil) @default_options = options || {} super(@default_options) set_environment end

Instance Public methods

Source: show | on GitHub

def default_options super.merge(@default_options) end

Source: show | on GitHub

def served_url "#{options[:SSLEnable] ? 'https' : 'http'}://#{options[:Host]}:#{options[:Port]}" unless use_puma? end

Source: show | on GitHub

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

Source: show | on GitHub

def start(after_stop_callback = nil) trap(:INT) { exit } create_tmp_directories setup_dev_caching log_to_stdout if options[:log_stdout]

super() ensure after_stop_callback.call if after_stop_callback end