files.com 1.1.19 → 1.1.21

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: ddc478957e0ba87eea9d88b563c645dae90352e5fddc59d581217b0618a0aa9e
4
+ data.tar.gz: d74a119c5a72f8c20f6bb18ac1d9d9195e49a6657cec09ea908b092a9c33677f
5
5
  SHA512:
6
- metadata.gz: 922182716e85371f04a925e7debb6565331e5837401324a33dd5890f25a238c5722a2f8361b77d9f0c3ff8418bfa7fb15d73dd0c260da632f1283ea426e3c900
7
- data.tar.gz: fec5ed8c27bc6f5589c5a5325d876bb2b4ec635536c8fa72afbec5812d0f468b060c28930ba7afedcf66b95bfa143022613aa545fc9ca05da35aab0a419fe8e0
6
+ metadata.gz: 27943f61c853d0b5219a1496fb0b4a8b4afe4e1b12f8df9e34452f639c33bbca51ce0463bc0bfe491a7cbed3de5401177df1764d4b77c418111afd0212414d2f
7
+ data.tar.gz: e9a92622d14841006b6f566cb5c141ca0a4c6901746a69664e4edb4b15b69b5f961f0814cc18a3f433ef8f7bc8f106c2fc7804f94aa18884572750a61f9eff63
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.19
1
+ 1.1.21
@@ -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.21"
5
5
  end
@@ -0,0 +1,42 @@
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": ["5"]
15
+ },
16
+ "result": 5
17
+ },
18
+ {
19
+ "headers": {
20
+ "Retry-After": ["60"]
21
+ },
22
+ "result": null
23
+ },
24
+ {
25
+ "headers": {
26
+ "Retry-After": ["5", "10"]
27
+ },
28
+ "result": 5
29
+ },
30
+ {
31
+ "headers": {
32
+ "Retry-After": ["5", "aaaaaa"]
33
+ },
34
+ "result": 5
35
+ },
36
+ {
37
+ "headers": {
38
+ "Retry-After": ["%s"]
39
+ },
40
+ "result": 8
41
+ }
42
+ ]
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.21
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-08 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