http-2-next 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 57b5112f768b60bc8cba8e6f82925eafc0de71a947fc5282bcc0f4b10dd42b49
4
- data.tar.gz: 9e8470275022f7d9742232cb1cc2ffab1644a77268a21a656a702db219a3fb93
3
+ metadata.gz: '0951e3da74f70138e1ce72ce1669f372a265c83e57367b97919a1f8dd1a4788f'
4
+ data.tar.gz: afd99005840bc669dcc4d3ff7e8dec2779d9feff4bcf50865364119b1a492646
5
5
  SHA512:
6
- metadata.gz: a466e82b5a77065453b531602daf30fc5c44bb4918e46f3bc0b48e80268b5496ae23b2bc3ee6f40c8fcf6920dc5ea1a0490c861ace6776f2f522aba090c0309f
7
- data.tar.gz: b469ea645f4a74fbf5e045a6205ecccf3104d93f190c93cdcfc2faf1f0046623596af728278d3839cddcba235fb1382a830899b5d1f0d7f1ba89734e1cdafc29
6
+ metadata.gz: 97af505781e2963e4b5717ec5f2ddc334bcbef5a7ee0e4f7433c171ac917096a1694c0c51aaf2a888e50da406e0692f4f57a52be27f625533513fcf777937b3d
7
+ data.tar.gz: '08d581534ac39f3b18a268f2f727602635bb376bb2335ba997159658880c3f3c00b87ad2767b928d1468d3bc44d7bee49c24583d97662e5b5761b94a42d9bdd8'
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # HTTP-2-Next
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/http-2.svg)](http://rubygems.org/gems/http-2)
3
+ [![Gem Version](https://badge.fury.io/rb/http-2-next.svg)](http://rubygems.org/gems/http-2-next)
4
4
  [![Build status](https://gitlab.com/honeyryderchuck/http-2-next/badges/master/pipeline.svg)](https://gitlab.com/honeyryderchuck/http-2-next/commits/master)
5
- [![coverage report](https://gitlab.com/honeyryderchuck/httpx/badges/master/coverage.svg)](https://honeyryderchuck.gitlab.io/http-2-next/coverage/#_AllFiles)
5
+ [![coverage report](https://gitlab.com/honeyryderchuck/http-2-next/badges/master/coverage.svg)](https://honeyryderchuck.gitlab.io/http-2-next/coverage/#_AllFiles)
6
6
 
7
7
  **Attention!** This is a fork of the [http-2](https://github.com/igrigorik/http-2) gem.
8
8
 
@@ -127,7 +127,7 @@ module HTTP2Next
127
127
  # Frames with zero length with the END_STREAM flag set (that
128
128
  # is, an empty DATA frame) MAY be sent if there is no available space
129
129
  # in either flow control window.
130
- return if window_size == 0 && !(frame_size == 0 && end_stream)
130
+ return if window_size <= 0 && !(frame_size == 0 && end_stream)
131
131
 
132
132
  @buffer.shift
133
133
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HTTP2Next
4
- VERSION = "0.2.3"
4
+ VERSION = "0.2.4"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: http-2-next
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tiago Cardoso
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-02-29 00:00:00.000000000 Z
13
+ date: 2020-03-06 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description: Pure-ruby HTTP 2.0 protocol implementation
16
16
  email: