cloudsmith-api 1.61.3 → 1.120.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.
Files changed (193) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +2 -2
  3. data/README.md +51 -30
  4. data/build.json +1 -1
  5. data/docs/AuditLogApi.md +137 -0
  6. data/docs/FilesApi.md +13 -6
  7. data/docs/NamespaceAuditLog.md +23 -0
  8. data/docs/OrganizationGroupSync.md +12 -0
  9. data/docs/OrganizationInvite.md +16 -0
  10. data/docs/OrganizationTeam.md +12 -0
  11. data/docs/OrgsApi.md +713 -0
  12. data/docs/OrgsInvitesCreate.md +12 -0
  13. data/docs/OrgsInvitesExtend.md +11 -0
  14. data/docs/OrgsSamlgroupsyncCreate.md +12 -0
  15. data/docs/OrgsTeamsCreate.md +11 -0
  16. data/docs/OrgsTeamsPartialUpdate.md +11 -0
  17. data/docs/ReposApi.md +586 -0
  18. data/docs/ReposCreate.md +29 -1
  19. data/docs/ReposGpgCreate.md +9 -0
  20. data/docs/ReposPartialUpdate.md +28 -0
  21. data/docs/ReposRsaCreate.md +9 -0
  22. data/docs/Repository.md +28 -0
  23. data/docs/RepositoryAuditLog.md +20 -0
  24. data/docs/RepositoryCreate.md +29 -1
  25. data/docs/RepositoryGpgKey.md +14 -0
  26. data/docs/RepositoryPrivilegeList.md +8 -0
  27. data/docs/RepositoryRsaKey.md +13 -0
  28. data/lib/cloudsmith-api/api/audit_log_api.rb +147 -0
  29. data/lib/cloudsmith-api/api/files_api.rb +17 -7
  30. data/lib/cloudsmith-api/api/orgs_api.rb +671 -0
  31. data/lib/cloudsmith-api/api/repos_api.rb +566 -0
  32. data/lib/cloudsmith-api/models/alpine_package_upload.rb +34 -0
  33. data/lib/cloudsmith-api/models/conan_package_upload.rb +34 -0
  34. data/lib/cloudsmith-api/models/entitlements_create.rb +46 -0
  35. data/lib/cloudsmith-api/models/entitlements_partial_update.rb +46 -0
  36. data/lib/cloudsmith-api/models/entitlements_refresh.rb +46 -0
  37. data/lib/cloudsmith-api/models/files_abort.rb +34 -0
  38. data/lib/cloudsmith-api/models/files_complete.rb +34 -0
  39. data/lib/cloudsmith-api/models/files_create.rb +34 -0
  40. data/lib/cloudsmith-api/models/files_validate.rb +34 -0
  41. data/lib/cloudsmith-api/models/maven_package_upload.rb +34 -0
  42. data/lib/cloudsmith-api/models/namespace_audit_log.rb +395 -0
  43. data/lib/cloudsmith-api/models/organization_group_sync.rb +240 -0
  44. data/lib/cloudsmith-api/models/organization_invite.rb +299 -0
  45. data/lib/cloudsmith-api/models/organization_membership.rb +46 -0
  46. data/lib/cloudsmith-api/models/organization_team.rb +264 -0
  47. data/lib/cloudsmith-api/models/orgs_invites_create.rb +259 -0
  48. data/lib/cloudsmith-api/models/orgs_invites_extend.rb +249 -0
  49. data/lib/cloudsmith-api/models/orgs_samlgroupsync_create.rb +245 -0
  50. data/lib/cloudsmith-api/models/orgs_teams_create.rb +254 -0
  51. data/lib/cloudsmith-api/models/orgs_teams_partial_update.rb +249 -0
  52. data/lib/cloudsmith-api/models/package.rb +34 -0
  53. data/lib/cloudsmith-api/models/package_copy.rb +34 -0
  54. data/lib/cloudsmith-api/models/package_move.rb +34 -0
  55. data/lib/cloudsmith-api/models/packages_tag.rb +34 -0
  56. data/lib/cloudsmith-api/models/raw_package_upload.rb +34 -0
  57. data/lib/cloudsmith-api/models/repos_create.rb +403 -5
  58. data/lib/cloudsmith-api/models/repos_gpg_create.rb +200 -0
  59. data/lib/cloudsmith-api/models/repos_partial_update.rb +414 -4
  60. data/lib/cloudsmith-api/models/repos_rsa_create.rb +200 -0
  61. data/lib/cloudsmith-api/models/repository.rb +414 -4
  62. data/lib/cloudsmith-api/models/repository_audit_log.rb +355 -0
  63. data/lib/cloudsmith-api/models/repository_create.rb +403 -5
  64. data/lib/cloudsmith-api/models/repository_gpg_key.rb +250 -0
  65. data/lib/cloudsmith-api/models/repository_privilege_list.rb +185 -0
  66. data/lib/cloudsmith-api/models/repository_rsa_key.rb +235 -0
  67. data/lib/cloudsmith-api/models/repository_token.rb +46 -0
  68. data/lib/cloudsmith-api/models/repository_token_refresh.rb +46 -0
  69. data/lib/cloudsmith-api/models/vagrant_package_upload.rb +34 -0
  70. data/lib/cloudsmith-api/models/vulnerability_scan_results.rb +34 -0
  71. data/lib/cloudsmith-api/models/vulnerability_scan_results_list.rb +34 -0
  72. data/lib/cloudsmith-api/version.rb +1 -1
  73. data/lib/cloudsmith-api.rb +16 -0
  74. data/spec/api/audit_log_api_spec.rb +66 -0
  75. data/spec/api/files_api_spec.rb +4 -2
  76. data/spec/api/orgs_api_spec.rb +161 -0
  77. data/spec/api/repos_api_spec.rb +132 -0
  78. data/spec/models/alpine_package_upload_spec.rb +4 -0
  79. data/spec/models/conan_package_upload_spec.rb +4 -0
  80. data/spec/models/entitlements_create_spec.rb +8 -0
  81. data/spec/models/entitlements_partial_update_spec.rb +8 -0
  82. data/spec/models/entitlements_refresh_spec.rb +8 -0
  83. data/spec/models/files_abort_spec.rb +4 -0
  84. data/spec/models/files_complete_spec.rb +4 -0
  85. data/spec/models/files_create_spec.rb +4 -0
  86. data/spec/models/files_validate_spec.rb +4 -0
  87. data/spec/models/maven_package_upload_spec.rb +4 -0
  88. data/spec/models/namespace_audit_log_spec.rb +131 -0
  89. data/spec/models/organization_group_sync_spec.rb +65 -0
  90. data/spec/models/organization_invite_spec.rb +93 -0
  91. data/spec/models/organization_membership_spec.rb +8 -0
  92. data/spec/models/organization_team_spec.rb +69 -0
  93. data/spec/models/orgs_invites_create_spec.rb +69 -0
  94. data/spec/models/orgs_invites_extend_spec.rb +63 -0
  95. data/spec/models/orgs_samlgroupsync_create_spec.rb +65 -0
  96. data/spec/models/orgs_teams_create_spec.rb +63 -0
  97. data/spec/models/orgs_teams_partial_update_spec.rb +63 -0
  98. data/spec/models/package_copy_spec.rb +4 -0
  99. data/spec/models/package_move_spec.rb +4 -0
  100. data/spec/models/package_spec.rb +4 -0
  101. data/spec/models/packages_tag_spec.rb +4 -0
  102. data/spec/models/raw_package_upload_spec.rb +4 -0
  103. data/spec/models/repos_create_spec.rb +200 -0
  104. data/spec/models/repos_gpg_create_spec.rb +47 -0
  105. data/spec/models/repos_partial_update_spec.rb +204 -0
  106. data/spec/models/repos_rsa_create_spec.rb +47 -0
  107. data/spec/models/repository_audit_log_spec.rb +113 -0
  108. data/spec/models/repository_create_spec.rb +200 -0
  109. data/spec/models/repository_gpg_key_spec.rb +77 -0
  110. data/spec/models/repository_privilege_list_spec.rb +41 -0
  111. data/spec/models/repository_rsa_key_spec.rb +71 -0
  112. data/spec/models/repository_spec.rb +204 -0
  113. data/spec/models/repository_token_refresh_spec.rb +8 -0
  114. data/spec/models/repository_token_spec.rb +8 -0
  115. data/spec/models/vagrant_package_upload_spec.rb +4 -0
  116. data/spec/models/vulnerability_scan_results_list_spec.rb +4 -0
  117. data/spec/models/vulnerability_scan_results_spec.rb +4 -0
  118. data/vendor/bundle/ruby/2.6.0/bin/htmldiff +3 -3
  119. data/vendor/bundle/ruby/2.6.0/bin/ldiff +3 -3
  120. data/vendor/bundle/ruby/2.6.0/bin/multigem +3 -3
  121. data/vendor/bundle/ruby/2.6.0/bin/multiruby +3 -3
  122. data/vendor/bundle/ruby/2.6.0/bin/rake +2 -0
  123. data/vendor/bundle/ruby/2.6.0/bin/rspec +2 -0
  124. data/vendor/bundle/ruby/2.6.0/bin/unit_diff +3 -3
  125. data/vendor/bundle/ruby/2.6.0/bin/zentest +3 -3
  126. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.2.19/gem_make.out +4 -4
  127. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/ffi_c.so +0 -0
  128. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/gem_make.out +5 -5
  129. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/mkmf.log +9 -9
  130. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.2/gem_make.out +4 -4
  131. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.2/json/ext/generator.so +0 -0
  132. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.2/json/ext/parser.so +0 -0
  133. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.2/mkmf.log +7 -7
  134. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/AbstractMemory.o +0 -0
  135. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ArrayType.o +0 -0
  136. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Buffer.o +0 -0
  137. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Call.o +0 -0
  138. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ClosurePool.o +0 -0
  139. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/DynamicLibrary.o +0 -0
  140. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Function.o +0 -0
  141. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/FunctionInfo.o +0 -0
  142. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/LastError.o +0 -0
  143. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/LongDouble.o +0 -0
  144. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Makefile +3 -3
  145. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/MappedType.o +0 -0
  146. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/MemoryPointer.o +0 -0
  147. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/MethodHandle.o +0 -0
  148. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Platform.o +0 -0
  149. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.o +0 -0
  150. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Struct.o +0 -0
  151. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/StructByValue.o +0 -0
  152. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/StructLayout.o +0 -0
  153. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Thread.o +0 -0
  154. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Type.o +0 -0
  155. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Types.o +0 -0
  156. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Variadic.o +0 -0
  157. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ffi.o +0 -0
  158. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ffi_c.so +0 -0
  159. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi_c.so +0 -0
  160. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/Makefile +3 -3
  161. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/generator/Makefile +3 -3
  162. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/generator/generator.o +0 -0
  163. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/generator/generator.so +0 -0
  164. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/parser/Makefile +3 -3
  165. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/parser/parser.o +0 -0
  166. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/parser/parser.so +0 -0
  167. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/lib/json/ext/generator.so +0 -0
  168. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/lib/json/ext/parser.so +0 -0
  169. data/vendor/bundle/ruby/2.6.0/specifications/ZenTest-4.12.1.gemspec +6 -9
  170. data/vendor/bundle/ruby/2.6.0/specifications/addressable-2.8.0.gemspec +6 -9
  171. data/vendor/bundle/ruby/2.6.0/specifications/autotest-4.4.6.gemspec +8 -13
  172. data/vendor/bundle/ruby/2.6.0/specifications/autotest-fsevent-0.2.19.gemspec +8 -13
  173. data/vendor/bundle/ruby/2.6.0/specifications/autotest-growl-0.2.16.gemspec +7 -11
  174. data/vendor/bundle/ruby/2.6.0/specifications/autotest-rails-pure-4.1.2.gemspec +2 -2
  175. data/vendor/bundle/ruby/2.6.0/specifications/crack-0.4.5.gemspec +5 -7
  176. data/vendor/bundle/ruby/2.6.0/specifications/diff-lcs-1.5.0.gemspec +12 -21
  177. data/vendor/bundle/ruby/2.6.0/specifications/ethon-0.15.0.gemspec +5 -7
  178. data/vendor/bundle/ruby/2.6.0/specifications/ffi-1.15.5.gemspec +8 -13
  179. data/vendor/bundle/ruby/2.6.0/specifications/hashdiff-1.0.1.gemspec +9 -15
  180. data/vendor/bundle/ruby/2.6.0/specifications/json-2.6.2.gemspec +0 -0
  181. data/vendor/bundle/ruby/2.6.0/specifications/public_suffix-4.0.7.gemspec +2 -2
  182. data/vendor/bundle/ruby/2.6.0/specifications/rake-12.3.3.gemspec +9 -15
  183. data/vendor/bundle/ruby/2.6.0/specifications/rexml-3.2.5.gemspec +7 -11
  184. data/vendor/bundle/ruby/2.6.0/specifications/rspec-3.11.0.gemspec +7 -11
  185. data/vendor/bundle/ruby/2.6.0/specifications/rspec-core-3.11.0.gemspec +13 -23
  186. data/vendor/bundle/ruby/2.6.0/specifications/rspec-expectations-3.11.0.gemspec +10 -17
  187. data/vendor/bundle/ruby/2.6.0/specifications/rspec-mocks-3.11.1.gemspec +10 -17
  188. data/vendor/bundle/ruby/2.6.0/specifications/rspec-support-3.11.0.gemspec +6 -9
  189. data/vendor/bundle/ruby/2.6.0/specifications/sys-uname-1.2.2.gemspec +7 -11
  190. data/vendor/bundle/ruby/2.6.0/specifications/typhoeus-1.4.0.gemspec +5 -7
  191. data/vendor/bundle/ruby/2.6.0/specifications/vcr-3.0.3.gemspec +26 -49
  192. data/vendor/bundle/ruby/2.6.0/specifications/webmock-1.24.6.gemspec +19 -35
  193. metadata +85 -21
