cloudsmith-api 2.0.8 → 2.0.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fc47b92a97dd278a12d2f6eb3ed06ed644b4f9a6ca73775748fb45b978b8a3c8
4
- data.tar.gz: 9daf861f0d708e9a4d9e793a3d62aee5f748460692c2bbc68e366a954c02cc75
3
+ metadata.gz: b7c1e330a81a0eb1d4b513f96a302ea1f437fe4210c2f3b63fa895fcf5279c11
4
+ data.tar.gz: 5aad9aa8b27b720453e33bbf45c115ec209c58ce2d333275549e8d416757afff
5
5
  SHA512:
6
- metadata.gz: 22bb52e7e99eb3a083a128990067d95a2f3e63f531d1c2e06c8bac2b844c2eefc81fb8145a00c325610db75d465b12949cc4d86c0f74e220647c3384a131c9df
7
- data.tar.gz: 3e6cd46fdd4ff1d775d512c098402ccb427803919bff5252061472eb36a1f3db73721f3034e2ba30fa3fdd02582b9d99deaa24b1550cd35245626e0547b4cd3e
6
+ metadata.gz: 100fbefeaa2d7fe78a269dda195d1a9b8f5e99ba79d090f65d3c02867719eff739d33d99312a57060761d7c682ae721f20bad7907a8d31994f089ca96c91e2dc
7
+ data.tar.gz: acb9059d092f67d25e31e4fb1a8c52694d106ac55b8ebc8efc06d9f1e2284cdbe83d8610482b05f9514ce0262a2ca6c4cbbc807cf403a82558017a2f28efe1c8
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cloudsmith-api (2.0.8)
4
+ cloudsmith-api (2.0.9)
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.8
10
+ - Package version: 2.0.9
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.8.gem
27
+ gem install ./cloudsmith-api-2.0.9.gem
28
28
  ```
29
- (for development, run `gem install --dev ./cloudsmith-api-2.0.8.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./cloudsmith-api-2.0.9.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.8'
35
+ gem 'cloudsmith-api', '~> 2.0.9'
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.8",
11
+ "gemVersion": "2.0.9",
12
12
  "hideGenerationTimestamp": true,
13
13
  "moduleName": "CloudsmithApi",
14
14
  "sortParamsByRequiredFlag": true
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.354.0']
7
+ **version** | **String** | The current version for the Cloudsmith service. | [optional] [default to '1.355.2']
8
8
 
9
9
 
@@ -29,28 +29,6 @@ class CranPackageUploadRequest
29
29
  # A comma-separated values list of tags to add to the package.
30
30
  attr_accessor :tags
31
31
 
32
- class EnumAttributeValidator
33
- attr_reader :datatype
34
- attr_reader :allowable_values
35
-
36
- def initialize(datatype, allowable_values)
37
- @allowable_values = allowable_values.map do |value|
38
- case datatype.to_s
39
- when /Integer/i
40
- value.to_i
41
- when /Float/i
42
- value.to_f
43
- else
44
- value
45
- end
46
- end
47
- end
48
-
49
- def valid?(value)
50
- !value || allowable_values.include?(value)
51
- end
52
- end
53
-
54
32
  # Attribute mapping from ruby-style variable name to JSON key.
55
33
  def self.attribute_map
