From 5999fdd3f30c64e340b64be1a64aa16323c6c69e Mon Sep 17 00:00:00 2001 From: Rick Olson Date: Sun, 19 Nov 2006 21:12:22 +0000 Subject: Use custom mime file for script/server mongrel if config/mime.yml exists. Pass --mime=other/path for a custom mime file. [Rick Olson] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5572 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/lib/commands/servers/mongrel.rb | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'railties/lib/commands/servers') diff --git a/railties/lib/commands/servers/mongrel.rb b/railties/lib/commands/servers/mongrel.rb index 98441aca91..6e401adba2 100644 --- a/railties/lib/commands/servers/mongrel.rb +++ b/railties/lib/commands/servers/mongrel.rb @@ -14,14 +14,18 @@ require 'optparse' detach = false ip = nil port = nil +mime = 'config/mime.yml' ARGV.clone.options do |opt| opt.on("-p", "--port=port", Integer, "Runs Rails on the specified port.", "Default: 3000") { |p| port = p } - opt.on("-a", "--binding=ip", String, + opt.on("-a", "--address=ip", String, "Binds Rails to the specified ip.", "Default: 0.0.0.0") { |i| ip = i } + opt.on("-m", "--mime=path", String, + "Path to custom mime file.", + "Default: config/mime.yml (if it exists)") { |m| mime = m } opt.on('-h', '--help', 'Show this message.') { puts opt; exit 0 } opt.on('-d', '-d', 'Call with -d to detach') { detach = true } opt.parse! @@ -43,6 +47,10 @@ end trap(:INT) { exit } +if File.exist?(File.join(RAILS_ROOT, mime)) && !ARGV.any? { |a| a =~ /^--?m/ } + ARGV << "--mime=#{mime}" +end + begin ARGV.unshift("start") load 'mongrel_rails' -- cgit v1.2.3