@@ -38,12 +38,60 @@ describe 'Repository' do
38
38
  end
39
39
  end
40
40
 
41
+ describe 'test attribute "contextual_auth_realm"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "copy_own"' 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
+ describe 'test attribute "copy_packages"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Admin", "Write", "Read"])
57
+ # validator.allowable_values.each do |value|
58
+ # expect { @instance.copy_packages = value }.not_to raise_error
59
+ # end
60
+ end
61
+ end
62
+
41
63
  describe 'test attribute "created_at"' do
42
64
  it 'should work' do
43
65
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
66
  end
45
67
  end
46
68
 
69
+ describe 'test attribute "default_privilege"' do
70
+ it 'should work' do
71
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
72
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Admin", "Write", "Read", "None"])
73
+ # validator.allowable_values.each do |value|
74
+ # expect { @instance.default_privilege = value }.not_to raise_error
75
+ # end
76
+ end
77
+ end
78
+
79
+ describe 'test attribute "delete_own"' do
80
+ it 'should work' do
81
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
82
+ end
83
+ end
84
+
85
+ describe 'test attribute "delete_packages"' do
86
+ it 'should work' do
87
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
88
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Admin", "Write"])
89
+ # validator.allowable_values.each do |value|
90
+ # expect { @instance.delete_packages = value }.not_to raise_error
91
+ # end
92
+ end
93
+ end
94
+
47
95
  describe 'test attribute "deleted_at"' do
