pulp_maven_client 0.1.0b31572381206 → 0.1.0b31574196301

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.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +22 -8
  3. data/docs/ContentArtifactApi.md +6 -6
  4. data/docs/ContentSummary.md +21 -0
  5. data/docs/DistributionsMavenApi.md +8 -8
  6. data/docs/InlineResponse200.md +1 -1
  7. data/docs/InlineResponse2001.md +1 -1
  8. data/docs/InlineResponse2002.md +1 -1
  9. data/docs/InlineResponse2003.md +23 -0
  10. data/docs/InlineResponse2004.md +23 -0
  11. data/docs/{MavenArtifact.md → MavenMavenArtifact.md} +2 -4
  12. data/docs/{MavenDistribution.md → MavenMavenDistribution.md} +2 -2
  13. data/docs/MavenMavenRemote.md +39 -0
  14. data/docs/MavenMavenRepository.md +27 -0
  15. data/docs/RemotesMavenApi.md +10 -10
  16. data/docs/RepositoriesMavenApi.md +354 -0
  17. data/docs/RepositoriesMavenVersionsApi.md +214 -0
  18. data/docs/RepositoryVersion.md +25 -0
  19. data/lib/pulp_maven_client.rb +11 -4
  20. data/lib/pulp_maven_client/api/content_artifact_api.rb +9 -9
  21. data/lib/pulp_maven_client/api/distributions_maven_api.rb +10 -10
  22. data/lib/pulp_maven_client/api/remotes_maven_api.rb +13 -13
  23. data/lib/pulp_maven_client/api/repositories_maven_api.rb +430 -0
  24. data/lib/pulp_maven_client/api/repositories_maven_versions_api.rb +268 -0
  25. data/lib/pulp_maven_client/api_client.rb +1 -1
  26. data/lib/pulp_maven_client/api_error.rb +1 -1
  27. data/lib/pulp_maven_client/configuration.rb +1 -1
  28. data/lib/pulp_maven_client/models/async_operation_response.rb +12 -2
  29. data/lib/pulp_maven_client/models/content_summary.rb +246 -0
  30. data/lib/pulp_maven_client/models/inline_response200.rb +15 -3
  31. data/lib/pulp_maven_client/models/inline_response2001.rb +15 -3
  32. data/lib/pulp_maven_client/models/inline_response2002.rb +15 -3
  33. data/lib/pulp_maven_client/models/inline_response2003.rb +247 -0
  34. data/lib/pulp_maven_client/models/inline_response2004.rb +247 -0
  35. data/lib/pulp_maven_client/models/{maven_artifact.rb → maven_maven_artifact.rb} +16 -40
  36. data/lib/pulp_maven_client/models/{maven_distribution.rb → maven_maven_distribution.rb} +17 -23
  37. data/lib/pulp_maven_client/models/{maven_remote.rb → maven_maven_remote.rb} +69 -105
  38. data/lib/pulp_maven_client/models/maven_maven_repository.rb +294 -0
  39. data/lib/pulp_maven_client/models/repository_version.rb +244 -0
  40. data/lib/pulp_maven_client/version.rb +2 -2
  41. data/pulp_maven_client.gemspec +1 -1
  42. data/spec/api/content_artifact_api_spec.rb +3 -3
  43. data/spec/api/distributions_maven_api_spec.rb +2 -2
  44. data/spec/api/remotes_maven_api_spec.rb +3 -3
  45. data/spec/api/repositories_maven_api_spec.rb +116 -0
  46. data/spec/api/repositories_maven_versions_api_spec.rb +91 -0
  47. data/spec/api_client_spec.rb +1 -1
  48. data/spec/configuration_spec.rb +1 -1
  49. data/spec/models/async_operation_response_spec.rb +1 -1
  50. data/spec/models/content_summary_spec.rb +53 -0
  51. data/spec/models/inline_response2001_spec.rb +1 -1
  52. data/spec/models/inline_response2002_spec.rb +1 -1
  53. data/spec/models/inline_response2003_spec.rb +59 -0
  54. data/spec/models/inline_response2004_spec.rb +59 -0
  55. data/spec/models/inline_response200_spec.rb +1 -1
  56. data/spec/models/{maven_artifact_spec.rb → maven_maven_artifact_spec.rb} +7 -13
  57. data/spec/models/{maven_distribution_spec.rb → maven_maven_distribution_spec.rb} +7 -7
  58. data/spec/models/{maven_remote_spec.rb → maven_maven_remote_spec.rb} +11 -23
  59. data/spec/models/maven_maven_repository_spec.rb +71 -0
  60. data/spec/models/repository_version_spec.rb +65 -0
  61. data/spec/spec_helper.rb +1 -1
  62. metadata +42 -14
  63. data/docs/MavenRemote.md +0 -43
