aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/commands/servers/new_mongrel.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2008-11-22 14:00:58 -0600
committerJoshua Peek <josh@joshpeek.com>2008-11-22 14:00:58 -0600
commit0ecf2f6bdb7423516a18f45a65e1301cf8cd9c7d (patch)
treef62b6225b7389dd697b42246a708e6186c0ff90a /railties/lib/commands/servers/new_mongrel.rb
parent2144c0f8ff9bdd3dceb085ddb1c4b8711ef329a4 (diff)
downloadrails-0ecf2f6bdb7423516a18f45a65e1301cf8cd9c7d.tar.gz
rails-0ecf2f6bdb7423516a18f45a65e1301cf8cd9c7d.tar.bz2
rails-0ecf2f6bdb7423516a18f45a65e1301cf8cd9c7d.zip
Kill dead "new_mongrel" handler
Diffstat (limited to 'railties/lib/commands/servers/new_mongrel.rb')
-rw-r--r--railties/lib/commands/servers/new_mongrel.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/railties/lib/commands/servers/new_mongrel.rb b/railties/lib/commands/servers/new_mongrel.rb
deleted file mode 100644
index 174dbf8a37..0000000000
--- a/railties/lib/commands/servers/new_mongrel.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-unless defined?(Mongrel)
- abort "PROBLEM: Mongrel is not available on your system (or not in your path)"
-end
-
-require 'rails/mongrel_server/commands'
-
-GemPlugin::Manager.instance.load "rails::mongrel" => GemPlugin::INCLUDE, "rails" => GemPlugin::EXCLUDE
-
-case ARGV[0] ||= 'start'
-when 'start', 'stop', 'restart'
- ARGV[0] = "rails::mongrelserver::#{ARGV[0]}"
-end
-
-if not Mongrel::Command::Registry.instance.run ARGV
- exit 1
-end