48
96
  it 'should work' do
49
97
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -56,6 +104,12 @@ describe 'Repository' do
56
104
  end
57
105
  end
58
106
 
107
+ describe 'test attribute "docker_refresh_tokens_enabled"' do
108
+ it 'should work' do
109
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
+ end
111
+ end
112
+
59
113
  describe 'test attribute "gpg_keys"' do
60
114
  it 'should work' do
61
115
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -86,6 +140,22 @@ describe 'Repository' do
86
140
  end
87
141
  end
88
142
 
143
+ describe 'test attribute "move_own"' do
144
+ it 'should work' do
145
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
146
+ end
147
+ end
148
+
149
+ describe 'test attribute "move_packages"' do
150
+ it 'should work' do
151
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
152
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Admin", "Write", "Read"])
153
+ # validator.allowable_values.each do |value|
154
+ # expect { @instance.move_packages = value }.not_to raise_error
155
+ # end
156
+ end
157
+ end
158
+
89
159
  describe 'test attribute "name"' do
90
160
  it 'should work' do
91
161
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -122,6 +192,46 @@ describe 'Repository' do
122
192
  end
123
193
  end
124
194
 
195
+ describe 'test attribute "proxy_npmjs"' do
196
+ it 'should work' do
197
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
198
+ end
199
+ end
200
+
201
+ describe 'test attribute "proxy_pypi"' do
202
+ it 'should work' do
203
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
204
+ end
205
+ end
206
+
207
+ describe 'test attribute "raw_package_index_enabled"' do
208
+ it 'should work' do
209
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
210
+ end
211
+ end
212
+
213
+ describe 'test attribute "raw_package_index_signatures_enabled"' do
214
+ it 'should work' do
215
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
216
+ end
217
+ end
218
+
219
+ describe 'test attribute "replace_packages"' do
220
+ it 'should work' do
221
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
222
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Admin", "Write"])
223
+ # validator.allowable_values.each do |value|
224
+ # expect { @instance.replace_packages = value }.not_to raise_error
225
+ # end
226
+ end
227
+ end
228
+
229
+ describe 'test attribute "replace_packages_by_default"' do
230
+ it 'should work' do
231
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
232
+ end
233
+ end
234
+
125
235
  describe 'test attribute "repository_type"' do
