mongrel 1.1.4-x86-mswin32-60 → 1.1.5-x86-mswin32-60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data.tar.gz.sig +0 -0
 - data/CHANGELOG +2 -0
 - data/bin/mongrel_rails +1 -1
 - data/ext/http11/http11.c +1 -1
 - data/ext/http11_java/org/jruby/mongrel/Http11.java +1 -1
 - data/lib/http11.so +0 -0
 - data/lib/mongrel/const.rb +1 -1
 - data/mongrel.gemspec +3 -3
 - metadata +2 -2
 - metadata.gz.sig +0 -0
 
    
        data.tar.gz.sig
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/CHANGELOG
    CHANGED
    
    
    
        data/bin/mongrel_rails
    CHANGED
    
    | 
         @@ -28,7 +28,7 @@ module Mongrel 
     | 
|
| 
       28 
28 
     | 
    
         
             
                    ['-a', '--address ADDR', "Address to bind to", :@address, "0.0.0.0"],
         
     | 
| 
       29 
29 
     | 
    
         
             
                    ['-l', '--log FILE', "Where to write log messages", :@log_file, "log/mongrel.log"],
         
     | 
| 
       30 
30 
     | 
    
         
             
                    ['-P', '--pid FILE', "Where to write the PID", :@pid_file, "log/mongrel.pid"],
         
     | 
| 
       31 
     | 
    
         
            -
                    ['-n', '--num- 
     | 
| 
      
 31 
     | 
    
         
            +
                    ['-n', '--num-processors INT', "Number of processors active before clients denied", :@num_processors, 1024],
         
     | 
| 
       32 
32 
     | 
    
         
             
                    ['-o', '--timeout TIME', "Time to wait (in seconds) before killing a stalled thread", :@timeout, 60],
         
     | 
| 
       33 
33 
     | 
    
         
             
                    ['-t', '--throttle TIME', "Time to pause (in hundredths of a second) between accepting clients", :@throttle, 0],
         
     | 
| 
       34 
34 
     | 
    
         
             
                    ['-m', '--mime PATH', "A YAML file that lists additional MIME types", :@mime_map, nil],
         
     | 
    
        data/ext/http11/http11.c
    CHANGED
    
    | 
         @@ -384,7 +384,7 @@ void Init_http11() 
     | 
|
| 
       384 
384 
     | 
    
         
             
              DEF_GLOBAL(server_protocol, "SERVER_PROTOCOL");
         
     | 
| 
       385 
385 
     | 
    
         
             
              DEF_GLOBAL(server_protocol_value, "HTTP/1.1");
         
     | 
| 
       386 
386 
     | 
    
         
             
              DEF_GLOBAL(http_host, "HTTP_HOST");
         
     | 
| 
       387 
     | 
    
         
            -
              DEF_GLOBAL(mongrel_version, "Mongrel 1.1. 
     | 
| 
      
 387 
     | 
    
         
            +
              DEF_GLOBAL(mongrel_version, "Mongrel 1.1.5"); /* XXX Why is this defined here? */
         
     | 
| 
       388 
388 
     | 
    
         
             
              DEF_GLOBAL(server_software, "SERVER_SOFTWARE");
         
     | 
| 
       389 
389 
     | 
    
         
             
              DEF_GLOBAL(port_80, "80");
         
     | 
| 
       390 
390 
     | 
    
         | 
| 
         @@ -215,7 +215,7 @@ public class Http11 extends RubyObject { 
     | 
|
| 
       215 
215 
     | 
    
         | 
| 
       216 
216 
     | 
    
         
             
                            req.setInstanceVariable("@http_body", RubyString.newString(runtime, new ByteList(hp.parser.buffer, at, length)));
         
     | 
| 
       217 
217 
     | 
    
         
             
                            req.aset(runtime.newString("SERVER_PROTOCOL"),runtime.newString("HTTP/1.1"));
         
     | 
| 
       218 
     | 
    
         
            -
                            req.aset(runtime.newString("SERVER_SOFTWARE"),runtime.newString("Mongrel 1.1. 
     | 
| 
      
 218 
     | 
    
         
            +
                            req.aset(runtime.newString("SERVER_SOFTWARE"),runtime.newString("Mongrel 1.1.5"));
         
     | 
| 
       219 
219 
     | 
    
         
             
                        }
         
     | 
| 
       220 
220 
     | 
    
         
             
                    };
         
     | 
| 
       221 
221 
     | 
    
         | 
    
        data/lib/http11.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/lib/mongrel/const.rb
    CHANGED
    
    
    
        data/mongrel.gemspec
    CHANGED
    
    | 
         @@ -1,17 +1,17 @@ 
     | 
|
| 
       1 
1 
     | 
    
         | 
| 
       2 
     | 
    
         
            -
            # Gem::Specification for Mongrel-1.1. 
     | 
| 
      
 2 
     | 
    
         
            +
            # Gem::Specification for Mongrel-1.1.5
         
     | 
| 
       3 
3 
     | 
    
         
             
            # Originally generated by Echoe
         
     | 
| 
       4 
4 
     | 
    
         | 
| 
       5 
5 
     | 
    
         
             
            Gem::Specification.new do |s|
         
     | 
| 
       6 
6 
     | 
    
         
             
              s.name = %q{mongrel}
         
     | 
| 
       7 
     | 
    
         
            -
              s.version = "1.1. 
     | 
| 
      
 7 
     | 
    
         
            +
              s.version = "1.1.5"
         
     | 
| 
       8 
8 
     | 
    
         
             
              s.platform = %q{x86-mswin32-60}
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
10 
     | 
    
         
             
              s.specification_version = 2 if s.respond_to? :specification_version=
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
              s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
         
     | 
| 
       13 
13 
     | 
    
         
             
              s.authors = ["Zed A. Shaw"]
         
     | 
| 
       14 
     | 
    
         
            -
              s.date = %q{2008- 
     | 
| 
      
 14 
     | 
    
         
            +
              s.date = %q{2008-05-22}
         
     | 
| 
       15 
15 
     | 
    
         
             
              s.default_executable = %q{mongrel_rails}
         
     | 
| 
       16 
16 
     | 
    
         
             
              s.description = %q{A small fast HTTP library and server that runs Rails, Camping, Nitro and Iowa apps.}
         
     | 
| 
       17 
17 
     | 
    
         
             
              s.email = %q{}
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: mongrel
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1.1. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.1.5
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: x86-mswin32-60
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors: 
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Zed A. Shaw
         
     | 
| 
         @@ -9,7 +9,7 @@ autorequire: 
     | 
|
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
     | 
    
         
            -
            date: 2008- 
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2008-05-22 00:00:00 -04:00
         
     | 
| 
       13 
13 
     | 
    
         
             
            default_executable: 
         
     | 
| 
       14 
14 
     | 
    
         
             
            dependencies: 
         
     | 
| 
       15 
15 
     | 
    
         
             
            - !ruby/object:Gem::Dependency 
         
     | 
    
        metadata.gz.sig
    CHANGED
    
    | 
         Binary file 
     |