Source: show | on GitHub
# File railties/lib/rails/commands/server/server_command.rb, line 19 def initialize(options = nil) @default_options = options || {} super(@default_options) set_environment end
# File railties/lib/rails/commands/server/server_command.rb, line 55 def default_options super.merge(@default_options) end
# File railties/lib/rails/commands/server/server_command.rb, line 51 def middleware Hash.new([]) end
# File railties/lib/rails/commands/server/server_command.rb, line 25 def opt_parser Options.new end
# File railties/lib/rails/commands/server/server_command.rb, line 59 def served_url "#{options[:SSLEnable] ? 'https' : 'http'}://#{options[:Host]}:#{options[:Port]}" unless use_puma? end
# File railties/lib/rails/commands/server/server_command.rb, line 29 def set_environment ENV["RAILS_ENV"] ||= options[:environment] end
# File railties/lib/rails/commands/server/server_command.rb, line 33 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