126
236
  it 'should work' do
127
237
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -129,11 +239,47 @@ describe 'Repository' do
129
239
  end
130
240
 
131
241
  describe 'test attribute "repository_type_str"' do
242
+ it 'should work' do
243
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
244
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Public", "Private", "Open-Source"])
245
+ # validator.allowable_values.each do |value|
246
+ # expect { @instance.repository_type_str = value }.not_to raise_error
247
+ # end
248
+ end
249
+ end
250
+
251
+ describe 'test attribute "resync_own"' do
132
252
  it 'should work' do
133
253
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
134
254
  end
135
255
  end
136
256
 
257
+ describe 'test attribute "resync_packages"' do
258
+ it 'should work' do
259
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
260
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Admin", "Write"])
261
+ # validator.allowable_values.each do |value|
262
+ # expect { @instance.resync_packages = value }.not_to raise_error
263
+ # end
264
+ end
265
+ end
266
+
267
+ describe 'test attribute "scan_own"' do
268
+ it 'should work' do
269
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
270
+ end
271
+ end
272
+
273
+ describe 'test attribute "scan_packages"' do
274
+ it 'should work' do
275
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
276
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Admin", "Write", "Read"])
277
+ # validator.allowable_values.each do |value|
278
+ # expect { @instance.scan_packages = value }.not_to raise_error
279
+ # end
280
+ end
281
+ end
282
+
137
283
  describe 'test attribute "self_html_url"' do