56
34
  {
@@ -116,22 +94,10 @@ class CranPackageUploadRequest
116
94
  # Check to see if the all the properties in the model are valid
117
95
  # @return true if the model is valid
118
96
  def valid?
119
- architecture_validator = EnumAttributeValidator.new('String', ['arm64', 'x86_64'])
120
- return false unless architecture_validator.valid?(@architecture)
121
97
  return false if @package_file.nil?
122
98
  true
123
99
  end
124
100
 
125
- # Custom attribute writer method checking allowed values (enum).
126
- # @param [Object] architecture Object to be assigned
127
- def architecture=(architecture)
128
- validator = EnumAttributeValidator.new('String', ['arm64', 'x86_64'])
129
- unless validator.valid?(architecture)
130
- fail ArgumentError, 'invalid value for "architecture", must be one of #{validator.allowable_values}.'
131
- end
132
- @architecture = architecture
133
- end
134
-
135
101
  # Checks equality by comparing each attribute.
136
102
  # @param [Object] Object to be compared
137
103
  def ==(o)
@@ -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.354.0'
56
+ self.version = '1.355.2'
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.8'
14
+ VERSION = '2.0.9'
15
15
  end
@@ -35,10 +35,6 @@ describe 'CranPackageUploadRequest' do
35
35
  describe 'test attribute "architecture"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["arm64", "x86_64"])
39
- # validator.allowable_values.each do |value|
40
- # expect { @instance.architecture = value }.not_to raise_error
41
- # end
42
38
  end
43
39
  end
44
40
 
@@ -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.21/ext/fsevent
2
- /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20240214-893-1oplyun.rb extconf.rb
2
+ /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20240219-891-1e1orhc.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.21/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/bigdecimal-3.1.6/ext/bigdecimal
2
- /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20240214-893-i5k20u.rb extconf.rb
2
+ /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20240219-891-1dz2jo9.rb extconf.rb
3
3
  checking for __builtin_clz()... yes
4
4
  checking for __builtin_clzl()... yes
5
5
  checking for __builtin_clzll()... yes
@@ -154,4 +154,4 @@ linking shared-object bigdecimal.so
154
154
 
155
155
  current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.6/ext/bigdecimal
156
156
  make DESTDIR\= install
157
- /usr/bin/install -c -m 0755 bigdecimal.so ./.gem.20240214-893-1bt8ytw
157
+ /usr/bin/install -c -m 0755 bigdecimal.so ./.gem.20240219-891-5kmaot
@@ -111,7 +111,7 @@ checked program was:
111
111
  have_func: checking for _lzcnt_u32() in x86intrin.h... -------------------- no
112
112
 
113
113
  "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"
114
- /usr/bin/ld: /tmp/ccLAnLSJ.o: in function `t':
114
+ /usr/bin/ld: /tmp/ccoidoho.o: in function `t':
115
115
  /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.6/ext/bigdecimal/conftest.c:16: undefined reference to `_lzcnt_u32'
116
116
  collect2: error: ld returned 1 exit status
117
117
  checked program was:
@@ -173,7 +173,7 @@ checked program was:
173
173
  have_func: checking for _lzcnt_u64() in x86intrin.h... -------------------- no
174
174
 
175
175
  "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"
176
- /usr/bin/ld: /tmp/ccQuYSkw.o: in function `t':
176
+ /usr/bin/ld: /tmp/cc3IXEsT.o: in function `t':
177
177
  /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.6/ext/bigdecimal/conftest.c:16: undefined reference to `_lzcnt_u64'
178
178
  collect2: error: ld returned 1 exit status
179
179
  checked program was:
@@ -577,7 +577,7 @@ checked program was:
577
577
  /* end */
578
578
 
579
579
  "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"
580
- /usr/bin/ld: /tmp/cc6PLZwH.o: in function `t':
580
+ /usr/bin/ld: /tmp/ccWKQyis.o: in function `t':
581
581
  /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.6/ext/bigdecimal/conftest.c:17: undefined reference to `__builtin_isfinite'
582
582
  collect2: error: ld returned 1 exit status
583
583
  checked program was:
@@ -785,7 +785,7 @@ checked program was:
785
785
  /* end */
786
786
 
787
787
  "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"
788
- /usr/bin/ld: /tmp/ccmmRFVF.o: in function `t':
788
+ /usr/bin/ld: /tmp/cc2ROny9.o: in function `t':
789
789
  /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.6/ext/bigdecimal/conftest.c:17: undefined reference to `rb_opts_exception_p'
790
790
  collect2: error: ld returned 1 exit status
791
791
  checked program was:
@@ -844,7 +844,7 @@ checked program was:
844
844
  /* end */
845
845
 
846
846
  "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"
847
- /usr/bin/ld: /tmp/ccnYeGcv.o: in function `t':
847
+ /usr/bin/ld: /tmp/ccADK5tj.o: in function `t':
848
848
  /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.6/ext/bigdecimal/conftest.c:17: undefined reference to `rb_category_warn'
849
849
  collect2: error: ld returned 1 exit status
850
850
  checked program was:
@@ -1,5 +1,5 @@
1
1
  current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/ffi-1.16.3/ext/ffi_c
2
- /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20240214-893-1ipsoh6.rb extconf.rb
2
+ /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20240219-891-hlilpu.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
@@ -41,4 +41,4 @@ linking shared-object ffi_c.so
41
41
 
42
42
  current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/ffi-1.16.3/ext/ffi_c
43
43
  make DESTDIR\= install
44
- /usr/bin/install -c -m 0755 ffi_c.so ./.gem.20240214-893-1pkiz2k
44
+ /usr/bin/install -c -m 0755 ffi_c.so ./.gem.20240219-891-6zxgl9
@@ -247,7 +247,7 @@ checked program was:
247
247
  /* end */
248
248
 
249
249
  "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 -lffi -lffi -Wl,-rpath,/usr/local/lib -L/usr/local/lib -lruby -lffi -lffi -lm -lc"
250
- /usr/bin/ld: /tmp/cc544RBH.o: in function `t':
250
+ /usr/bin/ld: /tmp/ccWbKOrx.o: in function `t':
251
251
  /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/ffi-1.16.3/ext/ffi_c/conftest.c:15: undefined reference to `rb_gc_mark_movable'
252
252
  collect2: error: ld returned 1 exit status
253
253
  checked program was:
@@ -1,5 +1,5 @@
1
1
  current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/json-2.7.1/ext/json
2
- /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20240214-893-1yym9h2.rb extconf.rb
2
+ /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20240219-891-jkdzo0.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.7.1/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/ccrAyM6o.o: in function `t':
103
+ /usr/bin/ld: /tmp/ccXxihZp.o: in function `t':
104
104
  /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/json-2.7.1/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.20240214-893-1bt8ytw
35
- sitelibdir = $(DESTDIR)./.gem.20240214-893-1bt8ytw
34
+ sitearchdir = $(DESTDIR)./.gem.20240219-891-5kmaot
35
+ sitelibdir = $(DESTDIR)./.gem.20240219-891-5kmaot
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.20240214-893-1pkiz2k
35
- sitelibdir = $(DESTDIR)./.gem.20240214-893-1pkiz2k
34
+ sitearchdir = $(DESTDIR)./.gem.20240219-891-6zxgl9
35
+ sitelibdir = $(DESTDIR)./.gem.20240219-891-6zxgl9
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.20240214-893-178gnsu
35
- sitelibdir = $(DESTDIR)./.gem.20240214-893-178gnsu
34
+ sitearchdir = $(DESTDIR)./.gem.20240219-891-17vcf87
35
+ sitelibdir = $(DESTDIR)./.gem.20240219-891-17vcf87
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.20240214-893-vq4ayj
35
- sitelibdir = $(DESTDIR)./.gem.20240214-893-vq4ayj
34
+ sitearchdir = $(DESTDIR)./.gem.20240219-891-1jsek3j
35
+ sitelibdir = $(DESTDIR)./.gem.20240219-891-1jsek3j
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.20240214-893-8vlxhg
35
- sitelibdir = $(DESTDIR)./.gem.20240214-893-8vlxhg
34
+ sitearchdir = $(DESTDIR)./.gem.20240219-891-19glnjg
35
+ sitelibdir = $(DESTDIR)./.gem.20240219-891-19glnjg
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.8
4
+ version: 2.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cloudsmith Ltd
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-14 00:00:00.000000000 Z
11
+ date: 2024-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus