pulp_gem_client 0.7.5 → 0.7.6
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/README.md +5 -4
- data/docs/ContentGemApi.md +8 -6
- data/docs/DistributionsGemApi.md +4 -4
- data/docs/GemGemDistribution.md +2 -0
- data/docs/GemGemDistributionResponse.md +4 -0
- data/docs/GemGemRemote.md +6 -6
- data/docs/GemGemRemoteResponse.md +8 -8
- data/docs/GemGemRepository.md +2 -0
- data/docs/GemGemRepositoryResponse.md +2 -0
- data/docs/PatchedgemGemDistribution.md +2 -0
- data/docs/PatchedgemGemRemote.md +6 -6
- data/docs/PatchedgemGemRepository.md +2 -0
- data/docs/PublicationsGemApi.md +2 -2
- data/docs/RepositoriesGemApi.md +20 -4
- data/docs/RepositoryAddRemoveContent.md +3 -1
- data/lib/pulp_gem_client/api/content_gem_api.rb +9 -6
- data/lib/pulp_gem_client/api/distributions_gem_api.rb +4 -4
- data/lib/pulp_gem_client/api/publications_gem_api.rb +2 -2
- data/lib/pulp_gem_client/api/repositories_gem_api.rb +29 -5
- data/lib/pulp_gem_client/models/gem_gem_distribution.rb +12 -1
- data/lib/pulp_gem_client/models/gem_gem_distribution_response.rb +22 -1
- data/lib/pulp_gem_client/models/gem_gem_remote.rb +48 -33
- data/lib/pulp_gem_client/models/gem_gem_remote_response.rb +60 -45
- data/lib/pulp_gem_client/models/gem_gem_repository.rb +42 -1
- data/lib/pulp_gem_client/models/gem_gem_repository_response.rb +42 -1
- data/lib/pulp_gem_client/models/patchedgem_gem_distribution.rb +12 -1
- data/lib/pulp_gem_client/models/patchedgem_gem_remote.rb +48 -33
- data/lib/pulp_gem_client/models/patchedgem_gem_repository.rb +42 -1
- data/lib/pulp_gem_client/models/repository_add_remove_content.rb +16 -4
- data/lib/pulp_gem_client/models/set_label.rb +0 -11
- data/lib/pulp_gem_client/models/set_label_response.rb +0 -21
- data/lib/pulp_gem_client/models/unset_label.rb +0 -11
- data/lib/pulp_gem_client/models/unset_label_response.rb +0 -21
- data/lib/pulp_gem_client/version.rb +1 -1
- data/spec/api/content_gem_api_spec.rb +4 -3
- data/spec/api/distributions_gem_api_spec.rb +2 -2
- data/spec/api/publications_gem_api_spec.rb +1 -1
- data/spec/api/repositories_gem_api_spec.rb +10 -2
- data/spec/models/gem_gem_distribution_response_spec.rb +12 -0
- data/spec/models/gem_gem_distribution_spec.rb +6 -0
- data/spec/models/gem_gem_remote_response_spec.rb +10 -10
- data/spec/models/gem_gem_remote_spec.rb +17 -17
- data/spec/models/gem_gem_repository_response_spec.rb +6 -0
- data/spec/models/gem_gem_repository_spec.rb +6 -0
- data/spec/models/patchedgem_gem_distribution_spec.rb +6 -0
- data/spec/models/patchedgem_gem_remote_spec.rb +17 -17
- data/spec/models/patchedgem_gem_repository_spec.rb +6 -0
- data/spec/models/repository_add_remove_content_spec.rb +6 -0
- metadata +32 -32
|
@@ -63,49 +63,49 @@ describe PulpGemClient::GemGemRemoteResponse do
|
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
-
describe 'test attribute "
|
|
66
|
+
describe 'test attribute "pulp_labels"' do
|
|
67
67
|
it 'should work' do
|
|
68
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
69
|
end
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
-
describe 'test attribute "
|
|
72
|
+
describe 'test attribute "policy"' do
|
|
73
73
|
it 'should work' do
|
|
74
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
75
75
|
end
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
-
describe 'test attribute "
|
|
78
|
+
describe 'test attribute "hidden_fields"' do
|
|
79
79
|
it 'should work' do
|
|
80
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
81
81
|
end
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
-
describe 'test attribute "
|
|
84
|
+
describe 'test attribute "ca_cert"' do
|
|
85
85
|
it 'should work' do
|
|
86
86
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
87
87
|
end
|
|
88
88
|
end
|
|
89
89
|
|
|
90
|
-
describe 'test attribute "
|
|
90
|
+
describe 'test attribute "client_cert"' do
|
|
91
91
|
it 'should work' do
|
|
92
92
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
93
93
|
end
|
|
94
94
|
end
|
|
95
95
|
|
|
96
|
-
describe 'test attribute "
|
|
96
|
+
describe 'test attribute "tls_validation"' do
|
|
97
97
|
it 'should work' do
|
|
98
98
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
99
99
|
end
|
|
100
100
|
end
|
|
101
101
|
|
|
102
|
-
describe 'test attribute "
|
|
102
|
+
describe 'test attribute "proxy_url"' do
|
|
103
103
|
it 'should work' do
|
|
104
104
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
105
105
|
end
|
|
106
106
|
end
|
|
107
107
|
|
|
108
|
-
describe 'test attribute "
|
|
108
|
+
describe 'test attribute "max_retries"' do
|
|
109
109
|
it 'should work' do
|
|
110
110
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
111
111
|
end
|
|
@@ -141,13 +141,13 @@ describe PulpGemClient::GemGemRemoteResponse do
|
|
|
141
141
|
end
|
|
142
142
|
end
|
|
143
143
|
|
|
144
|
-
describe 'test attribute "
|
|
144
|
+
describe 'test attribute "download_concurrency"' do
|
|
145
145
|
it 'should work' do
|
|
146
146
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
147
147
|
end
|
|
148
148
|
end
|
|
149
149
|
|
|
150
|
-
describe 'test attribute "
|
|
150
|
+
describe 'test attribute "rate_limit"' do
|
|
151
151
|
it 'should work' do
|
|
152
152
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
153
153
|
end
|
|
@@ -39,67 +39,67 @@ describe PulpGemClient::GemGemRemote do
|
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
describe 'test attribute "
|
|
42
|
+
describe 'test attribute "pulp_labels"' do
|
|
43
43
|
it 'should work' do
|
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
-
describe 'test attribute "
|
|
48
|
+
describe 'test attribute "policy"' do
|
|
49
49
|
it 'should work' do
|
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
describe 'test attribute "
|
|
54
|
+
describe 'test attribute "ca_cert"' do
|
|
55
55
|
it 'should work' do
|
|
56
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
57
|
end
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
-
describe 'test attribute "
|
|
60
|
+
describe 'test attribute "client_cert"' do
|
|
61
61
|
it 'should work' do
|
|
62
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
-
describe 'test attribute "
|
|
66
|
+
describe 'test attribute "client_key"' do
|
|
67
67
|
it 'should work' do
|
|
68
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
69
|
end
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
-
describe 'test attribute "
|
|
72
|
+
describe 'test attribute "tls_validation"' do
|
|
73
73
|
it 'should work' do
|
|
74
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
75
75
|
end
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
-
describe 'test attribute "
|
|
78
|
+
describe 'test attribute "proxy_url"' do
|
|
79
79
|
it 'should work' do
|
|
80
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
81
81
|
end
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
-
describe 'test attribute "
|
|
84
|
+
describe 'test attribute "proxy_username"' do
|
|
85
85
|
it 'should work' do
|
|
86
86
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
87
87
|
end
|
|
88
88
|
end
|
|
89
89
|
|
|
90
|
-
describe 'test attribute "
|
|
90
|
+
describe 'test attribute "proxy_password"' do
|
|
91
91
|
it 'should work' do
|
|
92
92
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
93
93
|
end
|
|
94
94
|
end
|
|
95
95
|
|
|
96
|
-
describe 'test attribute "
|
|
96
|
+
describe 'test attribute "username"' do
|
|
97
97
|
it 'should work' do
|
|
98
98
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
99
99
|
end
|
|
100
100
|
end
|
|
101
101
|
|
|
102
|
-
describe 'test attribute "
|
|
102
|
+
describe 'test attribute "password"' do
|
|
103
103
|
it 'should work' do
|
|
104
104
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
105
105
|
end
|
|
@@ -111,12 +111,6 @@ describe PulpGemClient::GemGemRemote do
|
|
|
111
111
|
end
|
|
112
112
|
end
|
|
113
113
|
|
|
114
|
-
describe 'test attribute "policy"' do
|
|
115
|
-
it 'should work' do
|
|
116
|
-
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
117
|
-
end
|
|
118
|
-
end
|
|
119
|
-
|
|
120
114
|
describe 'test attribute "total_timeout"' do
|
|
121
115
|
it 'should work' do
|
|
122
116
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -147,6 +141,12 @@ describe PulpGemClient::GemGemRemote do
|
|
|
147
141
|
end
|
|
148
142
|
end
|
|
149
143
|
|
|
144
|
+
describe 'test attribute "download_concurrency"' do
|
|
145
|
+
it 'should work' do
|
|
146
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
147
|
+
end
|
|
148
|
+
end
|
|
149
|
+
|
|
150
150
|
describe 'test attribute "rate_limit"' do
|
|
151
151
|
it 'should work' do
|
|
152
152
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -87,6 +87,12 @@ describe PulpGemClient::GemGemRepositoryResponse do
|
|
|
87
87
|
end
|
|
88
88
|
end
|
|
89
89
|
|
|
90
|
+
describe 'test attribute "retain_checkpoints"' do
|
|
91
|
+
it 'should work' do
|
|
92
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
93
|
+
end
|
|
94
|
+
end
|
|
95
|
+
|
|
90
96
|
describe 'test attribute "remote"' do
|
|
91
97
|
it 'should work' do
|
|
92
98
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -51,6 +51,12 @@ describe PulpGemClient::GemGemRepository do
|
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
+
describe 'test attribute "retain_checkpoints"' do
|
|
55
|
+
it 'should work' do
|
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
54
60
|
describe 'test attribute "remote"' do
|
|
55
61
|
it 'should work' do
|
|
56
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -63,6 +63,12 @@ describe PulpGemClient::PatchedgemGemDistribution do
|
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
+
describe 'test attribute "repository_version"' do
|
|
67
|
+
it 'should work' do
|
|
68
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
|
|
66
72
|
describe 'test attribute "publication"' do
|
|
67
73
|
it 'should work' do
|
|
68
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -39,67 +39,67 @@ describe PulpGemClient::PatchedgemGemRemote do
|
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
describe 'test attribute "
|
|
42
|
+
describe 'test attribute "pulp_labels"' do
|
|
43
43
|
it 'should work' do
|
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
-
describe 'test attribute "
|
|
48
|
+
describe 'test attribute "policy"' do
|
|
49
49
|
it 'should work' do
|
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
describe 'test attribute "
|
|
54
|
+
describe 'test attribute "ca_cert"' do
|
|
55
55
|
it 'should work' do
|
|
56
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
57
|
end
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
-
describe 'test attribute "
|
|
60
|
+
describe 'test attribute "client_cert"' do
|
|
61
61
|
it 'should work' do
|
|
62
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
-
describe 'test attribute "
|
|
66
|
+
describe 'test attribute "client_key"' do
|
|
67
67
|
it 'should work' do
|
|
68
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
69
|
end
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
-
describe 'test attribute "
|
|
72
|
+
describe 'test attribute "tls_validation"' do
|
|
73
73
|
it 'should work' do
|
|
74
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
75
75
|
end
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
-
describe 'test attribute "
|
|
78
|
+
describe 'test attribute "proxy_url"' do
|
|
79
79
|
it 'should work' do
|
|
80
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
81
81
|
end
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
-
describe 'test attribute "
|
|
84
|
+
describe 'test attribute "proxy_username"' do
|
|
85
85
|
it 'should work' do
|
|
86
86
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
87
87
|
end
|
|
88
88
|
end
|
|
89
89
|
|
|
90
|
-
describe 'test attribute "
|
|
90
|
+
describe 'test attribute "proxy_password"' do
|
|
91
91
|
it 'should work' do
|
|
92
92
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
93
93
|
end
|
|
94
94
|
end
|
|
95
95
|
|
|
96
|
-
describe 'test attribute "
|
|
96
|
+
describe 'test attribute "username"' do
|
|
97
97
|
it 'should work' do
|
|
98
98
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
99
99
|
end
|
|
100
100
|
end
|
|
101
101
|
|
|
102
|
-
describe 'test attribute "
|
|
102
|
+
describe 'test attribute "password"' do
|
|
103
103
|
it 'should work' do
|
|
104
104
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
105
105
|
end
|
|
@@ -111,12 +111,6 @@ describe PulpGemClient::PatchedgemGemRemote do
|
|
|
111
111
|
end
|
|
112
112
|
end
|
|
113
113
|
|
|
114
|
-
describe 'test attribute "policy"' do
|
|
115
|
-
it 'should work' do
|
|
116
|
-
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
117
|
-
end
|
|
118
|
-
end
|
|
119
|
-
|
|
120
114
|
describe 'test attribute "total_timeout"' do
|
|
121
115
|
it 'should work' do
|
|
122
116
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -147,6 +141,12 @@ describe PulpGemClient::PatchedgemGemRemote do
|
|
|
147
141
|
end
|
|
148
142
|
end
|
|
149
143
|
|
|
144
|
+
describe 'test attribute "download_concurrency"' do
|
|
145
|
+
it 'should work' do
|
|
146
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
147
|
+
end
|
|
148
|
+
end
|
|
149
|
+
|
|
150
150
|
describe 'test attribute "rate_limit"' do
|
|
151
151
|
it 'should work' do
|
|
152
152
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -51,6 +51,12 @@ describe PulpGemClient::PatchedgemGemRepository do
|
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
+
describe 'test attribute "retain_checkpoints"' do
|
|
55
|
+
it 'should work' do
|
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
54
60
|
describe 'test attribute "remote"' do
|
|
55
61
|
it 'should work' do
|
|
56
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -45,4 +45,10 @@ describe PulpGemClient::RepositoryAddRemoveContent do
|
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
+
describe 'test attribute "overwrite"' do
|
|
49
|
+
it 'should work' do
|
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
|
48
54
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pulp_gem_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-07-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -239,44 +239,44 @@ signing_key:
|
|
|
239
239
|
specification_version: 4
|
|
240
240
|
summary: Pulp 3 API Ruby Gem
|
|
241
241
|
test_files:
|
|
242
|
-
- spec/api/
|
|
242
|
+
- spec/api/repositories_gem_versions_api_spec.rb
|
|
243
243
|
- spec/api/distributions_gem_api_spec.rb
|
|
244
|
-
- spec/api/repositories_gem_api_spec.rb
|
|
245
244
|
- spec/api/content_gem_api_spec.rb
|
|
246
|
-
- spec/api/repositories_gem_versions_api_spec.rb
|
|
247
245
|
- spec/api/remotes_gem_api_spec.rb
|
|
248
|
-
- spec/
|
|
249
|
-
- spec/
|
|
250
|
-
- spec/models/
|
|
251
|
-
- spec/models/
|
|
252
|
-
- spec/models/gem_gem_remote_spec.rb
|
|
253
|
-
- spec/models/repository_version_response_spec.rb
|
|
254
|
-
- spec/models/patchedgem_gem_repository_spec.rb
|
|
255
|
-
- spec/models/set_label_spec.rb
|
|
256
|
-
- spec/models/my_permissions_response_spec.rb
|
|
257
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
|
246
|
+
- spec/api/repositories_gem_api_spec.rb
|
|
247
|
+
- spec/api/publications_gem_api_spec.rb
|
|
248
|
+
- spec/models/paginatedgem_gem_distribution_response_list_spec.rb
|
|
249
|
+
- spec/models/object_roles_response_spec.rb
|
|
258
250
|
- spec/models/repair_spec.rb
|
|
259
|
-
- spec/models/
|
|
251
|
+
- spec/models/gem_gem_remote_response_hidden_fields_inner_spec.rb
|
|
260
252
|
- spec/models/gem_gem_content_response_spec.rb
|
|
261
|
-
- spec/models/gem_gem_repository_spec.rb
|
|
262
|
-
- spec/models/repository_add_remove_content_spec.rb
|
|
263
|
-
- spec/models/nested_role_spec.rb
|
|
264
|
-
- spec/models/gem_gem_remote_response_spec.rb
|
|
265
|
-
- spec/models/gem_gem_publication_spec.rb
|
|
266
|
-
- spec/models/gem_gem_distribution_response_spec.rb
|
|
267
|
-
- spec/models/patchedgem_gem_distribution_spec.rb
|
|
268
|
-
- spec/models/repository_sync_url_spec.rb
|
|
269
|
-
- spec/models/set_label_response_spec.rb
|
|
270
253
|
- spec/models/unset_label_spec.rb
|
|
254
|
+
- spec/models/nested_role_spec.rb
|
|
255
|
+
- spec/models/gem_gem_remote_spec.rb
|
|
256
|
+
- spec/models/my_permissions_response_spec.rb
|
|
271
257
|
- spec/models/policy_enum_spec.rb
|
|
272
|
-
- spec/models/
|
|
273
|
-
- spec/models/
|
|
274
|
-
- spec/models/
|
|
275
|
-
- spec/models/
|
|
258
|
+
- spec/models/gem_gem_repository_response_spec.rb
|
|
259
|
+
- spec/models/gem_gem_distribution_spec.rb
|
|
260
|
+
- spec/models/paginatedgem_gem_publication_response_list_spec.rb
|
|
261
|
+
- spec/models/async_operation_response_spec.rb
|
|
262
|
+
- spec/models/paginatedgem_gem_content_response_list_spec.rb
|
|
263
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
|
264
|
+
- spec/models/patchedgem_gem_distribution_spec.rb
|
|
265
|
+
- spec/models/paginatedgem_gem_repository_response_list_spec.rb
|
|
266
|
+
- spec/models/patchedgem_gem_repository_spec.rb
|
|
267
|
+
- spec/models/unset_label_response_spec.rb
|
|
268
|
+
- spec/models/gem_gem_distribution_response_spec.rb
|
|
269
|
+
- spec/models/patchedgem_gem_remote_spec.rb
|
|
276
270
|
- spec/models/nested_role_response_spec.rb
|
|
271
|
+
- spec/models/gem_gem_publication_spec.rb
|
|
272
|
+
- spec/models/gem_gem_remote_response_spec.rb
|
|
277
273
|
- spec/models/gem_gem_publication_response_spec.rb
|
|
274
|
+
- spec/models/repository_version_response_spec.rb
|
|
275
|
+
- spec/models/set_label_response_spec.rb
|
|
276
|
+
- spec/models/repository_sync_url_spec.rb
|
|
277
|
+
- spec/models/repository_add_remove_content_spec.rb
|
|
278
278
|
- spec/models/content_summary_response_spec.rb
|
|
279
|
-
- spec/models/
|
|
280
|
-
- spec/models/
|
|
281
|
-
- spec/models/
|
|
279
|
+
- spec/models/gem_gem_repository_spec.rb
|
|
280
|
+
- spec/models/paginatedgem_gem_remote_response_list_spec.rb
|
|
281
|
+
- spec/models/set_label_spec.rb
|
|
282
282
|
- spec/spec_helper.rb
|