@@ -0,0 +1,59 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v3
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.2-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpMavenClient::InlineResponse2004
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'InlineResponse2004' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpMavenClient::InlineResponse2004.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of InlineResponse2004' do
31
+ it 'should create an instance of InlineResponse2004' do
32
+ expect(@instance).to be_instance_of(PulpMavenClient::InlineResponse2004)
33
+ end
34
+ end
35
+ describe 'test attribute "count"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "_next"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "previous"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "results"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ end
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: v3
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.0-SNAPSHOT
9
+ OpenAPI Generator version: 4.2.2-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: v3
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.0-SNAPSHOT
9
+ OpenAPI Generator version: 4.2.2-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -14,22 +14,22 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for PulpMavenClient::MavenArtifact
17
+ # Unit tests for PulpMavenClient::MavenMavenArtifact
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe 'MavenArtifact' do
20
+ describe 'MavenMavenArtifact' do
21
21
  before do
22
22
  # run before each test
23
- @instance = PulpMavenClient::MavenArtifact.new
23
+ @instance = PulpMavenClient::MavenMavenArtifact.new
24
24
  end
25
25
 
26
26
  after do
27
27
  # run after each test
28
28
  end
29
29
 
30
- describe 'test an instance of MavenArtifact' do
31
- it 'should create an instance of MavenArtifact' do
32
- expect(@instance).to be_instance_of(PulpMavenClient::MavenArtifact)
30
+ describe 'test an instance of MavenMavenArtifact' do
31
+ it 'should create an instance of MavenMavenArtifact' do
32
+ expect(@instance).to be_instance_of(PulpMavenClient::MavenMavenArtifact)
33
33
  end
34
34
  end
35
35
  describe 'test attribute "pulp_href"' do
@@ -50,12 +50,6 @@ describe 'MavenArtifact' do
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "relative_path"' do
54
- it 'should work' do
55
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
- end
57
- end
58
-
59
53
  describe 'test attribute "group_id"' do
60
54
  it 'should work' do
61
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: v3
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.0-SNAPSHOT
9
+ OpenAPI Generator version: 4.2.2-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -14,22 +14,22 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for PulpMavenClient::MavenDistribution
17
+ # Unit tests for PulpMavenClient::MavenMavenDistribution
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe 'MavenDistribution' do
20
+ describe 'MavenMavenDistribution' do
21
21
  before do
22
22
  # run before each test
23
- @instance = PulpMavenClient::MavenDistribution.new
23
+ @instance = PulpMavenClient::MavenMavenDistribution.new
24
24
  end
25
25
 
26
26
  after do
27
27
  # run after each test
28
28
  end
29
29
 
30
- describe 'test an instance of MavenDistribution' do
31
- it 'should create an instance of MavenDistribution' do
32
- expect(@instance).to be_instance_of(PulpMavenClient::MavenDistribution)
30
+ describe 'test an instance of MavenMavenDistribution' do
31
+ it 'should create an instance of MavenMavenDistribution' do
32
+ expect(@instance).to be_instance_of(PulpMavenClient::MavenMavenDistribution)
33
33
  end
34
34
  end
35
35
  describe 'test attribute "pulp_href"' do
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: v3
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.0-SNAPSHOT
9
+ OpenAPI Generator version: 4.2.2-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -14,22 +14,22 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for PulpMavenClient::MavenRemote
17
+ # Unit tests for PulpMavenClient::MavenMavenRemote
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe 'MavenRemote' do
20
+ describe 'MavenMavenRemote' do
21
21
  before do
22
22
  # run before each test
23
- @instance = PulpMavenClient::MavenRemote.new
23
+ @instance = PulpMavenClient::MavenMavenRemote.new
24
24
  end
25
25
 
26
26
  after do
27
27
  # run after each test
28
28
  end
