cloudsmith-api 2.0.27 → 2.0.29

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 (123) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +4 -4
  4. data/build.json +1 -1
  5. data/docs/ConnectedRepository.md +3 -1
  6. data/docs/ConnectedRepositoryRequest.md +1 -1
  7. data/docs/ConnectedRepositoryRequestPatch.md +1 -1
  8. data/docs/FormatSupportUpstream.md +1 -0
  9. data/docs/OrganizationSAMLAuth.md +2 -0
  10. data/docs/OrganizationSAMLAuthRequestPatch.md +2 -0
  11. data/docs/OrgsApi.md +3 -1
  12. data/docs/PackagesApi.md +22 -6
  13. data/docs/ReposApi.md +2 -2
  14. data/docs/Repository.md +1 -0
  15. data/docs/RepositoryCreate.md +1 -0
  16. data/docs/RepositoryEd25519Key.md +1 -0
  17. data/lib/cloudsmith-api/api/orgs_api.rb +3 -0
  18. data/lib/cloudsmith-api/api/packages_api.rb +15 -0
  19. data/lib/cloudsmith-api/api/repos_api.rb +2 -2
  20. data/lib/cloudsmith-api/models/cargo_upstream.rb +2 -2
  21. data/lib/cloudsmith-api/models/cargo_upstream_request.rb +2 -2
  22. data/lib/cloudsmith-api/models/cargo_upstream_request_patch.rb +2 -2
  23. data/lib/cloudsmith-api/models/composer_upstream.rb +2 -2
  24. data/lib/cloudsmith-api/models/composer_upstream_request.rb +2 -2
  25. data/lib/cloudsmith-api/models/composer_upstream_request_patch.rb +2 -2
  26. data/lib/cloudsmith-api/models/conda_upstream.rb +2 -2
  27. data/lib/cloudsmith-api/models/conda_upstream_request.rb +2 -2
  28. data/lib/cloudsmith-api/models/conda_upstream_request_patch.rb +2 -2
  29. data/lib/cloudsmith-api/models/connected_repository.rb +57 -2
  30. data/lib/cloudsmith-api/models/connected_repository_request.rb +1 -1
  31. data/lib/cloudsmith-api/models/connected_repository_request_patch.rb +1 -1
  32. data/lib/cloudsmith-api/models/cran_upstream.rb +2 -2
  33. data/lib/cloudsmith-api/models/cran_upstream_request.rb +2 -2
  34. data/lib/cloudsmith-api/models/cran_upstream_request_patch.rb +2 -2
  35. data/lib/cloudsmith-api/models/dart_upstream.rb +2 -2
  36. data/lib/cloudsmith-api/models/dart_upstream_request.rb +2 -2
  37. data/lib/cloudsmith-api/models/dart_upstream_request_patch.rb +2 -2
  38. data/lib/cloudsmith-api/models/deb_upstream.rb +2 -2
  39. data/lib/cloudsmith-api/models/deb_upstream_request.rb +2 -2
  40. data/lib/cloudsmith-api/models/deb_upstream_request_patch.rb +2 -2
  41. data/lib/cloudsmith-api/models/format_support_upstream.rb +16 -1
  42. data/lib/cloudsmith-api/models/generic_upstream.rb +2 -2
  43. data/lib/cloudsmith-api/models/generic_upstream_request.rb +2 -2
  44. data/lib/cloudsmith-api/models/generic_upstream_request_patch.rb +2 -2
  45. data/lib/cloudsmith-api/models/helm_upstream.rb +2 -2
  46. data/lib/cloudsmith-api/models/helm_upstream_request.rb +2 -2
  47. data/lib/cloudsmith-api/models/helm_upstream_request_patch.rb +2 -2
  48. data/lib/cloudsmith-api/models/hex_upstream.rb +2 -2
  49. data/lib/cloudsmith-api/models/hex_upstream_request.rb +2 -2
  50. data/lib/cloudsmith-api/models/hex_upstream_request_patch.rb +2 -2
  51. data/lib/cloudsmith-api/models/npm_upstream.rb +2 -2
  52. data/lib/cloudsmith-api/models/npm_upstream_request.rb +2 -2
  53. data/lib/cloudsmith-api/models/npm_upstream_request_patch.rb +2 -2
  54. data/lib/cloudsmith-api/models/nuget_upstream.rb +2 -2
  55. data/lib/cloudsmith-api/models/nuget_upstream_request.rb +2 -2
  56. data/lib/cloudsmith-api/models/nuget_upstream_request_patch.rb +2 -2
  57. data/lib/cloudsmith-api/models/organization_saml_auth.rb +24 -4
  58. data/lib/cloudsmith-api/models/organization_saml_auth_request_patch.rb +24 -4
  59. data/lib/cloudsmith-api/models/python_upstream.rb +2 -2
  60. data/lib/cloudsmith-api/models/python_upstream_request.rb +2 -2
  61. data/lib/cloudsmith-api/models/python_upstream_request_patch.rb +2 -2
  62. data/lib/cloudsmith-api/models/repository.rb +11 -1
  63. data/lib/cloudsmith-api/models/repository_create.rb +11 -1
  64. data/lib/cloudsmith-api/models/repository_ed25519_key.rb +14 -4
  65. data/lib/cloudsmith-api/version.rb +1 -1
  66. data/spec/api/orgs_api_spec.rb +1 -0
  67. data/spec/api/packages_api_spec.rb +5 -0
  68. data/spec/api/repos_api_spec.rb +1 -1
  69. data/spec/models/cargo_upstream_request_patch_spec.rb +1 -1
  70. data/spec/models/cargo_upstream_request_spec.rb +1 -1
  71. data/spec/models/cargo_upstream_spec.rb +1 -1
  72. data/spec/models/composer_upstream_request_patch_spec.rb +1 -1
  73. data/spec/models/composer_upstream_request_spec.rb +1 -1
  74. data/spec/models/composer_upstream_spec.rb +1 -1
  75. data/spec/models/conda_upstream_request_patch_spec.rb +1 -1
  76. data/spec/models/conda_upstream_request_spec.rb +1 -1
  77. data/spec/models/conda_upstream_spec.rb +1 -1
  78. data/spec/models/connected_repository_spec.rb +16 -0
  79. data/spec/models/cran_upstream_request_patch_spec.rb +1 -1
  80. data/spec/models/cran_upstream_request_spec.rb +1 -1
  81. data/spec/models/cran_upstream_spec.rb +1 -1
  82. data/spec/models/dart_upstream_request_patch_spec.rb +1 -1
  83. data/spec/models/dart_upstream_request_spec.rb +1 -1
  84. data/spec/models/dart_upstream_spec.rb +1 -1
  85. data/spec/models/deb_upstream_request_patch_spec.rb +1 -1
  86. data/spec/models/deb_upstream_request_spec.rb +1 -1
  87. data/spec/models/deb_upstream_spec.rb +1 -1
  88. data/spec/models/format_support_upstream_spec.rb +6 -0
  89. data/spec/models/generic_upstream_request_patch_spec.rb +1 -1
  90. data/spec/models/generic_upstream_request_spec.rb +1 -1
  91. data/spec/models/generic_upstream_spec.rb +1 -1
  92. data/spec/models/helm_upstream_request_patch_spec.rb +1 -1
  93. data/spec/models/helm_upstream_request_spec.rb +1 -1
  94. data/spec/models/helm_upstream_spec.rb +1 -1
  95. data/spec/models/hex_upstream_request_patch_spec.rb +1 -1
  96. data/spec/models/hex_upstream_request_spec.rb +1 -1
  97. data/spec/models/hex_upstream_spec.rb +1 -1
  98. data/spec/models/npm_upstream_request_patch_spec.rb +1 -1
  99. data/spec/models/npm_upstream_request_spec.rb +1 -1
  100. data/spec/models/npm_upstream_spec.rb +1 -1
  101. data/spec/models/nuget_upstream_request_patch_spec.rb +1 -1
  102. data/spec/models/nuget_upstream_request_spec.rb +1 -1
  103. data/spec/models/nuget_upstream_spec.rb +1 -1
  104. data/spec/models/organization_saml_auth_request_patch_spec.rb +12 -0
  105. data/spec/models/organization_saml_auth_spec.rb +12 -0
  106. data/spec/models/python_upstream_request_patch_spec.rb +1 -1
  107. data/spec/models/python_upstream_request_spec.rb +1 -1
  108. data/spec/models/python_upstream_spec.rb +1 -1
  109. data/spec/models/repository_create_spec.rb +6 -0
  110. data/spec/models/repository_ed25519_key_spec.rb +6 -0
  111. data/spec/models/repository_spec.rb +6 -0
  112. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.3.2/gem_make.out +1 -1
  113. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/bigdecimal-4.1.2/gem_make.out +2 -2
  114. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/bigdecimal-4.1.2/mkmf.log +4 -4
  115. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.17.4/gem_make.out +2 -2
  116. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.17.4/mkmf.log +1 -1
  117. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.7.6/gem_make.out +2 -2
  118. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.7.6/mkmf.log +1 -1
  119. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/ext/bigdecimal/Makefile +2 -2
  120. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/Makefile +2 -2
  121. data/vendor/bundle/ruby/2.6.0/gems/json-2.7.6/ext/json/ext/generator/Makefile +2 -2
  122. data/vendor/bundle/ruby/2.6.0/gems/json-2.7.6/ext/json/ext/parser/Makefile +2 -2
  123. metadata +2 -2
