nethttputils 0.4.1.2 → 0.4.1.3
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 +4 -4
- data/lib/nethttputils.rb +1 -1
- data/nethttputils.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aa8c5d5ae78a7dbad64fe4d0e624666cfcbe1642
|
|
4
|
+
data.tar.gz: 8d09dcf215b50515dc6033f5ef6b6760f14c844c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c315180c06335286428ffb1aff4c41ba6b1648644dc2c41b3f199c8fe2102238e0323359590bb74db31b487e4499b27c5d9823c0a300bae1eafe9f114a62cc59
|
|
7
|
+
data.tar.gz: 07b47969d1d87ffd4bdd409b038aef316b770f5d3b4d00d7ad0faa419ac559dfa362548c5f942df3300629a6ba9f5ef630370412e73a80afaef785dfde938bb3
|
data/lib/nethttputils.rb
CHANGED
|
@@ -305,7 +305,7 @@ module NetHTTPUtils
|
|
|
305
305
|
require "set"
|
|
306
306
|
@@_405 ||= Set.new
|
|
307
307
|
def request_data http, mtd = :GET, type = :form, form: {}, header: {}, auth: nil, proxy: nil,
|
|
308
|
-
timeout: nil, no_redirect:
|
|
308
|
+
timeout: nil, no_redirect: false,
|
|
309
309
|
max_start_http_retry_delay: 3600,
|
|
310
310
|
max_read_retry_delay: 3600,
|
|
311
311
|
patch_request: nil, &block
|
data/nethttputils.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = "nethttputils"
|
|
3
|
-
spec.version = "0.4.1.
|
|
3
|
+
spec.version = "0.4.1.3"
|
|
4
4
|
spec.summary = "this tool is like a pet that I adopted young and now I depend on, sorry"
|
|
5
5
|
spec.description = <<-EOF
|
|
6
6
|
Back in 2015 I was a guy automating things at my job and two scripts had a common need --
|