cloudsmith-api 2.0.4 → 2.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +4 -4
- data/build.json +1 -1
- data/docs/MavenPackageUploadRequest.md +1 -0
- data/docs/StatusBasic.md +1 -1
- data/lib/cloudsmith-api/models/maven_package_upload_request.rb +11 -1
- data/lib/cloudsmith-api/models/status_basic.rb +1 -1
- data/lib/cloudsmith-api/version.rb +1 -1
- data/spec/models/maven_package_upload_request_spec.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.2.20/gem_make.out +1 -1
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.3/gem_make.out +1 -1
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.3/mkmf.log +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Makefile +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.3/ext/json/Makefile +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.3/ext/json/ext/generator/Makefile +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.3/ext/json/ext/parser/Makefile +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f78435b79010e25715ed0dfabce839257d9223171cf0501b4996b5bcdcc4fb91
|
4
|
+
data.tar.gz: d047cdcad82e9febeaf32bcb508d0931e49b83500c154e7eaa3f35829653c37b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a114257e72c841eee42eab28c25378d9ebb1146c4d48a7560809ce49a30bb53921c48077d7c403fc1642217f54b5767d1675380d95336959bc2d17c82abf1968
|
7
|
+
data.tar.gz: bffab998e51c33055266bde0a60857d854d32c08394ebbed8a170799fafa885ebd79b36189ebff99e75b0bb5ee07ac02d513471d0e95077b615f65d9e69052f8
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -7,7 +7,7 @@ The API to the Cloudsmith Service
|
|
7
7
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
8
8
|
|
9
9
|
- API version: v1
|
10
|
-
- Package version: 2.0.
|
10
|
+
- Package version: 2.0.5
|
11
11
|
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://help.cloudsmith.io](https://help.cloudsmith.io)
|
13
13
|
|
@@ -24,15 +24,15 @@ gem build cloudsmith-api.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./cloudsmith-api-2.0.
|
27
|
+
gem install ./cloudsmith-api-2.0.5.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./cloudsmith-api-2.0.
|
29
|
+
(for development, run `gem install --dev ./cloudsmith-api-2.0.5.gem` to install the development dependencies)
|
30
30
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
32
32
|
|
33
33
|
Finally add this to the Gemfile:
|
34
34
|
|
35
|
-
gem 'cloudsmith-api', '~> 2.0.
|
35
|
+
gem 'cloudsmith-api', '~> 2.0.5'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
data/build.json
CHANGED
@@ -5,6 +5,7 @@ Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
6
6
|
**artifact_id** | **String** | The ID of the artifact. | [optional]
|
7
7
|
**group_id** | **String** | Artifact's group ID. | [optional]
|
8
|
+
**ivy_file** | **String** | The ivy file is an XML file describing the dependencies of the project. | [optional]
|
8
9
|
**javadoc_file** | **String** | Adds bundled Java documentation to the Maven package | [optional]
|
9
10
|
**package_file** | **String** | The primary file for the package. |
|
10
11
|
**packaging** | **String** | Artifact's Maven packaging type. | [optional]
|
data/docs/StatusBasic.md
CHANGED
@@ -4,6 +4,6 @@
|
|
4
4
|
Name | Type | Description | Notes
|
5
5
|
------------ | ------------- | ------------- | -------------
|
6
6
|
**detail** | **String** | The message describing the state of the API. | [optional] [default to 'Cloudsmith API is operational.']
|
7
|
-
**version** | **String** | The current version for the Cloudsmith service. | [optional] [default to '1.
|
7
|
+
**version** | **String** | The current version for the Cloudsmith service. | [optional] [default to '1.275.0']
|
8
8
|
|
9
9
|
|
@@ -20,6 +20,9 @@ class MavenPackageUploadRequest
|
|
20
20
|
# Artifact's group ID.
|
21
21
|
attr_accessor :group_id
|
22
22
|
|
23
|
+
# The ivy file is an XML file describing the dependencies of the project.
|
24
|
+
attr_accessor :ivy_file
|
25
|
+
|
23
26
|
# Adds bundled Java documentation to the Maven package
|
24
27
|
attr_accessor :javadoc_file
|
25
28
|
|
@@ -52,6 +55,7 @@ class MavenPackageUploadRequest
|
|
52
55
|
{
|
53
56
|
:'artifact_id' => :'artifact_id',
|
54
57
|
:'group_id' => :'group_id',
|
58
|
+
:'ivy_file' => :'ivy_file',
|
55
59
|
:'javadoc_file' => :'javadoc_file',
|
56
60
|
:'package_file' => :'package_file',
|
57
61
|
:'packaging' => :'packaging',
|
@@ -69,6 +73,7 @@ class MavenPackageUploadRequest
|
|
69
73
|
{
|
70
74
|
:'artifact_id' => :'String',
|
71
75
|
:'group_id' => :'String',
|
76
|
+
:'ivy_file' => :'String',
|
72
77
|
:'javadoc_file' => :'String',
|
73
78
|
:'package_file' => :'String',
|
74
79
|
:'packaging' => :'String',
|
@@ -97,6 +102,10 @@ class MavenPackageUploadRequest
|
|
97
102
|
self.group_id = attributes[:'group_id']
|
98
103
|
end
|
99
104
|
|
105
|
+
if attributes.has_key?(:'ivy_file')
|
106
|
+
self.ivy_file = attributes[:'ivy_file']
|
107
|
+
end
|
108
|
+
|
100
109
|
if attributes.has_key?(:'javadoc_file')
|
101
110
|
self.javadoc_file = attributes[:'javadoc_file']
|
102
111
|
end
|
@@ -159,6 +168,7 @@ class MavenPackageUploadRequest
|
|
159
168
|
self.class == o.class &&
|
160
169
|
artifact_id == o.artifact_id &&
|
161
170
|
group_id == o.group_id &&
|
171
|
+
ivy_file == o.ivy_file &&
|
162
172
|
javadoc_file == o.javadoc_file &&
|
163
173
|
package_file == o.package_file &&
|
164
174
|
packaging == o.packaging &&
|
@@ -179,7 +189,7 @@ class MavenPackageUploadRequest
|
|
179
189
|
# Calculates hash code according to all attributes.
|
180
190
|
# @return [Fixnum] Hash code
|
181
191
|
def hash
|
182
|
-
[artifact_id, group_id, javadoc_file, package_file, packaging, pom_file, republish, sources_file, tags, tests_file, version].hash
|
192
|
+
[artifact_id, group_id, ivy_file, javadoc_file, package_file, packaging, pom_file, republish, sources_file, tags, tests_file, version].hash
|
183
193
|
end
|
184
194
|
|
185
195
|
# Builds the object from hash
|
@@ -44,6 +44,12 @@ describe 'MavenPackageUploadRequest' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
+
describe 'test attribute "ivy_file"' 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
|
+
|
47
53
|
describe 'test attribute "javadoc_file"' do
|
48
54
|
it 'should work' do
|
49
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.2.20/gem_make.out
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.20/ext/fsevent
|
2
|
-
/usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./
|
2
|
+
/usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20230525-903-32ylbp.rb extconf.rb
|
3
3
|
|
4
4
|
current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.20/ext/fsevent
|
5
5
|
make DESTDIR\= clean
|
@@ -1,5 +1,5 @@
|
|
1
1
|
current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c
|
2
|
-
/usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./
|
2
|
+
/usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20230525-903-qv743m.rb extconf.rb
|
3
3
|
checking for ffi_prep_closure_loc() in -lffi... yes
|
4
4
|
checking for ffi_prep_cif_var()... yes
|
5
5
|
checking for ffi_raw_call()... yes
|
@@ -40,4 +40,4 @@ linking shared-object ffi_c.so
|
|
40
40
|
|
41
41
|
current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c
|
42
42
|
make DESTDIR\= install
|
43
|
-
/usr/bin/install -c -m 0755 ffi_c.so ./.gem.
|
43
|
+
/usr/bin/install -c -m 0755 ffi_c.so ./.gem.20230525-903-16h2vrj
|
@@ -1,5 +1,5 @@
|
|
1
1
|
current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/json-2.6.3/ext/json
|
2
|
-
/usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./
|
2
|
+
/usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20230525-903-1ol50gp.rb extconf.rb
|
3
3
|
creating Makefile
|
4
4
|
|
5
5
|
current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/json-2.6.3/ext/json
|
@@ -100,7 +100,7 @@ checked program was:
|
|
100
100
|
/* end */
|
101
101
|
|
102
102
|
"gcc -o conftest -I/usr/local/include/ruby-2.6.0/x86_64-linux -I/usr/local/include/ruby-2.6.0/ruby/backward -I/usr/local/include/ruby-2.6.0 -I. -O3 -ggdb3 -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wrestrict -Wwrite-strings -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -fPIC conftest.c -L. -L/usr/local/lib -Wl,-rpath,/usr/local/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-rpath,/usr/local/lib -L/usr/local/lib -lruby -lm -lc"
|
103
|
-
/usr/bin/ld: /tmp/
|
103
|
+
/usr/bin/ld: /tmp/cc3If6D1.o: in function `t':
|
104
104
|
/home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/json-2.6.3/ext/json/ext/parser/conftest.c:17: undefined reference to `rb_enc_interned_str'
|
105
105
|
collect2: error: ld returned 1 exit status
|
106
106
|
checked program was:
|
@@ -31,8 +31,8 @@ rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME)
|
|
31
31
|
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
32
32
|
vendorlibdir = $(vendordir)/$(ruby_version)
|
33
33
|
vendordir = $(rubylibprefix)/vendor_ruby
|
34
|
-
sitearchdir = $(DESTDIR)./.gem.
|
35
|
-
sitelibdir = $(DESTDIR)./.gem.
|
34
|
+
sitearchdir = $(DESTDIR)./.gem.20230525-903-16h2vrj
|
35
|
+
sitelibdir = $(DESTDIR)./.gem.20230525-903-16h2vrj
|
36
36
|
sitedir = $(rubylibprefix)/site_ruby
|
37
37
|
rubyarchdir = $(rubylibdir)/$(arch)
|
38
38
|
rubylibdir = $(rubylibprefix)/$(ruby_version)
|
@@ -31,8 +31,8 @@ rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME)
|
|
31
31
|
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
32
32
|
vendorlibdir = $(vendordir)/$(ruby_version)
|
33
33
|
vendordir = $(rubylibprefix)/vendor_ruby
|
34
|
-
sitearchdir = $(DESTDIR)./.gem.
|
35
|
-
sitelibdir = $(DESTDIR)./.gem.
|
34
|
+
sitearchdir = $(DESTDIR)./.gem.20230525-903-1sxrljp
|
35
|
+
sitelibdir = $(DESTDIR)./.gem.20230525-903-1sxrljp
|
36
36
|
sitedir = $(rubylibprefix)/site_ruby
|
37
37
|
rubyarchdir = $(rubylibdir)/$(arch)
|
38
38
|
rubylibdir = $(rubylibprefix)/$(ruby_version)
|
@@ -31,8 +31,8 @@ rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME)
|
|
31
31
|
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
32
32
|
vendorlibdir = $(vendordir)/$(ruby_version)
|
33
33
|
vendordir = $(rubylibprefix)/vendor_ruby
|
34
|
-
sitearchdir = $(DESTDIR)./.gem.
|
35
|
-
sitelibdir = $(DESTDIR)./.gem.
|
34
|
+
sitearchdir = $(DESTDIR)./.gem.20230525-903-1horg1r
|
35
|
+
sitelibdir = $(DESTDIR)./.gem.20230525-903-1horg1r
|
36
36
|
sitedir = $(rubylibprefix)/site_ruby
|
37
37
|
rubyarchdir = $(rubylibdir)/$(arch)
|
38
38
|
rubylibdir = $(rubylibprefix)/$(ruby_version)
|
@@ -31,8 +31,8 @@ rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME)
|
|
31
31
|
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
32
32
|
vendorlibdir = $(vendordir)/$(ruby_version)
|
33
33
|
vendordir = $(rubylibprefix)/vendor_ruby
|
34
|
-
sitearchdir = $(DESTDIR)./.gem.
|
35
|
-
sitelibdir = $(DESTDIR)./.gem.
|
34
|
+
sitearchdir = $(DESTDIR)./.gem.20230525-903-avve7i
|
35
|
+
sitelibdir = $(DESTDIR)./.gem.20230525-903-avve7i
|
36
36
|
sitedir = $(rubylibprefix)/site_ruby
|
37
37
|
rubyarchdir = $(rubylibdir)/$(arch)
|
38
38
|
rubylibdir = $(rubylibprefix)/$(ruby_version)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cloudsmith-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cloudsmith Ltd
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-05-
|
11
|
+
date: 2023-05-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|