@@ -38,6 +38,22 @@ describe 'ConnectedRepository' do
38
38
  end
39
39
  end
40
40
 
41
+ describe 'test attribute "disable_reason"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["N/A", "The connection contains a circular reference"])
45
+ # validator.allowable_values.each do |value|
46
+ # expect { @instance.disable_reason = value }.not_to raise_error
47
+ # end
48
+ end
49
+ end
50
+
51
+ describe 'test attribute "disable_reason_text"' do
52
+ it 'should work' do
53
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
54
+ end
55
+ end
56
+
41
57
  describe 'test attribute "is_active"' do
42
58
  it 'should work' do
43
59
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -87,7 +87,7 @@ describe 'CranUpstreamRequestPatch' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -87,7 +87,7 @@ describe 'CranUpstreamRequest' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -145,7 +145,7 @@ describe 'CranUpstream' do
145
145
  describe 'test attribute "mode"' do
146
146
  it 'should work' do
147
147
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
148
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
148
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
149
149
  # validator.allowable_values.each do |value|
150
150
  # expect { @instance.mode = value }.not_to raise_error
151
151
  # end
@@ -87,7 +87,7 @@ describe 'DartUpstreamRequestPatch' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -87,7 +87,7 @@ describe 'DartUpstreamRequest' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -145,7 +145,7 @@ describe 'DartUpstream' do
145
145
  describe 'test attribute "mode"' do
