protocol-http 0.4.1 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -20,6 +20,6 @@
20
20
 
21
21
  module Protocol
22
22
  module HTTP
23
- VERSION = "0.4.1"
23
+ VERSION = "0.5.0"
24
24
  end
25
25
  end
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.1
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-22 00:00:00.000000000 Z
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.3
126
+ rubygems_version: 3.0.2
111
127
  signing_key:
112
128
  specification_version: 4
113
129
  summary: Provides abstractions to handle HTTP protocols.