138
284
  it 'should work' do
139
285
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -146,6 +292,12 @@ describe 'Repository' do
146
292
  end
147
293
  end
148
294
 
295
+ describe 'test attribute "show_setup_all"' do
296
+ it 'should work' do
297
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
298
+ end
299
+ end
300
+
149
301
  describe 'test attribute "size"' do
150
302
  it 'should work' do
151
303
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -176,4 +328,56 @@ describe 'Repository' do
176
328
  end
177
329
  end
178
330
 
331
+ describe 'test attribute "strict_npm_validation"' do
332
+ it 'should work' do
333
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
334
+ end
335
+ end
336
+
337
+ describe 'test attribute "use_debian_labels"' do
338
+ it 'should work' do
339
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
340
+ end
341
+ end
342
+
343
+ describe 'test attribute "use_default_cargo_upstream"' do
344
+ it 'should work' do
345
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
346
+ end
347
+ end
348
+
349
+ describe 'test attribute "use_noarch_packages"' do
350
+ it 'should work' do
351
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
352
+ end
353
+ end
354
+
355
+ describe 'test attribute "use_source_packages"' do
356
+ it 'should work' do
357
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
358
+ end
359
+ end
360
+
361
+ describe 'test attribute "use_vulnerability_scanning"' do
362
+ it 'should work' do
363
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
364
+ end
365
+ end
366
+
367
+ describe 'test attribute "user_entitlements_enabled"' do
368
+ it 'should work' do
369
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
370
+ end
371
+ end
372
+
373
+ describe 'test attribute "view_statistics"' do
374
+ it 'should work' do
375
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
376
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Admin", "Write", "Read"])
377
+ # validator.allowable_values.each do |value|
378
+ # expect { @instance.view_statistics = value }.not_to raise_error
379
+ # end
380
+ end
381
+ end
382
+
179
383
  end
@@ -137,6 +137,10 @@ describe 'RepositoryTokenRefresh' do
137
137
  describe 'test attribute "limit_bandwidth_unit"' do
138
138
  it 'should work' do
139
139
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
140
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Byte", "Kilobyte", "Megabyte", "Gigabyte", "Terabyte", "Petabyte", "Exabyte", "Zettabyte", "Yottabyte"])
141
+ # validator.allowable_values.each do |value|
142
+ # expect { @instance.limit_bandwidth_unit = value }.not_to raise_error
143
+ # end
140
144
  end
141
145
  end
142
146
 
@@ -209,6 +213,10 @@ describe 'RepositoryTokenRefresh' do
209
213
  describe 'test attribute "scheduled_reset_period"' do
210
214
  it 'should work' do
211
215
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
216
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Never Reset", "Daily", "Weekly", "Fortnightly", "Monthly", "Bi-Monthly", "Quarterly", "Every 6 months", "Annual"])
217
+ # validator.allowable_values.each do |value|
218
+ # expect { @instance.scheduled_reset_period = value }.not_to raise_error
219
+ # end
212
220
  end
213
221
  end
214
222
 
@@ -137,6 +137,10 @@ describe 'RepositoryToken' do
137
137
  describe 'test attribute "limit_bandwidth_unit"' do
138
138
  it 'should work' do
139
139
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
140
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Byte", "Kilobyte", "Megabyte", "Gigabyte", "Terabyte", "Petabyte", "Exabyte", "Zettabyte", "Yottabyte"])
141
+ # validator.allowable_values.each do |value|
142
+ # expect { @instance.limit_bandwidth_unit = value }.not_to raise_error
143
+ # end
140
144
  end
141
145
  end
142
146
 
