files.com 1.1.19 → 1.1.20

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: ffe913947c325f060f985efded7cd3a34e23bcf32587c8ce47bea195d85cbb45
4
- data.tar.gz: 3fb29e6a788ded0069331a35b42b168d6a8958ce85c85ffd38a5ea2ec7a99577
3
+ metadata.gz: 79f5c31b820c33992b6d9871ba1010c62e05b8f3e2f98308e570919cefbcada7
4
+ data.tar.gz: 798a04067fe40ddaf0d8d245dddbaf53a307425656692a74c297f325ae658fec
5
5
  SHA512:
6
- metadata.gz: 922182716e85371f04a925e7debb6565331e5837401324a33dd5890f25a238c5722a2f8361b77d9f0c3ff8418bfa7fb15d73dd0c260da632f1283ea426e3c900
7
- data.tar.gz: fec5ed8c27bc6f5589c5a5325d876bb2b4ec635536c8fa72afbec5812d0f468b060c28930ba7afedcf66b95bfa143022613aa545fc9ca05da35aab0a419fe8e0
6
+ metadata.gz: 450cfcda03afee70ae87ccc9007c3d5bc0dca59ef55b83a0f71d7cc5355f5c699e0e2b3e76907bfc8e56b547616a61f0fc5de0ee297514c71cf340e04fbd3546
7
+ data.tar.gz: bc77ec8901d4e910abf8cbfe3cc26089a2cfbc547e2e924e10420b5964cd083dd5da66075a68bdbba554d8c3d87480205e9676df816c08194498fe661a76f16a
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.19
1
+ 1.1.20
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.19"
4
+ VERSION = "1.1.20"
5
5
  end
@@ -0,0 +1,36 @@
1
+ [
2
+ {
3
+ "headers": {},
4
+ "result": null
5
+ },
6
+ {
7
+ "headers": {
8
+ "Retry-After": ["aaaaaa"]
9
+ },
10
+ "result": null
11
+ },
12
+ {
13
+ "headers": {
14
+ "Retry-After": ["120"]
15
+ },
16
+ "result": 120
17
+ },
18
+ {
19
+ "headers": {
20
+ "Retry-After": ["120", "60"]
21
+ },
22
+ "result": 120
23
+ },
24
+ {
25
+ "headers": {
26
+ "Retry-After": ["120", "aaaaaa"]
27
+ },
28
+ "result": 120
29
+ },
30
+ {
31
+ "headers": {
32
+ "Retry-After": ["%s"]
33
+ },
34
+ "result": 60
35
+ }
36
+ ]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.19
4
+ version: 1.1.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-01 00:00:00.000000000 Z
11
+ date: 2024-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -295,6 +295,7 @@ files:
295
295
  - lib/files.com/util.rb
296
296
  - lib/files.com/version.rb
297
297
  - setup.sh
298
+ - shared/header_test_data.json
298
299
  - shared/normalization_for_comparison_test_data.json
299
300
  - shared/url_test_data.json
300
301
  - spec/lib/api_client_spec.rb