29
29
 
30
- describe 'test an instance of MavenRemote' do
31
- it 'should create an instance of MavenRemote' do
32
- expect(@instance).to be_instance_of(PulpMavenClient::MavenRemote)
30
+ describe 'test an instance of MavenMavenRemote' do
31
+ it 'should create an instance of MavenMavenRemote' do
32
+ expect(@instance).to be_instance_of(PulpMavenClient::MavenMavenRemote)
33
33
  end
34
34
  end
35
35
  describe 'test attribute "pulp_href"' do
@@ -56,25 +56,25 @@ describe 'MavenRemote' do
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "ssl_ca_certificate"' do
59
+ describe 'test attribute "ca_cert"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "ssl_client_certificate"' do
65
+ describe 'test attribute "client_cert"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "ssl_client_key"' do
71
+ describe 'test attribute "client_key"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "ssl_validation"' do
77
+ describe 'test attribute "tls_validation"' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
80
  end
@@ -86,18 +86,6 @@ describe 'MavenRemote' do
86
86
  end
87
87
  end
88
88
 
89
- describe 'test attribute "username"' do
90
- it 'should work' do
91
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
- end
93
- end
94
-
95
- describe 'test attribute "password"' do
96
- it 'should work' do
97
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
- end
99
- end
100
-
101
89
  describe 'test attribute "pulp_last_updated"' do
102
90
  it 'should work' do
103
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,71 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v3
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.2-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpMavenClient::MavenMavenRepository
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'MavenMavenRepository' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpMavenClient::MavenMavenRepository.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of MavenMavenRepository' do
31
+ it 'should create an instance of MavenMavenRepository' do
32
+ expect(@instance).to be_instance_of(PulpMavenClient::MavenMavenRepository)
33
+ end
34
+ end
35
+ describe 'test attribute "pulp_href"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "pulp_created"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "versions_href"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "latest_version_href"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "name"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "description"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ end
@@ -0,0 +1,65 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v3
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.2-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpMavenClient::RepositoryVersion
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'RepositoryVersion' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpMavenClient::RepositoryVersion.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of RepositoryVersion' do
31
+ it 'should create an instance of RepositoryVersion' do
32
+ expect(@instance).to be_instance_of(PulpMavenClient::RepositoryVersion)
33
+ end
34
+ end
35
+ describe 'test attribute "pulp_href"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "pulp_created"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "number"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "base_version"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "content_summary"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ end
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: v3
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.0-SNAPSHOT
9
+ OpenAPI Generator version: 4.2.2-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_maven_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0b31572381206
4
+ version: 0.1.0b31574196301
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-29 00:00:00.000000000 Z
11
+ date: 2019-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -76,43 +76,64 @@ files:
76
76
  - Rakefile
77
77
  - docs/AsyncOperationResponse.md
78
78
  - docs/ContentArtifactApi.md
79
+ - docs/ContentSummary.md
79
80
  - docs/DistributionsMavenApi.md
80
81
  - docs/InlineResponse200.md
81
82
  - docs/InlineResponse2001.md
82
83
  - docs/InlineResponse2002.md
83
- - docs/MavenArtifact.md
84
- - docs/MavenDistribution.md
85
- - docs/MavenRemote.md
84
+ - docs/InlineResponse2003.md
85
+ - docs/InlineResponse2004.md
86
+ - docs/MavenMavenArtifact.md
87
+ - docs/MavenMavenDistribution.md
88
+ - docs/MavenMavenRemote.md
89
+ - docs/MavenMavenRepository.md
86
90
  - docs/RemotesMavenApi.md
91
+ - docs/RepositoriesMavenApi.md
92
+ - docs/RepositoriesMavenVersionsApi.md
93
+ - docs/RepositoryVersion.md
87
94
  - git_push.sh
88
95
  - lib/pulp_maven_client.rb
89
96
  - lib/pulp_maven_client/api/content_artifact_api.rb
90
97
  - lib/pulp_maven_client/api/distributions_maven_api.rb
91
98
  - lib/pulp_maven_client/api/remotes_maven_api.rb
99
+ - lib/pulp_maven_client/api/repositories_maven_api.rb
100
+ - lib/pulp_maven_client/api/repositories_maven_versions_api.rb
92
101
  - lib/pulp_maven_client/api_client.rb