@@ -209,6 +213,10 @@ describe 'RepositoryToken' do
209
213
  describe 'test attribute "scheduled_reset_period"' do
210
214
  it 'should work' do
211
215
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
216
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Never Reset", "Daily", "Weekly", "Fortnightly", "Monthly", "Bi-Monthly", "Quarterly", "Every 6 months", "Annual"])
217
+ # validator.allowable_values.each do |value|
218
+ # expect { @instance.scheduled_reset_period = value }.not_to raise_error
219
+ # end
212
220
  end
213
221
  end
214
222
 
@@ -269,6 +269,10 @@ describe 'VagrantPackageUpload' do
269
269
  describe 'test attribute "security_scan_status"' do
270
270
  it 'should work' do
271
271
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
272
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Awaiting Security Scan", "Security Scanning in Progress", "Scan Detected Vulnerabilities", "Scan Detected No Vulnerabilities", "Security Scanning Disabled", "Security Scanning Failed", "Security Scanning Skipped", "Security Scanning Not Supported"])
273
+ # validator.allowable_values.each do |value|
274
+ # expect { @instance.security_scan_status = value }.not_to raise_error
275
+ # end
272
276
  end
273
277
  end
274
278
 
@@ -53,6 +53,10 @@ describe 'VulnerabilityScanResultsList' do
53
53
  describe 'test attribute "max_severity"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Unknown", "Low", "Medium", "High", "Critical"])
57
+ # validator.allowable_values.each do |value|
58
+ # expect { @instance.max_severity = value }.not_to raise_error
59
+ # end
56
60
  end
57
61
  end
58
62
 
@@ -53,6 +53,10 @@ describe 'VulnerabilityScanResults' do
53
53
  describe 'test attribute "max_severity"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Unknown", "Low", "Medium", "High", "Critical"])
57
+ # validator.allowable_values.each do |value|
58
+ # expect { @instance.max_severity = value }.not_to raise_error
59
+ # end
56
60
  end
57
61
  end
58
62
 
@@ -1,6 +1,4 @@
1
- #!/bin/sh
2
- 'exec' "ruby" '-x' "$0" "$@"
3
- #!/usr/local/bin/ruby
1
+ #!/usr/bin/env ruby
4
2
  #
5
3
  # This file was generated by RubyGems.
6
4
  #
@@ -10,6 +8,8 @@
10
8
 
11
9
  require 'rubygems'
12
10
 
11
+ Gem.use_gemdeps
12
+
13
13
  version = ">= 0.a"
14
14
 
15
15
  str = ARGV.first
@@ -1,6 +1,4 @@
1
- #!/bin/sh
2
- 'exec' "ruby" '-x' "$0" "$@"
3
- #!/usr/local/bin/ruby
1
+ #!/usr/bin/env ruby
4
2
  #
5
3
  # This file was generated by RubyGems.
6
4
  #
@@ -10,6 +8,8 @@
10
8
 
11
9
  require 'rubygems'
12
10
 
11
+ Gem.use_gemdeps
12
+
13
13
  version = ">= 0.a"
14
14
 
15
15
  str = ARGV.first
@@ -1,6 +1,4 @@
1
- #!/bin/sh
2
- 'exec' "ruby" '-x' "$0" "$@"
3
- #!/usr/local/bin/ruby
1
+ #!/usr/bin/env ruby
4
2
  #
5
3
  # This file was generated by RubyGems.
6
4
  #
@@ -10,6 +8,8 @@
10
8
 
11
9
  require 'rubygems'
12
10
 
11
+ Gem.use_gemdeps
12
+
13
13
  version = ">= 0.a"
14
14
 
15
15
  str = ARGV.first
@@ -1,6 +1,4 @@
1
- #!/bin/sh
2
- 'exec' "ruby" '-x' "$0" "$@"
3
- #!/usr/local/bin/ruby
1
+ #!/usr/bin/env ruby
4
2
  #
5
3
  # This file was generated by RubyGems.
6
4
  #
@@ -10,6 +8,8 @@
10
8
 
11
9
  require 'rubygems'
12
10
 
11
+ Gem.use_gemdeps
12
+
13
13
  version = ">= 0.a"
14
14
 
15
15
  str = ARGV.first
@@ -8,6 +8,8 @@
8
8
 
9
9
  require 'rubygems'
10
10
 
11
+ Gem.use_gemdeps
12
+
11
13
  version = ">= 0.a"
12
14
 
13
15
  str = ARGV.first
@@ -8,6 +8,8 @@
8
8
 
9
9
  require 'rubygems'
10
10
 
11
+ Gem.use_gemdeps
12
+
11
13
  version = ">= 0.a"
