thin 1.2.3 → 1.2.4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +1 -1
- data/lib/rack/adapter/rails.rb +2 -2
- data/lib/thin/version.rb +1 -1
- metadata +1 -2
- data/lib/thin_parser.so +0 -0
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
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: ruby
|
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
|
data/lib/thin_parser.so
DELETED
Binary file
|