93
102
  - lib/pulp_maven_client/api_error.rb
94
103
  - lib/pulp_maven_client/configuration.rb
95
104
  - lib/pulp_maven_client/models/async_operation_response.rb
105
+ - lib/pulp_maven_client/models/content_summary.rb
96
106
  - lib/pulp_maven_client/models/inline_response200.rb
97
107
  - lib/pulp_maven_client/models/inline_response2001.rb
98
108
  - lib/pulp_maven_client/models/inline_response2002.rb
99
- - lib/pulp_maven_client/models/maven_artifact.rb
100
- - lib/pulp_maven_client/models/maven_distribution.rb
101
- - lib/pulp_maven_client/models/maven_remote.rb
109
+ - lib/pulp_maven_client/models/inline_response2003.rb
110
+ - lib/pulp_maven_client/models/inline_response2004.rb
111
+ - lib/pulp_maven_client/models/maven_maven_artifact.rb
112
+ - lib/pulp_maven_client/models/maven_maven_distribution.rb
113
+ - lib/pulp_maven_client/models/maven_maven_remote.rb
114
+ - lib/pulp_maven_client/models/maven_maven_repository.rb
115
+ - lib/pulp_maven_client/models/repository_version.rb
102
116
  - lib/pulp_maven_client/version.rb
103
117
  - pulp_maven_client.gemspec
104
118
  - spec/api/content_artifact_api_spec.rb
105
119
  - spec/api/distributions_maven_api_spec.rb
106
120
  - spec/api/remotes_maven_api_spec.rb
121
+ - spec/api/repositories_maven_api_spec.rb
122
+ - spec/api/repositories_maven_versions_api_spec.rb
107
123
  - spec/api_client_spec.rb
108
124
  - spec/configuration_spec.rb
109
125
  - spec/models/async_operation_response_spec.rb
126
+ - spec/models/content_summary_spec.rb
110
127
  - spec/models/inline_response2001_spec.rb
111
128
  - spec/models/inline_response2002_spec.rb
129
+ - spec/models/inline_response2003_spec.rb
130
+ - spec/models/inline_response2004_spec.rb
112
131
  - spec/models/inline_response200_spec.rb
113
- - spec/models/maven_artifact_spec.rb
114
- - spec/models/maven_distribution_spec.rb
115
- - spec/models/maven_remote_spec.rb
132
+ - spec/models/maven_maven_artifact_spec.rb
133
+ - spec/models/maven_maven_distribution_spec.rb
134
+ - spec/models/maven_maven_remote_spec.rb
135
+ - spec/models/maven_maven_repository_spec.rb
136
+ - spec/models/repository_version_spec.rb
116
137
  - spec/spec_helper.rb
117
138
  homepage: https://openapi-generator.tech
118
139
  licenses:
@@ -140,15 +161,22 @@ specification_version: 4
140
161
  summary: Pulp 3 API Ruby Gem
141
162
  test_files:
142
163
  - spec/api/distributions_maven_api_spec.rb
164
+ - spec/api/repositories_maven_versions_api_spec.rb
143
165
  - spec/api/remotes_maven_api_spec.rb
144
166
  - spec/api/content_artifact_api_spec.rb
167
+ - spec/api/repositories_maven_api_spec.rb
145
168
  - spec/api_client_spec.rb
146
169
  - spec/configuration_spec.rb
147
- - spec/models/maven_distribution_spec.rb
170
+ - spec/models/maven_maven_repository_spec.rb
171
+ - spec/models/inline_response2003_spec.rb
172
+ - spec/models/maven_maven_distribution_spec.rb
173
+ - spec/models/repository_version_spec.rb
148
174
  - spec/models/inline_response2001_spec.rb
149
175
  - spec/models/inline_response2002_spec.rb
176
+ - spec/models/inline_response2004_spec.rb
150
177
  - spec/models/async_operation_response_spec.rb
151
- - spec/models/maven_remote_spec.rb
152
- - spec/models/maven_artifact_spec.rb
178
+ - spec/models/content_summary_spec.rb
179
+ - spec/models/maven_maven_artifact_spec.rb
180
+ - spec/models/maven_maven_remote_spec.rb
153
181
  - spec/models/inline_response200_spec.rb
154
182
  - spec/spec_helper.rb