12
14
 
13
15
  str = ARGV.first
@@ -1,6 +1,4 @@
1
- #!/bin/sh
2
- 'exec' "ruby" '-x' "$0" "$@"
3
- #!/usr/local/bin/ruby
1
+ #!/usr/bin/env ruby
4
2
  #
5
3
  # This file was generated by RubyGems.
6
4
  #
@@ -10,6 +8,8 @@
10
8
 
11
9
  require 'rubygems'
12
10
 
11
+ Gem.use_gemdeps
12
+
13
13
  version = ">= 0.a"
14
14
 
15
15
  str = ARGV.first
@@ -1,6 +1,4 @@
1
- #!/bin/sh
2
- 'exec' "ruby" '-x' "$0" "$@"
3
- #!/usr/local/bin/ruby
1
+ #!/usr/bin/env ruby
4
2
  #
5
3
  # This file was generated by RubyGems.
6
4
  #
@@ -10,6 +8,8 @@
10
8
 
11
9
  require 'rubygems'
12
10
 
11
+ Gem.use_gemdeps
12
+
13
13
  version = ">= 0.a"
14
14
 
15
15
  str = ARGV.first
@@ -1,14 +1,14 @@
1
1
  current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.19/ext/fsevent
2
- /usr/local/bin/ruby -I /usr/local/lib/ruby/2.6.0 -r ./siteconf20220518-626-8crckz.rb extconf.rb
2
+ /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20220812-841-1l4y5cf.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.19/ext/fsevent
5
- make "DESTDIR=" clean
5
+ make DESTDIR\= clean
6
6
  make: *** No rule to make target 'clean'. Stop.
7
7
 
8
8
  current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.19/ext/fsevent
9
- make "DESTDIR="
9
+ make DESTDIR\=
10
10
  make: Nothing to be done for 'all'.
11
11
 
12
12
  current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.19/ext/fsevent
13
- make "DESTDIR=" install
13
+ make DESTDIR\= install
14
14
  make: Nothing to be done for 'install'.
@@ -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/2.6.0 -r ./siteconf20220518-626-1atnnd2.rb extconf.rb
2
+ /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20220812-841-bf0xk7.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
@@ -9,10 +9,10 @@ creating extconf.h
9
9
  creating Makefile
10
10
 
11
11
  current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c
12
- make "DESTDIR=" clean
12
+ make DESTDIR\= clean
13
13
 
14
14
  current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c
15
- make "DESTDIR="
15
+ make DESTDIR\=
16
16
  compiling AbstractMemory.c
17
17
  compiling ArrayType.c
18
18
  compiling Buffer.c
@@ -39,5 +39,5 @@ compiling ffi.c
39
39
  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
