aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/commands/servers
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-11-19 22:17:26 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-11-19 22:17:26 +0000
commit44de099efe35a51b709ae754d8c5f769da2bc753 (patch)
treefd78bb89e4999681231dcd5b842f2a0a177c7bae /railties/lib/commands/servers
parentf24ed3bf6df94405d2f2620a62be500919c30e5b (diff)
downloadrails-44de099efe35a51b709ae754d8c5f769da2bc753.tar.gz
rails-44de099efe35a51b709ae754d8c5f769da2bc753.tar.bz2
rails-44de099efe35a51b709ae754d8c5f769da2bc753.zip
Restore windows compatibility
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5577 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib/commands/servers')
-rw-r--r--railties/lib/commands/servers/mongrel.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/railties/lib/commands/servers/mongrel.rb b/railties/lib/commands/servers/mongrel.rb
index 558a5dac31..e5bde9fe1b 100644
--- a/railties/lib/commands/servers/mongrel.rb
+++ b/railties/lib/commands/servers/mongrel.rb
@@ -45,7 +45,11 @@ else
trap(:INT) { exit }
begin
- `mongrel_rails start -p #{OPTIONS[:port]} -a #{OPTIONS[:ip]} -e #{OPTIONS[:environment]}`
+ silence_warnings do
+ ARGV = [ "start", "-p", OPTIONS[:port].to_s, "-a", OPTIONS[:ip].to_s, "-e", OPTIONS[:environment] ]
+ end
+
+ load("mongrel_rails")
ensure
tail_thread.kill if tail_thread
puts 'Exiting'