http-protocol 0.2.1 → 0.2.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: 6a0181ccc138681d1fa437bf49e9760a45d841245baffd0da21e604a8eaab309
4
- data.tar.gz: 64cd9dfba7a97c8b0f22a6e5492a4757d331349bc26fc53f5590442ed393576e
3
+ metadata.gz: 10dcc79fdeb0dbfb03f4d9d8b74849fdb30e10c11265da0bde58a1f2a980d3c0
4
+ data.tar.gz: 4dd9de8909a1d3bee401e71ebe7e95579ef43a6369e7789227f1ae366c04136a
5
5
  SHA512:
6
- metadata.gz: '02369ca5d469cbc24140bafbd5c1bbd6a0949364139c9c78794ee8e7aa36c55d36937c4f7ea5d60978eb31d9fb539c13f2121ea82aa1bdb45a377e80f73f5254'
7
- data.tar.gz: 4d3f147a6491b19f5bdc667bf3f5508836c23e1494091775dd550696df2137272cb829cf1a727e28d16a66c942d7dfa76c704a1531f36f2affec0b038b7d56ae
6
+ metadata.gz: 611c29c926808ac7ac6c021edaddbaec5bad026d2418da6fabb560028c1946cc5ea586a639ad6c717134baad141a744107b9b57bc62e7c1b5a1a0d73dccd2a7a
7
+ data.tar.gz: 57f81e1b9d8f3bcdfcc6aef169612c7d280a93d9a243960a5ea15710298e679c9b443783cb5ea8b0722a4a4fbab5e3a1b462a89b53f3327428098789ee9ea37b
@@ -59,7 +59,7 @@ module HTTP
59
59
  attr :initial_window_size
60
60
 
61
61
  def initial_window_size= value
62
- if value < MAXIMUM_ALLOWED_WINDOW_SIZE
62
+ if value <= MAXIMUM_ALLOWED_WINDOW_SIZE
63
63
  @initial_window_size = value
64
64
  else
65
65
  raise FlowControlError, "Invalid value for initial_window_size: #{value} > #{MAXIMUM_ALLOWED_WINDOW_SIZE}"
@@ -20,6 +20,6 @@
20
20
 
21
21
  module HTTP
22
22
  module Protocol
23
- VERSION = "0.2.1"
23
+ VERSION = "0.2.2"
24
24
  end
25
25
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: http-protocol
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-08-06 00:00:00.000000000 Z
11
+ date: 2018-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http-hpack