net_http_timeout_errors 0.3.0 → 0.3.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 CHANGED
@@ -1,7 +1,17 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 5755898c0f5ad7fb82be287d9e3202331b8430ed
4
- data.tar.gz: d58cc469f759877c254382581518cb324850daf5
2
+ !binary "U0hBMjU2":
3
+ metadata.gz: !binary |-
4
+ MDZhOGY2OGFkOWNmZmFmMjMxMDBiMmE5ZjZiM2QxNTgxMDM5MGFkNTc4NDAz
5
+ ZjAwMjM0NDQxOTk2ZDEwNzY0Ng==
6
+ data.tar.gz: !binary |-
7
+ YzQxMWY0YTk3YWNmNWY2MzJiMDBlZGZjNDZkZjBkOTM3MjdmOWY0NzExYTli
8
+ YmQwYzhiOGFhZWNjNWY4ZGU2YQ==
5
9
  SHA512:
6
- metadata.gz: d82c57df1be1a590911fe855e96325c5de492c8c5fcdcae9ddd7c2cfd09aab7c06f4cafdc61b25b151870a4c0e2683d87a5b8eb2d9f78ab2897e62be60e780ae
7
- data.tar.gz: 820f4d894fb13e542a10850bc91eeee3cb79771fd5c4cce88aece31d490c885ddd8a7bafabb6861d74bf84f040d27020441248d301750dcf61f9f1184eed11bb
10
+ metadata.gz: !binary |-
11
+ ZjkyNTg2MzEyYmZjMmEwMTJhZmRiNDBmNjUyYWZkNDQ5MWYyNjI0MzBjYmVi
12
+ NGE0MGQ3MTI5MDJkZTQwYzVkMzJmNzZiZWFiOWVkYjA1MTFkMjhiNzg3MTRk
13
+ YTQzMjQ0NTU0ZWRjN2U1ODZkZTYyNzhkN2VmYzY3M2U3MjZlZGU=
14
+ data.tar.gz: !binary |-
15
+ MWE5ODE5YTFhYTMyMTE2MGVlOWQyZDRkMzY3M2Q0NmU5YmQ1YmQ1OTBhY2Nh
16
+ NDZkZWM5YWNmYjZlYWZkODI3MmUzMmI0Y2FjNmE4Njk0NTMxM2RhMmMwZmU3
17
+ MjNhYTgyYmU5OTBlODY0ZGViYWVlNDBlMzhiNzdiYjJlZjk1ZjU=
@@ -22,9 +22,10 @@ class NetHttpTimeoutErrors
22
22
  Errno::ETIMEDOUT,
23
23
  Net::HTTPBadResponse,
24
24
  Net::HTTPHeaderSyntaxError,
25
+ Net::HTTPGatewayTimeOut,
25
26
  Net::ProtocolError,
26
27
  SocketError,
27
- Timeout::Error,
28
+ Timeout::Error, # Also covers subclasses like Net::OpenTimeout.
28
29
  ]
29
30
  end
30
31
 
@@ -1,3 +1,3 @@
1
1
  class NetHttpTimeoutErrors
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: net_http_timeout_errors
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henrik Nyh
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-22 00:00:00.000000000 Z
11
+ date: 2018-06-08 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email:
@@ -17,7 +17,7 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
- - ".gitignore"
20
+ - .gitignore
21
21
  - Gemfile
22
22
  - README.md
23
23
  - Rakefile
@@ -34,17 +34,17 @@ require_paths:
34
34
  - lib
35
35
  required_ruby_version: !ruby/object:Gem::Requirement
36
36
  requirements:
37
- - - ">="
37
+ - - ! '>='
38
38
  - !ruby/object:Gem::Version
39
39
  version: '0'
40
40
  required_rubygems_version: !ruby/object:Gem::Requirement
41
41
  requirements:
42
- - - ">="
42
+ - - ! '>='
43
43
  - !ruby/object:Gem::Version
44
44
  version: '0'
45
45
  requirements: []
46
46
  rubyforge_project:
47
- rubygems_version: 2.2.2
47
+ rubygems_version: 2.7.4
48
48
  signing_key:
49
49
  specification_version: 4
50
50
  summary: Provides a list of Net::HTTP timeout errors.