thin 1.2.3-x86-mswin32 → 1.2.4-x86-mswin32
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/CHANGELOG +1 -1
- data/lib/rack/adapter/rails.rb +2 -2
- data/lib/thin/version.rb +1 -1
- data/lib/thin_parser.so +0 -0
- metadata +2 -2
data/CHANGELOG
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
== 1.2.
|
1
|
+
== 1.2.4 Flaming Astroboy
|
2
2
|
* Fix a few issues in thin to make it a better "gem citizen" [josh]
|
3
3
|
* Fix test for rack based Rails in adapter under Ruby >= 1.8.7 [#109 state:resolved]
|
4
4
|
* Fix Remote address spoofing vulnerability in Connection#remote_address [Alexey Borzenkov]
|
data/lib/rack/adapter/rails.rb
CHANGED
@@ -33,8 +33,8 @@ module Rack
|
|
33
33
|
|
34
34
|
def rack_based?
|
35
35
|
ActionController.const_defined?(:Dispatcher) &&
|
36
|
-
(ActionController::Dispatcher.instance_methods.include?(:call)
|
37
|
-
|
36
|
+
(ActionController::Dispatcher.instance_methods.include?(:call) ||
|
37
|
+
ActionController::Dispatcher.instance_methods.include?("call"))
|
38
38
|
end
|
39
39
|
|
40
40
|
def load_application
|
data/lib/thin/version.rb
CHANGED
data/lib/thin_parser.so
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.4
|
5
5
|
platform: x86-mswin32
|
6
6
|
authors:
|
7
7
|
- Marc-Andre Cournoyer
|
@@ -101,7 +101,6 @@ files:
|
|
101
101
|
- lib/thin/statuses.rb
|
102
102
|
- lib/thin/version.rb
|
103
103
|
- lib/thin.rb
|
104
|
-
- lib/thin_parser.so
|
105
104
|
- spec/backends
|
106
105
|
- spec/backends/swiftiply_client_spec.rb
|
107
106
|
- spec/backends/tcp_server_spec.rb
|
@@ -216,6 +215,7 @@ files:
|
|
216
215
|
- ext/thin_parser/extconf.rb
|
217
216
|
- ext/thin_parser/common.rl
|
218
217
|
- ext/thin_parser/parser.rl
|
218
|
+
- lib/thin_parser.so
|
219
219
|
has_rdoc: true
|
220
220
|
homepage: http://code.macournoyer.com/thin/
|
221
221
|
post_install_message:
|