146
146
  it 'should work' do
147
147
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
148
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
148
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
149
149
  # validator.allowable_values.each do |value|
150
150
  # expect { @instance.mode = value }.not_to raise_error
151
151
  # end
@@ -127,7 +127,7 @@ describe 'DebUpstreamRequestPatch' do
127
127
  describe 'test attribute "mode"' do
128
128
  it 'should work' do
129
129
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
130
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
130
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
131
131
  # validator.allowable_values.each do |value|
132
132
  # expect { @instance.mode = value }.not_to raise_error
133
133
  # end
@@ -127,7 +127,7 @@ describe 'DebUpstreamRequest' do
127
127
  describe 'test attribute "mode"' do
128
128
  it 'should work' do
129
129
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
130
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
130
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
131
131
  # validator.allowable_values.each do |value|
132
132
  # expect { @instance.mode = value }.not_to raise_error
133
133
  # end
@@ -191,7 +191,7 @@ describe 'DebUpstream' do
191
191
  describe 'test attribute "mode"' do
192
192
  it 'should work' do
193
193
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
194
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
194
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
195
195
  # validator.allowable_values.each do |value|
196
196
  # expect { @instance.mode = value }.not_to raise_error
197
197
  # end
@@ -42,6 +42,12 @@ describe 'FormatSupportUpstream' do
42
42
  end
43
43
  end
44
44
 
45
+ describe 'test attribute "cache_only"' do
46
+ it 'should work' do
47
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
48
+ end
49
+ end
50
+
45
51
  describe 'test attribute "caching"' do
46
52
  it 'should work' do
47
53
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -87,7 +87,7 @@ describe 'GenericUpstreamRequestPatch' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -87,7 +87,7 @@ describe 'GenericUpstreamRequest' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -145,7 +145,7 @@ describe 'GenericUpstream' do
145
145
  describe 'test attribute "mode"' do
146
146
  it 'should work' do
147
147
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
148
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
148
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
149
149
  # validator.allowable_values.each do |value|
150
150
  # expect { @instance.mode = value }.not_to raise_error
151
151
  # end
@@ -87,7 +87,7 @@ describe 'HelmUpstreamRequestPatch' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -87,7 +87,7 @@ describe 'HelmUpstreamRequest' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -145,7 +145,7 @@ describe 'HelmUpstream' do
145
145
  describe 'test attribute "mode"' do
146
146
  it 'should work' do
147
147
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
148
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
148
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
149
149
  # validator.allowable_values.each do |value|
150
150
  # expect { @instance.mode = value }.not_to raise_error
151
151
  # end
@@ -87,7 +87,7 @@ describe 'HexUpstreamRequestPatch' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -87,7 +87,7 @@ describe 'HexUpstreamRequest' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -145,7 +145,7 @@ describe 'HexUpstream' do
145
145
  describe 'test attribute "mode"' do
146
146
  it 'should work' do
147
147
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
148
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
148
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
149
149
  # validator.allowable_values.each do |value|
150
150
  # expect { @instance.mode = value }.not_to raise_error
151
151
  # end
@@ -87,7 +87,7 @@ describe 'NpmUpstreamRequestPatch' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -87,7 +87,7 @@ describe 'NpmUpstreamRequest' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -145,7 +145,7 @@ describe 'NpmUpstream' do
145
145
  describe 'test attribute "mode"' do
146
146
  it 'should work' do
147
147
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
148
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
148
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
149
149
  # validator.allowable_values.each do |value|
150
150
  # expect { @instance.mode = value }.not_to raise_error
151
151
  # end
@@ -87,7 +87,7 @@ describe 'NugetUpstreamRequestPatch' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -87,7 +87,7 @@ describe 'NugetUpstreamRequest' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -145,7 +145,7 @@ describe 'NugetUpstream' do
145
145
  describe 'test attribute "mode"' do
146
146
  it 'should work' do
147
147
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
148
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
148
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
149
149
  # validator.allowable_values.each do |value|
150
150
  # expect { @instance.mode = value }.not_to raise_error
151
151
  # end
@@ -50,10 +50,22 @@ describe 'OrganizationSAMLAuthRequestPatch' do
50
50
  end
51
51
  end
52
52
 
53
+ describe 'test attribute "saml_metadata_inline_webapp"' 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
+
53
59
  describe 'test attribute "saml_metadata_url"' do
54
60
  it 'should work' do
55
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
62
  end
57
63
  end
58
64
 
65
+ describe 'test attribute "saml_metadata_url_webapp"' 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
+
59
71
  end
@@ -50,10 +50,22 @@ describe 'OrganizationSAMLAuth' do
50
50
  end
51
51
  end
52
52
 
53
+ describe 'test attribute "saml_metadata_inline_webapp"' 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
+
53
59
  describe 'test attribute "saml_metadata_url"' do
54
60
  it 'should work' do
55
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
62
  end
57
63
  end
58
64
 
65
+ describe 'test attribute "saml_metadata_url_webapp"' 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
+
59
71
  end
@@ -87,7 +87,7 @@ describe 'PythonUpstreamRequestPatch' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -87,7 +87,7 @@ describe 'PythonUpstreamRequest' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -145,7 +145,7 @@ describe 'PythonUpstream' do
145
145
  describe 'test attribute "mode"' do
146
146
  it 'should work' do
147
147
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
148
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
148
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
149
149
  # validator.allowable_values.each do |value|
150
150
  # expect { @instance.mode = value }.not_to raise_error
151
151
  # end
@@ -32,6 +32,12 @@ describe 'RepositoryCreate' do
32
32
  expect(@instance).to be_instance_of(CloudsmithApi::RepositoryCreate)
33
33
  end
34
34
  end
35
+ describe 'test attribute "active_connection_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
+
35
41
  describe 'test attribute "broadcast_state"' do
36
42
  it 'should work' do
37
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -68,4 +68,10 @@ describe 'RepositoryEd25519Key' do
68
68
  end
69
69
  end
70
70
 
71
+ describe 'test attribute "public_key_wire"' 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
+
71
77
  end
@@ -32,6 +32,12 @@ describe 'Repository' do
32
32
  expect(@instance).to be_instance_of(CloudsmithApi::Repository)
33
33
  end
34
34
  end
35
+ describe 'test attribute "active_connection_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
+
35
41
  describe 'test attribute "broadcast_state"' do
36
42
  it 'should work' do
37
43
  # 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.3.2/ext/fsevent
2
- /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20260608-876-1m8bhdk.rb extconf.rb
2
+ /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20260715-863-1x68jcx.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.3.2/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-4.1.2/ext/bigdecimal
2
- /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20260608-876-1t6q9ib.rb extconf.rb
2
+ /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20260715-863-dw5xgp.rb extconf.rb
3
3
  checking for __builtin_clz()... yes
4
4
  checking for __builtin_clzl()... yes
5
5
  checking for __builtin_clzll()... yes
@@ -203,4 +203,4 @@ linking shared-object bigdecimal.so
203
203
 
204
204
  current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/ext/bigdecimal
205
205
  make DESTDIR\= install
