protocol-http2 0.7.1 → 0.7.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0bc103676e91753b4b44acb12c5eefdbb953ce40eababe8cd4a21ace86933b41
4
- data.tar.gz: f2ced13b3ea70afd4db4727a1def5329b519cbd2a3c1e0f499a17cac90df37ae
3
+ metadata.gz: d6122b81524b5ecd390cf46cb06d3dbbc8299651e3b83170477b0bfd710352cf
4
+ data.tar.gz: 73756e9adea21ed0bddd7d3c8b49032e8e0c0014d3905c093663c9d2b2474601
5
5
  SHA512:
6
- metadata.gz: d4669297dbc62043223d50bc8ac67a9a04b1c6bb945ea23eece1ee9eff6b415b1ab91d77e1d6430e8547bb080ba2eef33515a670775db567c63a0b3b61369989
7
- data.tar.gz: 8302a54d91bf4930d271a858f09afa93566e9eaba16edc28053a24c37bad6629d759c8140f20239dddcda04228e5c996feb3a623c9fa5478c4a05c90183c017a
6
+ metadata.gz: c12e3e9a9ef1d1461a3c08d6cb1c52c9f38551e7f37da0ef6c70d998c808a6b6bd48138a4509e108279255d5218c6eb72c6524b9e5b48066d9431a6190468a77
7
+ data.tar.gz: 9f909f2f0b3fbb3914f22b9c01d8ede5a78bb5734be429d152b0b28574447e5886240170126b83c47426f38f14eea5ffb8c4839e51bb1a553bdf0dcd088bd1b8
@@ -86,9 +86,6 @@ module Protocol
86
86
  attr :code
87
87
  end
88
88
 
89
- class HeaderError < ProtocolError
90
- end
91
-
92
89
  class StreamError < ProtocolError
93
90
  end
94
91
 
@@ -98,6 +95,12 @@ module Protocol
98
95
  end
99
96
  end
100
97
 
98
+ class HeaderError < StreamClosed
99
+ def initialize(message)
100
+ super(message)
101
+ end
102
+ end
103
+
101
104
  class GoawayError < ProtocolError
102
105
  end
103
106
 
@@ -20,6 +20,6 @@
20
20
 
21
21
  module Protocol
22
22
  module HTTP2
23
- VERSION = "0.7.1"
23
+ VERSION = "0.7.2"
24
24
  end
25
25
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: protocol-http2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams