rack_after_reply 0.0.2 → 0.0.3
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 +4 -0
- data/lib/rack_after_reply/adapter/passenger.rb +2 -1
- data/lib/rack_after_reply/version.rb +1 -1
- metadata +22 -40
data/CHANGELOG
CHANGED
@@ -12,8 +12,9 @@ module RackAfterReply
|
|
12
12
|
RackAfterReply.freedom_patch self, :initialize
|
13
13
|
|
14
14
|
def accept_and_process_next_request_with_rack_after_reply(socket_wrapper, channel, buffer)
|
15
|
-
accept_and_process_next_request_without_rack_after_reply(socket_wrapper, channel, buffer)
|
15
|
+
response = accept_and_process_next_request_without_rack_after_reply(socket_wrapper, channel, buffer)
|
16
16
|
fire_rack_after_reply
|
17
|
+
response
|
17
18
|
end
|
18
19
|
RackAfterReply.freedom_patch self, :accept_and_process_next_request
|
19
20
|
end
|
metadata
CHANGED
@@ -1,34 +1,25 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: rack_after_reply
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
6
|
-
- 0
|
7
|
-
- 0
|
8
|
-
- 2
|
9
|
-
version: 0.0.2
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.3
|
5
|
+
prerelease:
|
10
6
|
platform: ruby
|
11
|
-
authors:
|
7
|
+
authors:
|
12
8
|
- George Ogata
|
13
9
|
autorequire:
|
14
10
|
bindir: bin
|
15
11
|
cert_chain: []
|
16
|
-
|
17
|
-
date: 2011-05-20 00:00:00 -04:00
|
18
|
-
default_executable:
|
12
|
+
date: 2012-05-17 00:00:00.000000000 Z
|
19
13
|
dependencies: []
|
20
|
-
|
21
14
|
description:
|
22
|
-
email:
|
15
|
+
email:
|
23
16
|
- george.ogata@gmail.com
|
24
17
|
executables: []
|
25
|
-
|
26
18
|
extensions: []
|
27
|
-
|
28
|
-
extra_rdoc_files:
|
19
|
+
extra_rdoc_files:
|
29
20
|
- LICENSE
|
30
21
|
- README.markdown
|
31
|
-
files:
|
22
|
+
files:
|
32
23
|
- lib/rack_after_reply/adapter/base.rb
|
33
24
|
- lib/rack_after_reply/adapter/mongrel.rb
|
34
25
|
- lib/rack_after_reply/adapter/passenger.rb
|
@@ -44,39 +35,30 @@ files:
|
|
44
35
|
- README.markdown
|
45
36
|
- Rakefile
|
46
37
|
- CHANGELOG
|
47
|
-
has_rdoc: true
|
48
38
|
homepage: http://github.com/oggy/rack_after_reply
|
49
39
|
licenses: []
|
50
|
-
|
51
40
|
post_install_message:
|
52
|
-
rdoc_options:
|
41
|
+
rdoc_options:
|
53
42
|
- --charset=UTF-8
|
54
|
-
require_paths:
|
43
|
+
require_paths:
|
55
44
|
- lib
|
56
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
45
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
57
46
|
none: false
|
58
|
-
requirements:
|
59
|
-
- -
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
|
62
|
-
|
63
|
-
version: "0"
|
64
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - ! '>='
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '0'
|
51
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
52
|
none: false
|
66
|
-
requirements:
|
67
|
-
- -
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
segments:
|
70
|
-
- 1
|
71
|
-
- 3
|
72
|
-
- 6
|
53
|
+
requirements:
|
54
|
+
- - ! '>='
|
55
|
+
- !ruby/object:Gem::Version
|
73
56
|
version: 1.3.6
|
74
57
|
requirements: []
|
75
|
-
|
76
58
|
rubyforge_project:
|
77
|
-
rubygems_version: 1.
|
59
|
+
rubygems_version: 1.8.10
|
78
60
|
signing_key:
|
79
61
|
specification_version: 3
|
80
62
|
summary: Rack hook which fires after the socket to the client is closed.
|
81
63
|
test_files: []
|
82
|
-
|
64
|
+
has_rdoc:
|