http-protocol 0.17.0 → 0.17.1
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/.travis.yml +0 -1
- data/http-protocol.gemspec +7 -5
- data/lib/http/protocol/http1/connection.rb +3 -0
- data/lib/http/protocol/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cfdf29afc2452b12eb6f78fd401494546eda43595416c56f09a9c1e670314fff
|
4
|
+
data.tar.gz: 1b76287626d2d10d6380754eae9b96a64ca94363fd71de979c7792ec7ecfeb77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f7ac907b461a2a1d399214d22fec8dc08fbc65eb90101a1bf3ecb2cdc066d2a28947948870ae56a82a754ec38f9bc59f5e43dd9dc41b60061d0899bdaa1bda0
|
7
|
+
data.tar.gz: d71e0b1f7277cfb3ada49e4feba62abc6572d20acd4c078593aa130485cc34e278012e0e3518b6fd3d3e10e6cb207db710ee0db1eb9c8daf92d58c879293a363
|
data/.travis.yml
CHANGED
data/http-protocol.gemspec
CHANGED
@@ -6,18 +6,20 @@ Gem::Specification.new do |spec|
|
|
6
6
|
spec.version = HTTP::Protocol::VERSION
|
7
7
|
spec.authors = ["Samuel Williams"]
|
8
8
|
spec.email = ["samuel.williams@oriontransfer.co.nz"]
|
9
|
-
|
9
|
+
|
10
10
|
spec.summary = "Provides abstractions to handle HTTP1 and HTTP2 protocols."
|
11
11
|
spec.homepage = "https://github.com/socketry/http-protocol"
|
12
|
-
|
12
|
+
|
13
13
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
14
14
|
f.match(%r{^(test|spec|features)/})
|
15
15
|
end
|
16
|
-
|
16
|
+
|
17
|
+
spec.required_ruby_version = '>= 2.4.0'
|
18
|
+
|
17
19
|
spec.require_paths = ["lib"]
|
18
|
-
|
20
|
+
|
19
21
|
spec.add_dependency "http-hpack", "~> 0.1.0"
|
20
|
-
|
22
|
+
|
21
23
|
spec.add_development_dependency "covered"
|
22
24
|
spec.add_development_dependency "bundler", ">= 1.16"
|
23
25
|
spec.add_development_dependency "rake", "~> 10.0"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: http-protocol
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.17.
|
4
|
+
version: 0.17.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
@@ -136,14 +136,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
136
136
|
requirements:
|
137
137
|
- - ">="
|
138
138
|
- !ruby/object:Gem::Version
|
139
|
-
version:
|
139
|
+
version: 2.4.0
|
140
140
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
141
141
|
requirements:
|
142
142
|
- - ">="
|
143
143
|
- !ruby/object:Gem::Version
|
144
144
|
version: '0'
|
145
145
|
requirements: []
|
146
|
-
rubygems_version: 3.0.
|
146
|
+
rubygems_version: 3.0.3
|
147
147
|
signing_key:
|
148
148
|
specification_version: 4
|
149
149
|
summary: Provides abstractions to handle HTTP1 and HTTP2 protocols.
|