protocol-http 0.4.1 → 0.5.0
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.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/Gemfile +5 -0
- data/lib/protocol/http/accept_encoding.rb +65 -0
- data/lib/protocol/http/body/buffered.rb +97 -0
- data/lib/protocol/http/body/deflate.rb +113 -0
- data/lib/protocol/http/body/file.rb +98 -0
- data/lib/protocol/http/body/inflate.rb +59 -0
- data/lib/protocol/http/body/readable.rb +92 -0
- data/lib/protocol/http/body/reader.rb +83 -0
- data/lib/protocol/http/body/rewindable.rb +60 -0
- data/lib/protocol/http/body/stream.rb +143 -0
- data/lib/protocol/http/body/streamable.rb +83 -0
- data/lib/protocol/http/body/wrapper.rb +65 -0
- data/lib/protocol/http/content_encoding.rb +76 -0
- data/lib/protocol/http/methods.rb +15 -1
- data/lib/protocol/http/middleware.rb +62 -0
- data/lib/protocol/http/middleware/builder.rb +61 -0
- data/lib/protocol/http/request.rb +77 -0
- data/lib/protocol/http/response.rb +99 -0
- data/lib/protocol/http/version.rb +1 -1
- metadata +19 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: protocol-http
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-05-
|
11
|
+
date: 2019-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: covered
|
@@ -81,10 +81,26 @@ files:
|
|
81
81
|
- README.md
|
82
82
|
- Rakefile
|
83
83
|
- lib/protocol/http.rb
|
84
|
+
- lib/protocol/http/accept_encoding.rb
|
85
|
+
- lib/protocol/http/body/buffered.rb
|
86
|
+
- lib/protocol/http/body/deflate.rb
|
87
|
+
- lib/protocol/http/body/file.rb
|
88
|
+
- lib/protocol/http/body/inflate.rb
|
89
|
+
- lib/protocol/http/body/readable.rb
|
90
|
+
- lib/protocol/http/body/reader.rb
|
91
|
+
- lib/protocol/http/body/rewindable.rb
|
92
|
+
- lib/protocol/http/body/stream.rb
|
93
|
+
- lib/protocol/http/body/streamable.rb
|
94
|
+
- lib/protocol/http/body/wrapper.rb
|
95
|
+
- lib/protocol/http/content_encoding.rb
|
84
96
|
- lib/protocol/http/error.rb
|
85
97
|
- lib/protocol/http/headers.rb
|
86
98
|
- lib/protocol/http/methods.rb
|
99
|
+
- lib/protocol/http/middleware.rb
|
100
|
+
- lib/protocol/http/middleware/builder.rb
|
87
101
|
- lib/protocol/http/reference.rb
|
102
|
+
- lib/protocol/http/request.rb
|
103
|
+
- lib/protocol/http/response.rb
|
88
104
|
- lib/protocol/http/url.rb
|
89
105
|
- lib/protocol/http/version.rb
|
90
106
|
- protocol-http.gemspec
|
@@ -107,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
107
123
|
- !ruby/object:Gem::Version
|
108
124
|
version: '0'
|
109
125
|
requirements: []
|
110
|
-
rubygems_version: 3.0.
|
126
|
+
rubygems_version: 3.0.2
|
111
127
|
signing_key:
|
112
128
|
specification_version: 4
|
113
129
|
summary: Provides abstractions to handle HTTP protocols.
|