206
- /usr/bin/install -c -m 0755 bigdecimal.so ./.gem.20260608-876-187z4l6
206
+ /usr/bin/install -c -m 0755 bigdecimal.so ./.gem.20260715-863-1dz6vh0
@@ -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/cc9zcSQa.o: in function `t':
114
+ /usr/bin/ld: /tmp/ccSDOTQ6.o: in function `t':
115
115
  /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/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/cc6hVQCy.o: in function `t':
176
+ /usr/bin/ld: /tmp/ccW1MVeo.o: in function `t':
177
177
  /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/ext/bigdecimal/conftest.c:16: undefined reference to `_lzcnt_u64'
178
178
  collect2: error: ld returned 1 exit status
179
179
  checked program was:
@@ -380,7 +380,7 @@ checked program was:
380
380
  /* end */
381
381
 
382
382
  "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"
383
- /usr/bin/ld: /tmp/ccKdJSxv.o: in function `t':
383
+ /usr/bin/ld: /tmp/ccT09eCz.o: in function `t':
384
384
  /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/ext/bigdecimal/conftest.c:17: undefined reference to `rb_opts_exception_p'
385
385
  collect2: error: ld returned 1 exit status
386
386
  checked program was:
@@ -439,7 +439,7 @@ checked program was:
439
439
  /* end */
440
440
 
441
441
  "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"
442
- /usr/bin/ld: /tmp/cc4Na9o3.o: in function `t':
442
+ /usr/bin/ld: /tmp/ccjLX6W9.o: in function `t':
443
443
  /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/ext/bigdecimal/conftest.c:17: undefined reference to `rb_category_warn'
444
444
  collect2: error: ld returned 1 exit status
445
445
  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.17.4/ext/ffi_c
2
- /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20260608-876-1b38aex.rb extconf.rb
2
+ /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20260715-863-j5ak87.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.17.4/ext/ffi_c
43
43
  make DESTDIR\= install
44
- /usr/bin/install -c -m 0755 ffi_c.so ./.gem.20260608-876-inaad
44
+ /usr/bin/install -c -m 0755 ffi_c.so ./.gem.20260715-863-1t5wt22
@@ -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/ccObI3af.o: in function `t':
250
+ /usr/bin/ld: /tmp/ccuwl5Hv.o: in function `t':
251
251
  /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/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.6/ext/json/ext/parser
2
- /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20260608-876-7y4ooz.rb extconf.rb
2
+ /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20260715-863-iahf4z.rb extconf.rb
3
3
  checking for rb_enc_raise() in ruby.h... yes
4
4
  checking for rb_enc_interned_str() in ruby.h... no
5
5
  checking for whether -std=c99 is accepted as CFLAGS... yes
@@ -26,4 +26,4 @@ linking shared-object json/ext/parser.so
26
26
 
27
27
  current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/json-2.7.6/ext/json/ext/parser
28
28
  make DESTDIR\= install
29
- /usr/bin/install -c -m 0755 parser.so ./.gem.20260608-876-evslli/json/ext
29
+ /usr/bin/install -c -m 0755 parser.so ./.gem.20260715-863-1a5rki6/json/ext
@@ -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/cc9vl7FG.o: in function `t':
103
+ /usr/bin/ld: /tmp/cccScL8e.o: in function `t':
104
104
  /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/json-2.7.6/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.20260608-876-187z4l6
35
- sitelibdir = $(DESTDIR)./.gem.20260608-876-187z4l6
34
+ sitearchdir = $(DESTDIR)./.gem.20260715-863-1dz6vh0
35
+ sitelibdir = $(DESTDIR)./.gem.20260715-863-1dz6vh0
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.20260608-876-inaad
35
- sitelibdir = $(DESTDIR)./.gem.20260608-876-inaad
34
+ sitearchdir = $(DESTDIR)./.gem.20260715-863-1t5wt22
35
+ sitelibdir = $(DESTDIR)./.gem.20260715-863-1t5wt22
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.20260608-876-1bjs7j5
35
- sitelibdir = $(DESTDIR)./.gem.20260608-876-1bjs7j5
34
+ sitearchdir = $(DESTDIR)./.gem.20260715-863-bjrqbg
35
+ sitelibdir = $(DESTDIR)./.gem.20260715-863-bjrqbg
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.20260608-876-evslli
35
- sitelibdir = $(DESTDIR)./.gem.20260608-876-evslli
34
+ sitearchdir = $(DESTDIR)./.gem.20260715-863-1a5rki6
35
+ sitelibdir = $(DESTDIR)./.gem.20260715-863-1a5rki6
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.27
4
+ version: 2.0.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cloudsmith Ltd
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-06-08 00:00:00.000000000 Z
11
+ date: 2026-07-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus