zest 0.0.2 → 0.0.3
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 +5 -5
- data/README.md +16 -23
- data/docs/Artifact.md +1 -0
- data/docs/Distribution.md +3 -2
- data/docs/FileContent.md +1 -0
- data/docs/FilePublisher.md +1 -1
- data/docs/InlineResponse2009.md +1 -1
- data/docs/Publication.md +1 -2
- data/docs/PulpApi.md +212 -75
- data/docs/RepositorySyncURL.md +1 -1
- data/docs/RepositoryVersion.md +1 -6
- data/docs/Task.md +0 -1
- data/docs/Upload.md +11 -0
- data/docs/Worker.md +1 -1
- data/lib/zest.rb +1 -2
- data/lib/zest/api/pulp_api.rb +269 -125
- data/lib/zest/configuration.rb +1 -1
- data/lib/zest/models/artifact.rb +13 -4
- data/lib/zest/models/distribution.rb +34 -24
- data/lib/zest/models/file_content.rb +35 -1
- data/lib/zest/models/file_publisher.rb +8 -8
- data/lib/zest/models/inline_response_200_9.rb +1 -1
- data/lib/zest/models/publication.rb +8 -23
- data/lib/zest/models/repository_sync_url.rb +1 -1
- data/lib/zest/models/repository_version.rb +5 -55
- data/lib/zest/models/task.rb +1 -11
- data/lib/zest/models/{inline_response_200_10.rb → upload.rb} +47 -34
- data/lib/zest/models/worker.rb +10 -10
- data/lib/zest/version.rb +1 -1
- data/spec/api/pulp_api_spec.rb +60 -33
- data/spec/configuration_spec.rb +3 -3
- data/spec/models/artifact_spec.rb +6 -0
- data/spec/models/distribution_spec.rb +12 -6
- data/spec/models/file_content_spec.rb +6 -0
- data/spec/models/file_publisher_spec.rb +1 -1
- data/spec/models/publication_spec.rb +1 -7
- data/spec/models/repository_version_spec.rb +0 -30
- data/spec/models/task_spec.rb +0 -6
- data/spec/models/{user_spec.rb → upload_spec.rb} +9 -9
- data/spec/models/worker_spec.rb +2 -2
- data/zest.gemspec +1 -1
- metadata +62 -66
- data/docs/InlineResponse20010.md +0 -11
- data/docs/User.md +0 -11
- data/lib/zest/models/user.rb +0 -284
- data/spec/models/inline_response_200_10_spec.rb +0 -60
data/spec/configuration_spec.rb
CHANGED
@@ -18,7 +18,7 @@ describe Zest::Configuration do
|
|
18
18
|
before(:each) do
|
19
19
|
# uncomment below to setup host and base_path
|
20
20
|
#require 'URI'
|
21
|
-
#uri = URI.parse("http://
|
21
|
+
#uri = URI.parse("http://zest-builder")
|
22
22
|
#Zest.configure do |c|
|
23
23
|
# c.host = uri.host
|
24
24
|
# c.base_path = uri.path
|
@@ -28,14 +28,14 @@ describe Zest::Configuration do
|
|
28
28
|
describe '#base_url' do
|
29
29
|
it 'should have the default value' do
|
30
30
|
# uncomment below to test default value of the base path
|
31
|
-
#expect(config.base_url).to eq("http://
|
31
|
+
#expect(config.base_url).to eq("http://zest-builder")
|
32
32
|
end
|
33
33
|
|
34
34
|
it 'should remove trailing slashes' do
|
35
35
|
[nil, '', '/', '//'].each do |base_path|
|
36
36
|
config.base_path = base_path
|
37
37
|
# uncomment below to test trailing slashes
|
38
|
-
#expect(config.base_url).to eq("http://
|
38
|
+
#expect(config.base_url).to eq("http://zest-builder")
|
39
39
|
end
|
40
40
|
end
|
41
41
|
end
|
@@ -50,37 +50,43 @@ describe 'Distribution' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "publisher"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "publication"' 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 "
|
65
|
+
describe 'test attribute "repository"' 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 "
|
71
|
+
describe 'test attribute "content_guard"' 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 "
|
77
|
+
describe 'test attribute "remote"' 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
|
81
81
|
end
|
82
82
|
|
83
|
-
describe 'test attribute "
|
83
|
+
describe 'test attribute "base_path"' do
|
84
|
+
it 'should work' do
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
describe 'test attribute "base_url"' do
|
84
90
|
it 'should work' do
|
85
91
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
92
|
end
|
@@ -56,6 +56,12 @@ describe 'FileContent' do
|
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
+
describe 'test attribute "_relative_path"' 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
|
+
|
59
65
|
describe 'test attribute "relative_path"' do
|
60
66
|
it 'should work' do
|
61
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -62,7 +62,7 @@ describe 'FilePublisher' do
|
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
-
describe 'test attribute "
|
65
|
+
describe 'test attribute "_distributions"' 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
|
@@ -44,19 +44,13 @@ describe 'Publication' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "pass_through"' 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
47
|
describe 'test attribute "publisher"' do
|
54
48
|
it 'should work' do
|
55
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
50
|
end
|
57
51
|
end
|
58
52
|
|
59
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "_distributions"' do
|
60
54
|
it 'should work' do
|
61
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
56
|
end
|
@@ -56,41 +56,11 @@ describe 'RepositoryVersion' do
|
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "content_hrefs"' 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 "content_added_hrefs"' 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
|
-
describe 'test attribute "content_removed_hrefs"' do
|
72
|
-
it 'should work' do
|
73
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
|
-
end
|
75
|
-
end
|
76
|
-
|
77
59
|
describe 'test attribute "content_summary"' do
|
78
60
|
it 'should work' do
|
79
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
62
|
end
|
81
63
|
end
|
82
64
|
|
83
|
-
describe 'test attribute "content_added_summary"' do
|
84
|
-
it 'should work' do
|
85
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
|
-
end
|
87
|
-
end
|
88
|
-
|
89
|
-
describe 'test attribute "content_removed_summary"' 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
65
|
end
|
96
66
|
|
data/spec/models/task_spec.rb
CHANGED
@@ -44,12 +44,6 @@ describe 'Task' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "job_id"' 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
47
|
describe 'test attribute "state"' do
|
54
48
|
it 'should work' do
|
55
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -14,22 +14,22 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for Zest::
|
17
|
+
# Unit tests for Zest::Upload
|
18
18
|
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe '
|
20
|
+
describe 'Upload' do
|
21
21
|
before do
|
22
22
|
# run before each test
|
23
|
-
@instance = Zest::
|
23
|
+
@instance = Zest::Upload.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
|
31
|
-
it 'should create an instance of
|
32
|
-
expect(@instance).to be_instance_of(Zest::
|
30
|
+
describe 'test an instance of Upload' do
|
31
|
+
it 'should create an instance of Upload' do
|
32
|
+
expect(@instance).to be_instance_of(Zest::Upload)
|
33
33
|
end
|
34
34
|
end
|
35
35
|
describe 'test attribute "_href"' do
|
@@ -38,19 +38,19 @@ describe 'User' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "file"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "offset"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "expires_at"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
data/spec/models/worker_spec.rb
CHANGED
@@ -32,13 +32,13 @@ describe 'Worker' do
|
|
32
32
|
expect(@instance).to be_instance_of(Zest::Worker)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "_created"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "_href"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
data/zest.gemspec
CHANGED
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
|
|
23
23
|
s.email = [""]
|
24
24
|
s.homepage = "https://github.com/swagger-api/swagger-codegen"
|
25
25
|
s.summary = "Generated Api Bindings for Pulp3"
|
26
|
-
s.description = "Generated Api bindings for Pulp3, built with the following components: pulpcore-3.0.
|
26
|
+
s.description = "Generated Api bindings for Pulp3, built with the following components: pulpcore-3.0.0b22 pulpcore-plugin-0.1.0b19 pulp_file-0.0.1b8 "
|
27
27
|
s.license = "GPLv2"
|
28
28
|
s.required_ruby_version = ">= 1.9"
|
29
29
|
|
metadata
CHANGED
@@ -1,197 +1,197 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Swagger-Codegen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-03-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - ~>
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '1.0'
|
20
|
-
- -
|
20
|
+
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 1.0.1
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- - ~>
|
27
|
+
- - "~>"
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: '1.0'
|
30
|
-
- -
|
30
|
+
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 1.0.1
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: json
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- - ~>
|
37
|
+
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
39
|
version: '2.1'
|
40
|
-
- -
|
40
|
+
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
42
|
version: 2.1.0
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- - ~>
|
47
|
+
- - "~>"
|
48
48
|
- !ruby/object:Gem::Version
|
49
49
|
version: '2.1'
|
50
|
-
- -
|
50
|
+
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
52
|
version: 2.1.0
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: rspec
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
|
-
- - ~>
|
57
|
+
- - "~>"
|
58
58
|
- !ruby/object:Gem::Version
|
59
59
|
version: '3.6'
|
60
|
-
- -
|
60
|
+
- - ">="
|
61
61
|
- !ruby/object:Gem::Version
|
62
62
|
version: 3.6.0
|
63
63
|
type: :development
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
|
-
- - ~>
|
67
|
+
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
69
|
version: '3.6'
|
70
|
-
- -
|
70
|
+
- - ">="
|
71
71
|
- !ruby/object:Gem::Version
|
72
72
|
version: 3.6.0
|
73
73
|
- !ruby/object:Gem::Dependency
|
74
74
|
name: vcr
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
76
76
|
requirements:
|
77
|
-
- - ~>
|
77
|
+
- - "~>"
|
78
78
|
- !ruby/object:Gem::Version
|
79
79
|
version: '3.0'
|
80
|
-
- -
|
80
|
+
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: 3.0.1
|
83
83
|
type: :development
|
84
84
|
prerelease: false
|
85
85
|
version_requirements: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
|
-
- - ~>
|
87
|
+
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: '3.0'
|
90
|
-
- -
|
90
|
+
- - ">="
|
91
91
|
- !ruby/object:Gem::Version
|
92
92
|
version: 3.0.1
|
93
93
|
- !ruby/object:Gem::Dependency
|
94
94
|
name: webmock
|
95
95
|
requirement: !ruby/object:Gem::Requirement
|
96
96
|
requirements:
|
97
|
-
- - ~>
|
97
|
+
- - "~>"
|
98
98
|
- !ruby/object:Gem::Version
|
99
99
|
version: '1.24'
|
100
|
-
- -
|
100
|
+
- - ">="
|
101
101
|
- !ruby/object:Gem::Version
|
102
102
|
version: 1.24.3
|
103
103
|
type: :development
|
104
104
|
prerelease: false
|
105
105
|
version_requirements: !ruby/object:Gem::Requirement
|
106
106
|
requirements:
|
107
|
-
- - ~>
|
107
|
+
- - "~>"
|
108
108
|
- !ruby/object:Gem::Version
|
109
109
|
version: '1.24'
|
110
|
-
- -
|
110
|
+
- - ">="
|
111
111
|
- !ruby/object:Gem::Version
|
112
112
|
version: 1.24.3
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
114
|
name: autotest
|
115
115
|
requirement: !ruby/object:Gem::Requirement
|
116
116
|
requirements:
|
117
|
-
- - ~>
|
117
|
+
- - "~>"
|
118
118
|
- !ruby/object:Gem::Version
|
119
119
|
version: '4.4'
|
120
|
-
- -
|
120
|
+
- - ">="
|
121
121
|
- !ruby/object:Gem::Version
|
122
122
|
version: 4.4.6
|
123
123
|
type: :development
|
124
124
|
prerelease: false
|
125
125
|
version_requirements: !ruby/object:Gem::Requirement
|
126
126
|
requirements:
|
127
|
-
- - ~>
|
127
|
+
- - "~>"
|
128
128
|
- !ruby/object:Gem::Version
|
129
129
|
version: '4.4'
|
130
|
-
- -
|
130
|
+
- - ">="
|
131
131
|
- !ruby/object:Gem::Version
|
132
132
|
version: 4.4.6
|
133
133
|
- !ruby/object:Gem::Dependency
|
134
134
|
name: autotest-rails-pure
|
135
135
|
requirement: !ruby/object:Gem::Requirement
|
136
136
|
requirements:
|
137
|
-
- - ~>
|
137
|
+
- - "~>"
|
138
138
|
- !ruby/object:Gem::Version
|
139
139
|
version: '4.1'
|
140
|
-
- -
|
140
|
+
- - ">="
|
141
141
|
- !ruby/object:Gem::Version
|
142
142
|
version: 4.1.2
|
143
143
|
type: :development
|
144
144
|
prerelease: false
|
145
145
|
version_requirements: !ruby/object:Gem::Requirement
|
146
146
|
requirements:
|
147
|
-
- - ~>
|
147
|
+
- - "~>"
|
148
148
|
- !ruby/object:Gem::Version
|
149
149
|
version: '4.1'
|
150
|
-
- -
|
150
|
+
- - ">="
|
151
151
|
- !ruby/object:Gem::Version
|
152
152
|
version: 4.1.2
|
153
153
|
- !ruby/object:Gem::Dependency
|
154
154
|
name: autotest-growl
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|
156
156
|
requirements:
|
157
|
-
- - ~>
|
157
|
+
- - "~>"
|
158
158
|
- !ruby/object:Gem::Version
|
159
159
|
version: '0.2'
|
160
|
-
- -
|
160
|
+
- - ">="
|
161
161
|
- !ruby/object:Gem::Version
|
162
162
|
version: 0.2.16
|
163
163
|
type: :development
|
164
164
|
prerelease: false
|
165
165
|
version_requirements: !ruby/object:Gem::Requirement
|
166
166
|
requirements:
|
167
|
-
- - ~>
|
167
|
+
- - "~>"
|
168
168
|
- !ruby/object:Gem::Version
|
169
169
|
version: '0.2'
|
170
|
-
- -
|
170
|
+
- - ">="
|
171
171
|
- !ruby/object:Gem::Version
|
172
172
|
version: 0.2.16
|
173
173
|
- !ruby/object:Gem::Dependency
|
174
174
|
name: autotest-fsevent
|
175
175
|
requirement: !ruby/object:Gem::Requirement
|
176
176
|
requirements:
|
177
|
-
- - ~>
|
177
|
+
- - "~>"
|
178
178
|
- !ruby/object:Gem::Version
|
179
179
|
version: '0.2'
|
180
|
-
- -
|
180
|
+
- - ">="
|
181
181
|
- !ruby/object:Gem::Version
|
182
182
|
version: 0.2.12
|
183
183
|
type: :development
|
184
184
|
prerelease: false
|
185
185
|
version_requirements: !ruby/object:Gem::Requirement
|
186
186
|
requirements:
|
187
|
-
- - ~>
|
187
|
+
- - "~>"
|
188
188
|
- !ruby/object:Gem::Version
|
189
189
|
version: '0.2'
|
190
|
-
- -
|
190
|
+
- - ">="
|
191
191
|
- !ruby/object:Gem::Version
|
192
192
|
version: 0.2.12
|
193
193
|
description: 'Generated Api bindings for Pulp3, built with the following components:
|
194
|
-
pulpcore-3.0.
|
194
|
+
pulpcore-3.0.0b22 pulpcore-plugin-0.1.0b19 pulp_file-0.0.1b8 '
|
195
195
|
email:
|
196
196
|
- ''
|
197
197
|
executables: []
|
@@ -209,7 +209,6 @@ files:
|
|
209
209
|
- docs/FileRemote.md
|
210
210
|
- docs/InlineResponse200.md
|
211
211
|
- docs/InlineResponse2001.md
|
212
|
-
- docs/InlineResponse20010.md
|
213
212
|
- docs/InlineResponse2002.md
|
214
213
|
- docs/InlineResponse2003.md
|
215
214
|
- docs/InlineResponse2004.md
|
@@ -227,7 +226,7 @@ files:
|
|
227
226
|
- docs/RepositoryVersion.md
|
228
227
|
- docs/RepositoryVersionCreate.md
|
229
228
|
- docs/Task.md
|
230
|
-
- docs/
|
229
|
+
- docs/Upload.md
|
231
230
|
- docs/Worker.md
|
232
231
|
- git_push.sh
|
233
232
|
- lib/zest.rb
|
@@ -243,7 +242,6 @@ files:
|
|
243
242
|
- lib/zest/models/file_remote.rb
|
244
243
|
- lib/zest/models/inline_response_200.rb
|
245
244
|
- lib/zest/models/inline_response_200_1.rb
|
246
|
-
- lib/zest/models/inline_response_200_10.rb
|
247
245
|
- lib/zest/models/inline_response_200_2.rb
|
248
246
|
- lib/zest/models/inline_response_200_3.rb
|
249
247
|
- lib/zest/models/inline_response_200_4.rb
|
@@ -260,7 +258,7 @@ files:
|
|
260
258
|
- lib/zest/models/repository_version.rb
|
261
259
|
- lib/zest/models/repository_version_create.rb
|
262
260
|
- lib/zest/models/task.rb
|
263
|
-
- lib/zest/models/
|
261
|
+
- lib/zest/models/upload.rb
|
264
262
|
- lib/zest/models/worker.rb
|
265
263
|
- lib/zest/version.rb
|
266
264
|
- spec/api/pulp_api_spec.rb
|
@@ -272,7 +270,6 @@ files:
|
|
272
270
|
- spec/models/file_content_spec.rb
|
273
271
|
- spec/models/file_publisher_spec.rb
|
274
272
|
- spec/models/file_remote_spec.rb
|
275
|
-
- spec/models/inline_response_200_10_spec.rb
|
276
273
|
- spec/models/inline_response_200_1_spec.rb
|
277
274
|
- spec/models/inline_response_200_2_spec.rb
|
278
275
|
- spec/models/inline_response_200_3_spec.rb
|
@@ -291,7 +288,7 @@ files:
|
|
291
288
|
- spec/models/repository_version_create_spec.rb
|
292
289
|
- spec/models/repository_version_spec.rb
|
293
290
|
- spec/models/task_spec.rb
|
294
|
-
- spec/models/
|
291
|
+
- spec/models/upload_spec.rb
|
295
292
|
- spec/models/worker_spec.rb
|
296
293
|
- spec/spec_helper.rb
|
297
294
|
- zest.gemspec
|
@@ -305,17 +302,17 @@ require_paths:
|
|
305
302
|
- lib
|
306
303
|
required_ruby_version: !ruby/object:Gem::Requirement
|
307
304
|
requirements:
|
308
|
-
- -
|
305
|
+
- - ">="
|
309
306
|
- !ruby/object:Gem::Version
|
310
307
|
version: '1.9'
|
311
308
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
312
309
|
requirements:
|
313
|
-
- -
|
310
|
+
- - ">="
|
314
311
|
- !ruby/object:Gem::Version
|
315
312
|
version: '0'
|
316
313
|
requirements: []
|
317
314
|
rubyforge_project:
|
318
|
-
rubygems_version: 2.
|
315
|
+
rubygems_version: 2.7.6
|
319
316
|
signing_key:
|
320
317
|
specification_version: 4
|
321
318
|
summary: Generated Api Bindings for Pulp3
|
@@ -323,31 +320,30 @@ test_files:
|
|
323
320
|
- spec/api/pulp_api_spec.rb
|
324
321
|
- spec/api_client_spec.rb
|
325
322
|
- spec/configuration_spec.rb
|
326
|
-
- spec/models/inline_response_200_2_spec.rb
|
327
|
-
- spec/models/worker_spec.rb
|
328
|
-
- spec/models/repository_version_spec.rb
|
329
|
-
- spec/models/file_publisher_spec.rb
|
330
|
-
- spec/models/user_spec.rb
|
331
|
-
- spec/models/file_remote_spec.rb
|
332
323
|
- spec/models/repository_sync_url_spec.rb
|
333
324
|
- spec/models/inline_response_200_1_spec.rb
|
334
|
-
- spec/models/
|
335
|
-
- spec/models/
|
336
|
-
- spec/models/
|
337
|
-
- spec/models/
|
325
|
+
- spec/models/inline_response_200_5_spec.rb
|
326
|
+
- spec/models/file_remote_spec.rb
|
327
|
+
- spec/models/repository_spec.rb
|
328
|
+
- spec/models/upload_spec.rb
|
338
329
|
- spec/models/inline_response_200_3_spec.rb
|
339
330
|
- spec/models/inline_response_200_9_spec.rb
|
340
|
-
- spec/models/
|
331
|
+
- spec/models/task_spec.rb
|
332
|
+
- spec/models/repository_version_create_spec.rb
|
333
|
+
- spec/models/inline_response_200_6_spec.rb
|
341
334
|
- spec/models/publication_spec.rb
|
335
|
+
- spec/models/artifact_spec.rb
|
336
|
+
- spec/models/inline_response_200_7_spec.rb
|
337
|
+
- spec/models/inline_response_200_2_spec.rb
|
338
|
+
- spec/models/inline_response_200_4_spec.rb
|
339
|
+
- spec/models/async_operation_response_spec.rb
|
340
|
+
- spec/models/file_publisher_spec.rb
|
341
|
+
- spec/models/inline_response_200_spec.rb
|
342
|
+
- spec/models/repository_version_spec.rb
|
342
343
|
- spec/models/file_content_spec.rb
|
343
344
|
- spec/models/distribution_spec.rb
|
344
|
-
- spec/models/
|
345
|
-
- spec/models/inline_response_200_10_spec.rb
|
346
|
-
- spec/models/inline_response_200_6_spec.rb
|
345
|
+
- spec/models/progress_report_spec.rb
|
347
346
|
- spec/models/inline_response_200_8_spec.rb
|
348
|
-
- spec/models/task_spec.rb
|
349
347
|
- spec/models/repository_publish_url_spec.rb
|
350
|
-
- spec/models/
|
351
|
-
- spec/models/inline_response_200_4_spec.rb
|
352
|
-
- spec/models/repository_spec.rb
|
348
|
+
- spec/models/worker_spec.rb
|
353
349
|
- spec/spec_helper.rb
|