Class: Rails::Command::ServerCommand
- Defined in:
- lib/rails/commands/server/server_command.rb
Overview
:nodoc:
Constant Summary collapse
- DEFAULT_PORT =
3000
- DEFAULT_PID_PATH =
"tmp/pids/server.pid".freeze
Instance Method Summary collapse
-
#initialize(args = [], local_options = {}, config = {}) ⇒ ServerCommand
constructor
A new instance of ServerCommand.
- #perform ⇒ Object
Methods inherited from Base
base_name, command_name, default_command_root, desc, engine?, executable, exit_on_failure?, #help, hide_command!, inherited, namespace, perform, printing_commands, usage_path
Methods included from Actions
#load_generators, #load_tasks, #require_application!, #require_application_and_environment!, #require_environment!, #set_application_directory!
Constructor Details
#initialize(args = [], local_options = {}, config = {}) ⇒ ServerCommand
Returns a new instance of ServerCommand.
132 133 134 135 136 137 |
# File 'lib/rails/commands/server/server_command.rb', line 132 def initialize(args = [], = {}, config = {}) @original_options = super @server = self.args.shift @log_stdout = [:daemon].blank? && ([:environment] || Rails.env) == "development" end |
Instance Method Details
#perform ⇒ Object
139 140 141 142 143 144 145 146 147 148 149 |
# File 'lib/rails/commands/server/server_command.rb', line 139 def perform set_application_directory! prepare_restart Rails::Server.new().tap do |server| # Require application after server sets environment to propagate # the --environment option. require APP_PATH Dir.chdir(Rails.application.root) server.start end end |