cloudsmith-api 2.0.4 → 2.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 409008601d32dc7995336e188ae63cbabd02413092455dd8e7055704709e42b0
4
- data.tar.gz: 10dfc97154ea0ca1be17c05e3d72a4abe7bb22306c8ae0b217d6abc01488102b
3
+ metadata.gz: f78435b79010e25715ed0dfabce839257d9223171cf0501b4996b5bcdcc4fb91
4
+ data.tar.gz: d047cdcad82e9febeaf32bcb508d0931e49b83500c154e7eaa3f35829653c37b
5
5
  SHA512:
6
- metadata.gz: 46d96f8e6087d5cd2b312542df94e3db2a2719a6d051ca44f37c62f626ee968ee7b9e314e362b18fe21edbbd18ce1c011c44d6f95948432742476e618abe1a67
7
- data.tar.gz: f131a339b42234ccd1c01f11b5ba6b9bd1355b2ad0d1f0f4cd96ab46e4b3ac9e776cea82ddeb772ec3d49103ada99ff7342417c20ab6b9ad1ac248a2a89ad255
6
+ metadata.gz: a114257e72c841eee42eab28c25378d9ebb1146c4d48a7560809ce49a30bb53921c48077d7c403fc1642217f54b5767d1675380d95336959bc2d17c82abf1968
7
+ data.tar.gz: bffab998e51c33055266bde0a60857d854d32c08394ebbed8a170799fafa885ebd79b36189ebff99e75b0bb5ee07ac02d513471d0e95077b615f65d9e69052f8
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cloudsmith-api (2.0.4)
4
+ cloudsmith-api (2.0.5)
5
5
  addressable (~> 2.3, >= 2.3.0)
6
6
  json (~> 2.1, >= 2.1.0)
7
7
  typhoeus (~> 1.0, >= 1.0.1)
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.4
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.4.gem
27
+ gem install ./cloudsmith-api-2.0.5.gem
28
28
  ```
29
- (for development, run `gem install --dev ./cloudsmith-api-2.0.4.gem` to install the development dependencies)
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.4'
35
+ gem 'cloudsmith-api', '~> 2.0.5'
36
36
 
37
37
  ### Install from Git
38
38
 
data/build.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "gemName": "cloudsmith-api",
9
9
  "gemRequiredRubyVersion": ">= 1.9",
10
10
  "gemSummary": "Cloudsmith API",
11
- "gemVersion": "2.0.4",
11
+ "gemVersion": "2.0.5",
12
12
  "hideGenerationTimestamp": true,
13
13
  "moduleName": "CloudsmithApi",
14
14
  "sortParamsByRequiredFlag": true
@@ -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.273.0']
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
@@ -53,7 +53,7 @@ class StatusBasic
53
53
  if attributes.has_key?(:'version')
54
54
  self.version = attributes[:'version']
55
55
  else
56
- self.version = '1.273.0'
56
+ self.version = '1.275.0'
57
57
  end
58
58
  end
59
59
 
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.26
11
11
  =end
12
12
 
13
13
  module CloudsmithApi
14
- VERSION = '2.0.4'
14
+ VERSION = '2.0.5'
15
15
  end
@@ -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
@@ -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 ./siteconf20230524-895-qa9b1k.rb extconf.rb
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 ./siteconf20230524-895-1qj1azu.rb extconf.rb
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.20230524-895-aigxfv
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 ./siteconf20230524-895-81sggl.rb extconf.rb
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/ccQMXAVt.o: in function `t':
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.20230524-895-aigxfv
35
- sitelibdir = $(DESTDIR)./.gem.20230524-895-aigxfv
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.20230524-895-k06xxg
35
- sitelibdir = $(DESTDIR)./.gem.20230524-895-k06xxg
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.20230524-895-1861qr6
35
- sitelibdir = $(DESTDIR)./.gem.20230524-895-1861qr6
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.20230524-895-13d6kbo
35
- sitelibdir = $(DESTDIR)./.gem.20230524-895-13d6kbo
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
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-24 00:00:00.000000000 Z
11
+ date: 2023-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus