globus_client 0.10.0 → 0.10.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop/custom.yml +36 -6
- data/.rubocop.yml +5 -2
- data/Gemfile.lock +11 -10
- data/lib/globus_client/endpoint.rb +1 -1
- data/lib/globus_client/version.rb +1 -1
- metadata +2 -3
- data/.rubocop_todo.yml +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87ecd66b77eb1e4806ab42b2d7f8731ae3500127c143363da97df8ed514cc809
|
4
|
+
data.tar.gz: 2023133582b10a3796ffae425954c8f5ca7d53583ab5246bce82a67bd5e8c22d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c1c4b4741b1080b01ad8067fbad40f4443ffbc6e0431446bc13278df91e4e027b7d7308ddf1297267bf4ad358979c991a67c9abaa7a216276553cd7c8a9f2fb
|
7
|
+
data.tar.gz: b2cd05d79e4186849e4bab41bf92bc921031dd10d315ffe3ce81d638b38d6a263f9727fff99abdaf513b30e8b87c7e726b6fe3f2f1587d118b60b38ae8bb35bb
|
data/.rubocop/custom.yml
CHANGED
@@ -30,17 +30,17 @@ RSpec/SubjectDeclaration: # new in 2.5
|
|
30
30
|
Enabled: true
|
31
31
|
RSpec/VerifiedDoubleReference: # new in 2.10.0
|
32
32
|
Enabled: true
|
33
|
-
|
33
|
+
Capybara/NegationMatcher: # new in 2.14
|
34
34
|
Enabled: true
|
35
|
-
|
35
|
+
Capybara/SpecificActions: # new in 2.14
|
36
36
|
Enabled: true
|
37
|
-
|
37
|
+
Capybara/SpecificFinders: # new in 2.13
|
38
38
|
Enabled: true
|
39
|
-
|
39
|
+
Capybara/SpecificMatcher: # new in 2.12
|
40
40
|
Enabled: true
|
41
|
-
|
41
|
+
FactoryBot/ConsistentParenthesesStyle: # new in 2.14
|
42
42
|
Enabled: true
|
43
|
-
|
43
|
+
FactoryBot/SyntaxMethods: # new in 2.7
|
44
44
|
Enabled: true
|
45
45
|
RSpec/Rails/AvoidSetupHook: # new in 2.4
|
46
46
|
Enabled: true
|
@@ -48,3 +48,33 @@ RSpec/Rails/HaveHttpStatus: # new in 2.12
|
|
48
48
|
Enabled: true
|
49
49
|
RSpec/Rails/InferredSpecType: # new in 2.14
|
50
50
|
Enabled: true
|
51
|
+
Capybara/MatchStyle: # new in 2.17
|
52
|
+
Enabled: true
|
53
|
+
FactoryBot/AssociationStyle: # new in 2.23
|
54
|
+
Enabled: true
|
55
|
+
FactoryBot/FactoryAssociationWithStrategy: # new in 2.23
|
56
|
+
Enabled: true
|
57
|
+
FactoryBot/FactoryNameStyle: # new in 2.16
|
58
|
+
Enabled: true
|
59
|
+
FactoryBot/RedundantFactoryOption: # new in 2.23
|
60
|
+
Enabled: true
|
61
|
+
RSpec/BeEmpty: # new in 2.20
|
62
|
+
Enabled: true
|
63
|
+
RSpec/ContainExactly: # new in 2.19
|
64
|
+
Enabled: true
|
65
|
+
RSpec/DuplicatedMetadata: # new in 2.16
|
66
|
+
Enabled: true
|
67
|
+
RSpec/IndexedLet: # new in 2.20
|
68
|
+
Enabled: false # Sometimes indices *are* meaningful
|
69
|
+
RSpec/MatchArray: # new in 2.19
|
70
|
+
Enabled: true
|
71
|
+
RSpec/PendingWithoutReason: # new in 2.16
|
72
|
+
Enabled: true
|
73
|
+
RSpec/RedundantAround: # new in 2.19
|
74
|
+
Enabled: true
|
75
|
+
RSpec/SkipBlockInsideExample: # new in 2.19
|
76
|
+
Enabled: true
|
77
|
+
RSpec/Rails/MinitestAssertions: # new in 2.17
|
78
|
+
Enabled: true
|
79
|
+
RSpec/Rails/TravelAround: # new in 2.19
|
80
|
+
Enabled: true
|
data/.rubocop.yml
CHANGED
@@ -3,13 +3,16 @@ inherit_mode:
|
|
3
3
|
- Exclude
|
4
4
|
|
5
5
|
require:
|
6
|
+
- standard
|
7
|
+
- standard-custom
|
8
|
+
- standard-performance
|
6
9
|
- rubocop-performance
|
7
10
|
- rubocop-rspec
|
8
|
-
- standard
|
9
11
|
|
10
12
|
inherit_gem:
|
11
13
|
standard: config/base.yml
|
14
|
+
standard-performance: config/base.yml
|
15
|
+
standard-custom: config/base.yml
|
12
16
|
|
13
17
|
inherit_from:
|
14
18
|
- .rubocop/custom.yml
|
15
|
-
- .rubocop_todo.yml
|
data/Gemfile.lock
CHANGED
@@ -10,7 +10,7 @@ PATH
|
|
10
10
|
GEM
|
11
11
|
remote: https://rubygems.org/
|
12
12
|
specs:
|
13
|
-
activesupport (7.0.
|
13
|
+
activesupport (7.0.6)
|
14
14
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
15
15
|
i18n (>= 1.6, < 2)
|
16
16
|
minitest (>= 5.1)
|
@@ -24,7 +24,7 @@ GEM
|
|
24
24
|
rexml
|
25
25
|
diff-lcs (1.5.0)
|
26
26
|
docile (1.4.0)
|
27
|
-
faraday (2.7.
|
27
|
+
faraday (2.7.10)
|
28
28
|
faraday-net_http (>= 2.0, < 3.1)
|
29
29
|
ruby2_keywords (>= 0.0.4)
|
30
30
|
faraday-net_http (3.0.2)
|
@@ -35,13 +35,13 @@ GEM
|
|
35
35
|
concurrent-ruby (~> 1.0)
|
36
36
|
json (2.6.3)
|
37
37
|
language_server-protocol (3.17.0.3)
|
38
|
-
lint_roller (1.
|
38
|
+
lint_roller (1.1.0)
|
39
39
|
minitest (5.18.1)
|
40
40
|
parallel (1.23.0)
|
41
41
|
parser (3.2.2.3)
|
42
42
|
ast (~> 2.4.1)
|
43
43
|
racc
|
44
|
-
public_suffix (5.0.
|
44
|
+
public_suffix (5.0.3)
|
45
45
|
racc (1.7.1)
|
46
46
|
rainbow (3.1.1)
|
47
47
|
rake (13.0.6)
|
@@ -56,10 +56,10 @@ GEM
|
|
56
56
|
rspec-expectations (3.12.3)
|
57
57
|
diff-lcs (>= 1.2.0, < 2.0)
|
58
58
|
rspec-support (~> 3.12.0)
|
59
|
-
rspec-mocks (3.12.
|
59
|
+
rspec-mocks (3.12.6)
|
60
60
|
diff-lcs (>= 1.2.0, < 2.0)
|
61
61
|
rspec-support (~> 3.12.0)
|
62
|
-
rspec-support (3.12.
|
62
|
+
rspec-support (3.12.1)
|
63
63
|
rubocop (1.52.1)
|
64
64
|
json (~> 2.3)
|
65
65
|
parallel (~> 1.10)
|
@@ -91,16 +91,17 @@ GEM
|
|
91
91
|
simplecov_json_formatter (~> 0.1)
|
92
92
|
simplecov-html (0.12.3)
|
93
93
|
simplecov_json_formatter (0.1.4)
|
94
|
-
standard (1.
|
94
|
+
standard (1.30.1)
|
95
95
|
language_server-protocol (~> 3.17.0.2)
|
96
96
|
lint_roller (~> 1.0)
|
97
97
|
rubocop (~> 1.52.0)
|
98
98
|
standard-custom (~> 1.0.0)
|
99
99
|
standard-performance (~> 1.1.0)
|
100
|
-
standard-custom (1.0.
|
101
|
-
lint_roller (~> 1.0)
|
102
|
-
standard-performance (1.1.0)
|
100
|
+
standard-custom (1.0.2)
|
103
101
|
lint_roller (~> 1.0)
|
102
|
+
rubocop (~> 1.50)
|
103
|
+
standard-performance (1.1.2)
|
104
|
+
lint_roller (~> 1.1)
|
104
105
|
rubocop-performance (~> 1.18.0)
|
105
106
|
tzinfo (2.0.6)
|
106
107
|
concurrent-ruby (~> 1.0)
|
@@ -113,7 +113,7 @@ class GlobusClient
|
|
113
113
|
# @param files [Array<FileInfo>] an array of FileInfo structs, each of which has a name and a size
|
114
114
|
# @param return_presence [Boolean] if true, return a boolean to indicate if any files at all are present, short-circuiting the recursive operation
|
115
115
|
def ls_path(filepath, files, return_presence: false)
|
116
|
-
response = connection.get("#{transfer_path}/ls?path=#{filepath}")
|
116
|
+
response = connection.get("#{transfer_path}/ls?path=#{CGI.escape(filepath)}")
|
117
117
|
return UnexpectedResponse.call(response) unless response.success?
|
118
118
|
|
119
119
|
data = JSON.parse(response.body)["DATA"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: globus_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aaron Collier
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date: 2023-
|
13
|
+
date: 2023-07-18 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activesupport
|
@@ -171,7 +171,6 @@ files:
|
|
171
171
|
- ".rspec"
|
172
172
|
- ".rubocop.yml"
|
173
173
|
- ".rubocop/custom.yml"
|
174
|
-
- ".rubocop_todo.yml"
|
175
174
|
- ".standard.yml"
|
176
175
|
- Gemfile
|
177
176
|
- Gemfile.lock
|
data/.rubocop_todo.yml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
# This configuration was generated by
|
2
|
-
# `rubocop --auto-gen-config`
|
3
|
-
# on 2022-10-27 22:53:23 UTC using RuboCop version 1.37.0.
|
4
|
-
# The point is for the user to remove these configuration records
|
5
|
-
# one by one as the offenses are removed from the code base.
|
6
|
-
# Note that changes in the inspected code, or installation of new
|
7
|
-
# versions of RuboCop, may require this file to be generated again.
|