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 +15 -5
- data/lib/net_http_timeout_errors.rb +2 -1
- data/lib/net_http_timeout_errors/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,17 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
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:
|
7
|
-
|
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
|
|
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.
|
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:
|
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
|
-
-
|
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.
|
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.
|