pulp_ansible_client 0.2.0b1
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 +7 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +79 -0
- data/README.md +150 -0
- data/Rakefile +10 -0
- data/docs/AnsibleCollectionsApi.md +66 -0
- data/docs/AnsibleDistribution.md +31 -0
- data/docs/AnsibleRemote.md +45 -0
- data/docs/AsyncOperationResponse.md +17 -0
- data/docs/Collection.md +41 -0
- data/docs/CollectionRemote.md +47 -0
- data/docs/ContentCollectionsApi.md +134 -0
- data/docs/ContentRolesApi.md +186 -0
- data/docs/DistributionsAnsibleApi.md +352 -0
- data/docs/GalaxyCollection.md +25 -0
- data/docs/GalaxyRole.md +21 -0
- data/docs/GalaxyRoleVersion.md +19 -0
- data/docs/InlineResponse200.md +23 -0
- data/docs/InlineResponse2001.md +23 -0
- data/docs/InlineResponse2002.md +23 -0
- data/docs/InlineResponse2003.md +23 -0
- data/docs/InlineResponse2004.md +23 -0
- data/docs/InlineResponse2005.md +23 -0
- data/docs/InlineResponse2006.md +23 -0
- data/docs/InlineResponse2007.md +23 -0
- data/docs/PulpAnsibleApiApi.md +60 -0
- data/docs/PulpAnsibleGalaxyApiCollectionsApi.md +113 -0
- data/docs/PulpAnsibleGalaxyApiRolesApi.md +67 -0
- data/docs/PulpAnsibleGalaxyApiV1VersionsApi.md +69 -0
- data/docs/PulpAnsibleGalaxyApiV2VersionsApi.md +67 -0
- data/docs/RemotesAnsibleApi.md +411 -0
- data/docs/RemotesCollectionApi.md +411 -0
- data/docs/RepositorySyncURL.md +19 -0
- data/docs/Role.md +29 -0
- data/git_push.sh +55 -0
- data/lib/pulp_ansible_client/api/ansible_collections_api.rb +94 -0
- data/lib/pulp_ansible_client/api/content_collections_api.rb +169 -0
- data/lib/pulp_ansible_client/api/content_roles_api.rb +228 -0
- data/lib/pulp_ansible_client/api/distributions_ansible_api.rb +430 -0
- data/lib/pulp_ansible_client/api/pulp_ansible_api_api.rb +80 -0
- data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_collections_api.rb +140 -0
- data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_roles_api.rb +88 -0
- data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v1_versions_api.rb +94 -0
- data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v2_versions_api.rb +88 -0
- data/lib/pulp_ansible_client/api/remotes_ansible_api.rb +504 -0
- data/lib/pulp_ansible_client/api/remotes_collection_api.rb +504 -0
- data/lib/pulp_ansible_client/api_client.rb +387 -0
- data/lib/pulp_ansible_client/api_error.rb +57 -0
- data/lib/pulp_ansible_client/configuration.rb +251 -0
- data/lib/pulp_ansible_client/models/ansible_distribution.rb +347 -0
- data/lib/pulp_ansible_client/models/ansible_remote.rb +539 -0
- data/lib/pulp_ansible_client/models/async_operation_response.rb +202 -0
- data/lib/pulp_ansible_client/models/collection.rb +494 -0
- data/lib/pulp_ansible_client/models/collection_remote.rb +572 -0
- data/lib/pulp_ansible_client/models/galaxy_collection.rb +304 -0
- data/lib/pulp_ansible_client/models/galaxy_role.rb +262 -0
- data/lib/pulp_ansible_client/models/galaxy_role_version.rb +229 -0
- data/lib/pulp_ansible_client/models/inline_response200.rb +235 -0
- data/lib/pulp_ansible_client/models/inline_response2001.rb +235 -0
- data/lib/pulp_ansible_client/models/inline_response2002.rb +235 -0
- data/lib/pulp_ansible_client/models/inline_response2003.rb +235 -0
- data/lib/pulp_ansible_client/models/inline_response2004.rb +235 -0
- data/lib/pulp_ansible_client/models/inline_response2005.rb +235 -0
- data/lib/pulp_ansible_client/models/inline_response2006.rb +235 -0
- data/lib/pulp_ansible_client/models/inline_response2007.rb +235 -0
- data/lib/pulp_ansible_client/models/repository_sync_url.rb +214 -0
- data/lib/pulp_ansible_client/models/role.rb +344 -0
- data/lib/pulp_ansible_client/version.rb +15 -0
- data/lib/pulp_ansible_client.rb +68 -0
- data/pulp_ansible_client.gemspec +45 -0
- data/spec/api/ansible_collections_api_spec.rb +48 -0
- data/spec/api/content_collections_api_spec.rb +67 -0
- data/spec/api/content_roles_api_spec.rb +78 -0
- data/spec/api/distributions_ansible_api_spec.rb +116 -0
- data/spec/api/pulp_ansible_api_api_spec.rb +46 -0
- data/spec/api/pulp_ansible_galaxy_api_collections_api_spec.rb +57 -0
- data/spec/api/pulp_ansible_galaxy_api_roles_api_spec.rb +48 -0
- data/spec/api/pulp_ansible_galaxy_api_v1_versions_api_spec.rb +49 -0
- data/spec/api/pulp_ansible_galaxy_api_v2_versions_api_spec.rb +48 -0
- data/spec/api/remotes_ansible_api_spec.rb +130 -0
- data/spec/api/remotes_collection_api_spec.rb +130 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/ansible_distribution_spec.rb +83 -0
- data/spec/models/ansible_remote_spec.rb +129 -0
- data/spec/models/async_operation_response_spec.rb +41 -0
- data/spec/models/collection_remote_spec.rb +135 -0
- data/spec/models/collection_spec.rb +113 -0
- data/spec/models/galaxy_collection_spec.rb +65 -0
- data/spec/models/galaxy_role_spec.rb +53 -0
- data/spec/models/galaxy_role_version_spec.rb +47 -0
- data/spec/models/inline_response2001_spec.rb +59 -0
- data/spec/models/inline_response2002_spec.rb +59 -0
- data/spec/models/inline_response2003_spec.rb +59 -0
- data/spec/models/inline_response2004_spec.rb +59 -0
- data/spec/models/inline_response2005_spec.rb +59 -0
- data/spec/models/inline_response2006_spec.rb +59 -0
- data/spec/models/inline_response2007_spec.rb +59 -0
- data/spec/models/inline_response200_spec.rb +59 -0
- data/spec/models/repository_sync_url_spec.rb +47 -0
- data/spec/models/role_spec.rb +77 -0
- data/spec/spec_helper.rb +111 -0
- metadata +357 -0
metadata
ADDED
|
@@ -0,0 +1,357 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: pulp_ansible_client
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.2.0b1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- OpenAPI-Generator
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2019-07-12 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: typhoeus
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.0'
|
|
20
|
+
- - ">="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 1.0.1
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - "~>"
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '1.0'
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 1.0.1
|
|
33
|
+
- !ruby/object:Gem::Dependency
|
|
34
|
+
name: json
|
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '2.1'
|
|
40
|
+
- - ">="
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: 2.1.0
|
|
43
|
+
type: :runtime
|
|
44
|
+
prerelease: false
|
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
46
|
+
requirements:
|
|
47
|
+
- - "~>"
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: '2.1'
|
|
50
|
+
- - ">="
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: 2.1.0
|
|
53
|
+
- !ruby/object:Gem::Dependency
|
|
54
|
+
name: rspec
|
|
55
|
+
requirement: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - "~>"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '3.6'
|
|
60
|
+
- - ">="
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: 3.6.0
|
|
63
|
+
type: :development
|
|
64
|
+
prerelease: false
|
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - "~>"
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '3.6'
|
|
70
|
+
- - ">="
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: 3.6.0
|
|
73
|
+
- !ruby/object:Gem::Dependency
|
|
74
|
+
name: vcr
|
|
75
|
+
requirement: !ruby/object:Gem::Requirement
|
|
76
|
+
requirements:
|
|
77
|
+
- - "~>"
|
|
78
|
+
- !ruby/object:Gem::Version
|
|
79
|
+
version: '3.0'
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: 3.0.1
|
|
83
|
+
type: :development
|
|
84
|
+
prerelease: false
|
|
85
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '3.0'
|
|
90
|
+
- - ">="
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
version: 3.0.1
|
|
93
|
+
- !ruby/object:Gem::Dependency
|
|
94
|
+
name: webmock
|
|
95
|
+
requirement: !ruby/object:Gem::Requirement
|
|
96
|
+
requirements:
|
|
97
|
+
- - "~>"
|
|
98
|
+
- !ruby/object:Gem::Version
|
|
99
|
+
version: '1.24'
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: 1.24.3
|
|
103
|
+
type: :development
|
|
104
|
+
prerelease: false
|
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - "~>"
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: '1.24'
|
|
110
|
+
- - ">="
|
|
111
|
+
- !ruby/object:Gem::Version
|
|
112
|
+
version: 1.24.3
|
|
113
|
+
- !ruby/object:Gem::Dependency
|
|
114
|
+
name: autotest
|
|
115
|
+
requirement: !ruby/object:Gem::Requirement
|
|
116
|
+
requirements:
|
|
117
|
+
- - "~>"
|
|
118
|
+
- !ruby/object:Gem::Version
|
|
119
|
+
version: '4.4'
|
|
120
|
+
- - ">="
|
|
121
|
+
- !ruby/object:Gem::Version
|
|
122
|
+
version: 4.4.6
|
|
123
|
+
type: :development
|
|
124
|
+
prerelease: false
|
|
125
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
126
|
+
requirements:
|
|
127
|
+
- - "~>"
|
|
128
|
+
- !ruby/object:Gem::Version
|
|
129
|
+
version: '4.4'
|
|
130
|
+
- - ">="
|
|
131
|
+
- !ruby/object:Gem::Version
|
|
132
|
+
version: 4.4.6
|
|
133
|
+
- !ruby/object:Gem::Dependency
|
|
134
|
+
name: autotest-rails-pure
|
|
135
|
+
requirement: !ruby/object:Gem::Requirement
|
|
136
|
+
requirements:
|
|
137
|
+
- - "~>"
|
|
138
|
+
- !ruby/object:Gem::Version
|
|
139
|
+
version: '4.1'
|
|
140
|
+
- - ">="
|
|
141
|
+
- !ruby/object:Gem::Version
|
|
142
|
+
version: 4.1.2
|
|
143
|
+
type: :development
|
|
144
|
+
prerelease: false
|
|
145
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
146
|
+
requirements:
|
|
147
|
+
- - "~>"
|
|
148
|
+
- !ruby/object:Gem::Version
|
|
149
|
+
version: '4.1'
|
|
150
|
+
- - ">="
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: 4.1.2
|
|
153
|
+
- !ruby/object:Gem::Dependency
|
|
154
|
+
name: autotest-growl
|
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
|
156
|
+
requirements:
|
|
157
|
+
- - "~>"
|
|
158
|
+
- !ruby/object:Gem::Version
|
|
159
|
+
version: '0.2'
|
|
160
|
+
- - ">="
|
|
161
|
+
- !ruby/object:Gem::Version
|
|
162
|
+
version: 0.2.16
|
|
163
|
+
type: :development
|
|
164
|
+
prerelease: false
|
|
165
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
166
|
+
requirements:
|
|
167
|
+
- - "~>"
|
|
168
|
+
- !ruby/object:Gem::Version
|
|
169
|
+
version: '0.2'
|
|
170
|
+
- - ">="
|
|
171
|
+
- !ruby/object:Gem::Version
|
|
172
|
+
version: 0.2.16
|
|
173
|
+
- !ruby/object:Gem::Dependency
|
|
174
|
+
name: autotest-fsevent
|
|
175
|
+
requirement: !ruby/object:Gem::Requirement
|
|
176
|
+
requirements:
|
|
177
|
+
- - "~>"
|
|
178
|
+
- !ruby/object:Gem::Version
|
|
179
|
+
version: '0.2'
|
|
180
|
+
- - ">="
|
|
181
|
+
- !ruby/object:Gem::Version
|
|
182
|
+
version: 0.2.12
|
|
183
|
+
type: :development
|
|
184
|
+
prerelease: false
|
|
185
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
186
|
+
requirements:
|
|
187
|
+
- - "~>"
|
|
188
|
+
- !ruby/object:Gem::Version
|
|
189
|
+
version: '0.2'
|
|
190
|
+
- - ">="
|
|
191
|
+
- !ruby/object:Gem::Version
|
|
192
|
+
version: 0.2.12
|
|
193
|
+
description: No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
194
|
+
email:
|
|
195
|
+
- ''
|
|
196
|
+
executables: []
|
|
197
|
+
extensions: []
|
|
198
|
+
extra_rdoc_files: []
|
|
199
|
+
files:
|
|
200
|
+
- Gemfile
|
|
201
|
+
- Gemfile.lock
|
|
202
|
+
- README.md
|
|
203
|
+
- Rakefile
|
|
204
|
+
- docs/AnsibleCollectionsApi.md
|
|
205
|
+
- docs/AnsibleDistribution.md
|
|
206
|
+
- docs/AnsibleRemote.md
|
|
207
|
+
- docs/AsyncOperationResponse.md
|
|
208
|
+
- docs/Collection.md
|
|
209
|
+
- docs/CollectionRemote.md
|
|
210
|
+
- docs/ContentCollectionsApi.md
|
|
211
|
+
- docs/ContentRolesApi.md
|
|
212
|
+
- docs/DistributionsAnsibleApi.md
|
|
213
|
+
- docs/GalaxyCollection.md
|
|
214
|
+
- docs/GalaxyRole.md
|
|
215
|
+
- docs/GalaxyRoleVersion.md
|
|
216
|
+
- docs/InlineResponse200.md
|
|
217
|
+
- docs/InlineResponse2001.md
|
|
218
|
+
- docs/InlineResponse2002.md
|
|
219
|
+
- docs/InlineResponse2003.md
|
|
220
|
+
- docs/InlineResponse2004.md
|
|
221
|
+
- docs/InlineResponse2005.md
|
|
222
|
+
- docs/InlineResponse2006.md
|
|
223
|
+
- docs/InlineResponse2007.md
|
|
224
|
+
- docs/PulpAnsibleApiApi.md
|
|
225
|
+
- docs/PulpAnsibleGalaxyApiCollectionsApi.md
|
|
226
|
+
- docs/PulpAnsibleGalaxyApiRolesApi.md
|
|
227
|
+
- docs/PulpAnsibleGalaxyApiV1VersionsApi.md
|
|
228
|
+
- docs/PulpAnsibleGalaxyApiV2VersionsApi.md
|
|
229
|
+
- docs/RemotesAnsibleApi.md
|
|
230
|
+
- docs/RemotesCollectionApi.md
|
|
231
|
+
- docs/RepositorySyncURL.md
|
|
232
|
+
- docs/Role.md
|
|
233
|
+
- git_push.sh
|
|
234
|
+
- lib/pulp_ansible_client.rb
|
|
235
|
+
- lib/pulp_ansible_client/api/ansible_collections_api.rb
|
|
236
|
+
- lib/pulp_ansible_client/api/content_collections_api.rb
|
|
237
|
+
- lib/pulp_ansible_client/api/content_roles_api.rb
|
|
238
|
+
- lib/pulp_ansible_client/api/distributions_ansible_api.rb
|
|
239
|
+
- lib/pulp_ansible_client/api/pulp_ansible_api_api.rb
|
|
240
|
+
- lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_collections_api.rb
|
|
241
|
+
- lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_roles_api.rb
|
|
242
|
+
- lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v1_versions_api.rb
|
|
243
|
+
- lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v2_versions_api.rb
|
|
244
|
+
- lib/pulp_ansible_client/api/remotes_ansible_api.rb
|
|
245
|
+
- lib/pulp_ansible_client/api/remotes_collection_api.rb
|
|
246
|
+
- lib/pulp_ansible_client/api_client.rb
|
|
247
|
+
- lib/pulp_ansible_client/api_error.rb
|
|
248
|
+
- lib/pulp_ansible_client/configuration.rb
|
|
249
|
+
- lib/pulp_ansible_client/models/ansible_distribution.rb
|
|
250
|
+
- lib/pulp_ansible_client/models/ansible_remote.rb
|
|
251
|
+
- lib/pulp_ansible_client/models/async_operation_response.rb
|
|
252
|
+
- lib/pulp_ansible_client/models/collection.rb
|
|
253
|
+
- lib/pulp_ansible_client/models/collection_remote.rb
|
|
254
|
+
- lib/pulp_ansible_client/models/galaxy_collection.rb
|
|
255
|
+
- lib/pulp_ansible_client/models/galaxy_role.rb
|
|
256
|
+
- lib/pulp_ansible_client/models/galaxy_role_version.rb
|
|
257
|
+
- lib/pulp_ansible_client/models/inline_response200.rb
|
|
258
|
+
- lib/pulp_ansible_client/models/inline_response2001.rb
|
|
259
|
+
- lib/pulp_ansible_client/models/inline_response2002.rb
|
|
260
|
+
- lib/pulp_ansible_client/models/inline_response2003.rb
|
|
261
|
+
- lib/pulp_ansible_client/models/inline_response2004.rb
|
|
262
|
+
- lib/pulp_ansible_client/models/inline_response2005.rb
|
|
263
|
+
- lib/pulp_ansible_client/models/inline_response2006.rb
|
|
264
|
+
- lib/pulp_ansible_client/models/inline_response2007.rb
|
|
265
|
+
- lib/pulp_ansible_client/models/repository_sync_url.rb
|
|
266
|
+
- lib/pulp_ansible_client/models/role.rb
|
|
267
|
+
- lib/pulp_ansible_client/version.rb
|
|
268
|
+
- pulp_ansible_client.gemspec
|
|
269
|
+
- spec/api/ansible_collections_api_spec.rb
|
|
270
|
+
- spec/api/content_collections_api_spec.rb
|
|
271
|
+
- spec/api/content_roles_api_spec.rb
|
|
272
|
+
- spec/api/distributions_ansible_api_spec.rb
|
|
273
|
+
- spec/api/pulp_ansible_api_api_spec.rb
|
|
274
|
+
- spec/api/pulp_ansible_galaxy_api_collections_api_spec.rb
|
|
275
|
+
- spec/api/pulp_ansible_galaxy_api_roles_api_spec.rb
|
|
276
|
+
- spec/api/pulp_ansible_galaxy_api_v1_versions_api_spec.rb
|
|
277
|
+
- spec/api/pulp_ansible_galaxy_api_v2_versions_api_spec.rb
|
|
278
|
+
- spec/api/remotes_ansible_api_spec.rb
|
|
279
|
+
- spec/api/remotes_collection_api_spec.rb
|
|
280
|
+
- spec/api_client_spec.rb
|
|
281
|
+
- spec/configuration_spec.rb
|
|
282
|
+
- spec/models/ansible_distribution_spec.rb
|
|
283
|
+
- spec/models/ansible_remote_spec.rb
|
|
284
|
+
- spec/models/async_operation_response_spec.rb
|
|
285
|
+
- spec/models/collection_remote_spec.rb
|
|
286
|
+
- spec/models/collection_spec.rb
|
|
287
|
+
- spec/models/galaxy_collection_spec.rb
|
|
288
|
+
- spec/models/galaxy_role_spec.rb
|
|
289
|
+
- spec/models/galaxy_role_version_spec.rb
|
|
290
|
+
- spec/models/inline_response2001_spec.rb
|
|
291
|
+
- spec/models/inline_response2002_spec.rb
|
|
292
|
+
- spec/models/inline_response2003_spec.rb
|
|
293
|
+
- spec/models/inline_response2004_spec.rb
|
|
294
|
+
- spec/models/inline_response2005_spec.rb
|
|
295
|
+
- spec/models/inline_response2006_spec.rb
|
|
296
|
+
- spec/models/inline_response2007_spec.rb
|
|
297
|
+
- spec/models/inline_response200_spec.rb
|
|
298
|
+
- spec/models/repository_sync_url_spec.rb
|
|
299
|
+
- spec/models/role_spec.rb
|
|
300
|
+
- spec/spec_helper.rb
|
|
301
|
+
homepage: https://openapi-generator.tech
|
|
302
|
+
licenses:
|
|
303
|
+
- GPLv2
|
|
304
|
+
metadata: {}
|
|
305
|
+
post_install_message:
|
|
306
|
+
rdoc_options: []
|
|
307
|
+
require_paths:
|
|
308
|
+
- lib
|
|
309
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
310
|
+
requirements:
|
|
311
|
+
- - ">="
|
|
312
|
+
- !ruby/object:Gem::Version
|
|
313
|
+
version: '1.9'
|
|
314
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
315
|
+
requirements:
|
|
316
|
+
- - ">"
|
|
317
|
+
- !ruby/object:Gem::Version
|
|
318
|
+
version: 1.3.1
|
|
319
|
+
requirements: []
|
|
320
|
+
rubyforge_project:
|
|
321
|
+
rubygems_version: 2.7.7
|
|
322
|
+
signing_key:
|
|
323
|
+
specification_version: 4
|
|
324
|
+
summary: Pulp 3 API Ruby Gem
|
|
325
|
+
test_files:
|
|
326
|
+
- spec/api/ansible_collections_api_spec.rb
|
|
327
|
+
- spec/api/distributions_ansible_api_spec.rb
|
|
328
|
+
- spec/api/remotes_ansible_api_spec.rb
|
|
329
|
+
- spec/api/remotes_collection_api_spec.rb
|
|
330
|
+
- spec/api/pulp_ansible_galaxy_api_v2_versions_api_spec.rb
|
|
331
|
+
- spec/api/content_collections_api_spec.rb
|
|
332
|
+
- spec/api/pulp_ansible_galaxy_api_v1_versions_api_spec.rb
|
|
333
|
+
- spec/api/pulp_ansible_galaxy_api_collections_api_spec.rb
|
|
334
|
+
- spec/api/content_roles_api_spec.rb
|
|
335
|
+
- spec/api/pulp_ansible_galaxy_api_roles_api_spec.rb
|
|
336
|
+
- spec/api/pulp_ansible_api_api_spec.rb
|
|
337
|
+
- spec/api_client_spec.rb
|
|
338
|
+
- spec/configuration_spec.rb
|
|
339
|
+
- spec/models/galaxy_role_spec.rb
|
|
340
|
+
- spec/models/inline_response2003_spec.rb
|
|
341
|
+
- spec/models/collection_remote_spec.rb
|
|
342
|
+
- spec/models/inline_response2001_spec.rb
|
|
343
|
+
- spec/models/galaxy_role_version_spec.rb
|
|
344
|
+
- spec/models/galaxy_collection_spec.rb
|
|
345
|
+
- spec/models/ansible_distribution_spec.rb
|
|
346
|
+
- spec/models/collection_spec.rb
|
|
347
|
+
- spec/models/inline_response2006_spec.rb
|
|
348
|
+
- spec/models/inline_response2002_spec.rb
|
|
349
|
+
- spec/models/inline_response2004_spec.rb
|
|
350
|
+
- spec/models/role_spec.rb
|
|
351
|
+
- spec/models/async_operation_response_spec.rb
|
|
352
|
+
- spec/models/inline_response2007_spec.rb
|
|
353
|
+
- spec/models/repository_sync_url_spec.rb
|
|
354
|
+
- spec/models/ansible_remote_spec.rb
|
|
355
|
+
- spec/models/inline_response2005_spec.rb
|
|
356
|
+
- spec/models/inline_response200_spec.rb
|
|
357
|
+
- spec/spec_helper.rb
|