- make "DESTDIR=" install
43
- /usr/bin/install -c -m 0755 ffi_c.so ./.gem.20220518-626-1x9xp3x
42
+ make DESTDIR\= install
43
+ /usr/bin/install -c -m 0755 ffi_c.so ./.gem.20220812-841-7c18ju
@@ -68,9 +68,9 @@ conftest.c:14:57: error: ‘ffi_prep_cif_var’ undeclared (first use in this fu
68
68
  | ^~~~~~~~~~~~~~~~
69
69
  conftest.c:14:57: note: each undeclared identifier is reported only once for each function it appears in
70
70
  conftest.c: At top level:
71
- cc1: note: unrecognized command-line option ‘-Wno-self-assign’ may have been intended to silence earlier diagnostics
72
- cc1: note: unrecognized command-line option ‘-Wno-parentheses-equality’ may have been intended to silence earlier diagnostics
73
- cc1: note: unrecognized command-line option ‘-Wno-constant-logical-operand’ may have been intended to silence earlier diagnostics
71
+ cc1: warning: unrecognized command line option ‘-Wno-self-assign’
72
+ cc1: warning: unrecognized command line option ‘-Wno-parentheses-equality’
73
+ cc1: warning: unrecognized command line option ‘-Wno-constant-logical-operand’
74
74
  checked program was:
75
75
  /* begin */
76
76
  1: #include "ruby.h"
@@ -120,9 +120,9 @@ conftest.c:14:57: error: ‘ffi_raw_call’ undeclared (first use in this functi
120
120
  | ^~~~~~~~~~~~
121
121
  conftest.c:14:57: note: each undeclared identifier is reported only once for each function it appears in
122
122
  conftest.c: At top level:
123
- cc1: note: unrecognized command-line option ‘-Wno-self-assign’ may have been intended to silence earlier diagnostics
124
- cc1: note: unrecognized command-line option ‘-Wno-parentheses-equality’ may have been intended to silence earlier diagnostics
125
- cc1: note: unrecognized command-line option ‘-Wno-constant-logical-operand’ may have been intended to silence earlier diagnostics
123
+ cc1: warning: unrecognized command line option ‘-Wno-self-assign’
124
+ cc1: warning: unrecognized command line option ‘-Wno-parentheses-equality’
125
+ cc1: warning: unrecognized command line option ‘-Wno-constant-logical-operand’
126
126
  checked program was:
127
127
  /* begin */
128
128
  1: #include "ruby.h"
@@ -172,9 +172,9 @@ conftest.c:14:57: error: ‘ffi_prep_raw_closure’ undeclared (first use in thi
172
172
  | ^~~~~~~~~~~~~~~~~~~~
173
173
  conftest.c:14:57: note: each undeclared identifier is reported only once for each function it appears in
174
174
  conftest.c: At top level:
175
- cc1: note: unrecognized command-line option ‘-Wno-self-assign’ may have been intended to silence earlier diagnostics
176
- cc1: note: unrecognized command-line option ‘-Wno-parentheses-equality’ may have been intended to silence earlier diagnostics
177
- cc1: note: unrecognized command-line option ‘-Wno-constant-logical-operand’ may have been intended to silence earlier diagnostics
175
+ cc1: warning: unrecognized command line option ‘-Wno-self-assign’
176
+ cc1: warning: unrecognized command line option ‘-Wno-parentheses-equality’
177
+ cc1: warning: unrecognized command line option ‘-Wno-constant-logical-operand’
178
178
  checked program was:
179
179
  /* begin */
180
180
  1: #include "ruby.h"
@@ -1,13 +1,13 @@
1
1
  current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json
2
- /usr/local/bin/ruby -I /usr/local/lib/ruby/2.6.0 -r ./siteconf20220518-626-1li7bmd.rb extconf.rb
2
+ /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20220812-841-5gvl8n.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.2/ext/json
6
- make "DESTDIR=" clean
6
+ make DESTDIR\= clean
7
7
 
8
8
  current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json
9
- make "DESTDIR="
9
+ make DESTDIR\=
10
10
  make: Nothing to be done for 'all'.
11
11
 
12
12
  current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json
13
- make "DESTDIR=" install
13
+ make DESTDIR\= install
@@ -19,9 +19,9 @@ conftest.c:16:57: error: ‘rb_enc_raise’ undeclared (first use in this functi
19
19
  | rb_exc_raise
20
20
  conftest.c:16:57: note: each undeclared identifier is reported only once for each function it appears in
21
21
  conftest.c: At top level:
22
- cc1: note: unrecognized command-line option ‘-Wno-self-assign’ may have been intended to silence earlier diagnostics
23
- cc1: note: unrecognized command-line option ‘-Wno-parentheses-equality’ may have been intended to silence earlier diagnostics
24
- cc1: note: unrecognized command-line option ‘-Wno-constant-logical-operand’ may have been intended to silence earlier diagnostics
22
+ cc1: warning: unrecognized command line option ‘-Wno-self-assign’
23
+ cc1: warning: unrecognized command line option ‘-Wno-parentheses-equality’
24
+ cc1: warning: unrecognized command line option ‘-Wno-constant-logical-operand’
25
25
  checked program was:
26
26
  /* begin */
27
27
  1: #include "ruby.h"
@@ -76,9 +76,9 @@ conftest.c:16:57: error: ‘rb_enc_interned_str’ undeclared (first use in this
76
76
  | rb_sym_interned_p
77
77
  conftest.c:16:57: note: each undeclared identifier is reported only once for each function it appears in
78
78
  conftest.c: At top level:
79
- cc1: note: unrecognized command-line option ‘-Wno-self-assign’ may have been intended to silence earlier diagnostics
80
- cc1: note: unrecognized command-line option ‘-Wno-parentheses-equality’ may have been intended to silence earlier diagnostics
81
- cc1: note: unrecognized command-line option ‘-Wno-constant-logical-operand’ may have been intended to silence earlier diagnostics
79
+ cc1: warning: unrecognized command line option ‘-Wno-self-assign’
80
+ cc1: warning: unrecognized command line option ‘-Wno-parentheses-equality’
81
+ cc1: warning: unrecognized command line option ‘-Wno-constant-logical-operand’
82
82
  checked program was:
83
83
  /* begin */
84
84
  1: #include "ruby.h"
@@ -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/ccOPqvR9.o: in function `t':
103
+ /usr/bin/ld: /tmp/cchkQecp.o: in function `t':
104
104
  /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/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: