mongrel 1.1.4 → 1.1.5
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 +2 -2
- 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/mongrel/const.rb +1 -1
- data/mongrel.gemspec +6 -4
- metadata +31 -6
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
F�s@�=!�}O���r$� ��'���%l���kX���8�M�lI��M��w}A��g��n�x��xAta�<�i��:��d�T/};�h�u���L��:JC2��w��8_IZ���S�$UG�+-c�õ�N@�a�U��=�V}�P�k����+�M�.)�g>��(g���E?
|
2
|
+
ެE�ɳS�(��1�&+���e�Lݭ#& $��K[de��x����7Y�t��ǩ���0V��
|
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/mongrel/const.rb
CHANGED
data/mongrel.gemspec
CHANGED
@@ -1,23 +1,25 @@
|
|
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
|
|
9
9
|
s.specification_version = 2 if s.respond_to? :specification_version=
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.authors = ["Zed A. Shaw"]
|
13
|
-
s.date = %q{2008-
|
13
|
+
s.date = %q{2008-05-22}
|
14
14
|
s.default_executable = %q{mongrel_rails}
|
15
15
|
s.description = %q{A small fast HTTP library and server that runs Rails, Camping, Nitro and Iowa apps.}
|
16
16
|
s.email = %q{}
|
17
17
|
s.executables = ["mongrel_rails"]
|
18
18
|
s.extensions = ["ext/http11/extconf.rb"]
|
19
|
+
s.extra_rdoc_files = ["CHANGELOG", "COPYING", "lib/mongrel/camping.rb", "lib/mongrel/cgi.rb", "lib/mongrel/command.rb", "lib/mongrel/configurator.rb", "lib/mongrel/const.rb", "lib/mongrel/debug.rb", "lib/mongrel/gems.rb", "lib/mongrel/handlers.rb", "lib/mongrel/header_out.rb", "lib/mongrel/http_request.rb", "lib/mongrel/http_response.rb", "lib/mongrel/init.rb", "lib/mongrel/rails.rb", "lib/mongrel/stats.rb", "lib/mongrel/tcphack.rb", "lib/mongrel/uri_classifier.rb", "lib/mongrel.rb", "LICENSE", "README"]
|
19
20
|
s.has_rdoc = true
|
20
21
|
s.homepage = %q{http://mongrel.rubyforge.org}
|
22
|
+
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Mongrel", "--main", "README"]
|
21
23
|
s.require_paths = ["lib", "ext"]
|
22
24
|
s.required_ruby_version = Gem::Requirement.new(">= 1.8.4")
|
23
25
|
s.rubyforge_project = %q{mongrel}
|
@@ -66,7 +68,7 @@ end
|
|
66
68
|
# case RUBY_PLATFORM
|
67
69
|
# when /mswin/
|
68
70
|
# self.files += ['lib/http11.so']
|
69
|
-
# self.platform = Gem::Platform::
|
71
|
+
# self.platform = Gem::Platform::CURRENT
|
70
72
|
# add_dependency('cgi_multipart_eof_fix', '>= 2.4')
|
71
73
|
# when /java/
|
72
74
|
# self.files += ['lib/http11.jar']
|
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: ruby
|
6
6
|
authors:
|
7
7
|
- Zed A. Shaw
|
@@ -52,7 +52,7 @@ cert_chain:
|
|
52
52
|
ALN3mi/9z0Mf1YroliUgF0v5Yw==
|
53
53
|
-----END CERTIFICATE-----
|
54
54
|
|
55
|
-
date: 2008-
|
55
|
+
date: 2008-05-22 00:00:00 -04:00
|
56
56
|
default_executable:
|
57
57
|
dependencies:
|
58
58
|
- !ruby/object:Gem::Dependency
|
@@ -97,8 +97,28 @@ executables:
|
|
97
97
|
- mongrel_rails
|
98
98
|
extensions:
|
99
99
|
- ext/http11/extconf.rb
|
100
|
-
extra_rdoc_files:
|
101
|
-
|
100
|
+
extra_rdoc_files:
|
101
|
+
- CHANGELOG
|
102
|
+
- COPYING
|
103
|
+
- lib/mongrel/camping.rb
|
104
|
+
- lib/mongrel/cgi.rb
|
105
|
+
- lib/mongrel/command.rb
|
106
|
+
- lib/mongrel/configurator.rb
|
107
|
+
- lib/mongrel/const.rb
|
108
|
+
- lib/mongrel/debug.rb
|
109
|
+
- lib/mongrel/gems.rb
|
110
|
+
- lib/mongrel/handlers.rb
|
111
|
+
- lib/mongrel/header_out.rb
|
112
|
+
- lib/mongrel/http_request.rb
|
113
|
+
- lib/mongrel/http_response.rb
|
114
|
+
- lib/mongrel/init.rb
|
115
|
+
- lib/mongrel/rails.rb
|
116
|
+
- lib/mongrel/stats.rb
|
117
|
+
- lib/mongrel/tcphack.rb
|
118
|
+
- lib/mongrel/uri_classifier.rb
|
119
|
+
- lib/mongrel.rb
|
120
|
+
- LICENSE
|
121
|
+
- README
|
102
122
|
files:
|
103
123
|
- bin/mongrel_rails
|
104
124
|
- CHANGELOG
|
@@ -172,8 +192,13 @@ files:
|
|
172
192
|
has_rdoc: true
|
173
193
|
homepage: http://mongrel.rubyforge.org
|
174
194
|
post_install_message:
|
175
|
-
rdoc_options:
|
176
|
-
|
195
|
+
rdoc_options:
|
196
|
+
- --line-numbers
|
197
|
+
- --inline-source
|
198
|
+
- --title
|
199
|
+
- Mongrel
|
200
|
+
- --main
|
201
|
+
- README
|
177
202
|
require_paths:
|
178
203
|
- lib
|
179
204
|
- ext
|
metadata.gz.sig
CHANGED
Binary file
|