cloudsmith-api 2.0.25 → 2.0.26

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 (886) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +5 -5
  3. data/README.md +16 -5
  4. data/build.json +1 -1
  5. data/docs/AlpineUpstream.md +4 -0
  6. data/docs/AlpineUpstreamRequest.md +2 -0
  7. data/docs/AlpineUpstreamRequestPatch.md +2 -0
  8. data/docs/EntitlementsApi.md +68 -0
  9. data/docs/McpPackageUpload.md +91 -0
  10. data/docs/McpPackageUploadRequest.md +11 -0
  11. data/docs/PackageRecycleBin.md +10 -0
  12. data/docs/PackagesApi.md +131 -0
  13. data/docs/RecycleBinApi.md +137 -0
  14. data/docs/RecycleBinPackage.md +31 -0
  15. data/docs/ReposApi.md +3 -4
  16. data/docs/RepositoryTokenPrivateBroadcasts.md +8 -0
  17. data/docs/RepositoryTokenPrivateBroadcastsRequest.md +8 -0
  18. data/docs/RepositoryTokenRefreshRequest.md +0 -1
  19. data/docs/RepositoryTokenRequest.md +0 -1
  20. data/docs/RepositoryTokenRequestPatch.md +0 -1
  21. data/docs/StorageAllocatedLimit.md +1 -0
  22. data/docs/StorageAllocatedLimitRaw.md +1 -0
  23. data/lib/cloudsmith-api/api/entitlements_api.rb +67 -0
  24. data/lib/cloudsmith-api/api/packages_api.rb +123 -0
  25. data/lib/cloudsmith-api/api/recycle_bin_api.rb +140 -0
  26. data/lib/cloudsmith-api/api/repos_api.rb +2 -4
  27. data/lib/cloudsmith-api/models/alpine_upstream.rb +71 -3
  28. data/lib/cloudsmith-api/models/alpine_upstream_request.rb +35 -1
  29. data/lib/cloudsmith-api/models/alpine_upstream_request_patch.rb +35 -1
  30. data/lib/cloudsmith-api/models/cargo_upstream.rb +2 -2
  31. data/lib/cloudsmith-api/models/composer_upstream.rb +2 -2
  32. data/lib/cloudsmith-api/models/conda_upstream.rb +2 -2
  33. data/lib/cloudsmith-api/models/cran_upstream.rb +2 -2
  34. data/lib/cloudsmith-api/models/dart_upstream.rb +2 -2
  35. data/lib/cloudsmith-api/models/deb_upstream.rb +2 -2
  36. data/lib/cloudsmith-api/models/docker_upstream.rb +2 -2
  37. data/lib/cloudsmith-api/models/generic_upstream.rb +2 -2
  38. data/lib/cloudsmith-api/models/go_upstream.rb +2 -2
  39. data/lib/cloudsmith-api/models/helm_upstream.rb +2 -2
  40. data/lib/cloudsmith-api/models/hex_upstream.rb +2 -2
  41. data/lib/cloudsmith-api/models/huggingface_upstream.rb +2 -2
  42. data/lib/cloudsmith-api/models/maven_upstream.rb +2 -2
  43. data/lib/cloudsmith-api/models/mcp_package_upload.rb +1001 -0
  44. data/lib/cloudsmith-api/models/mcp_package_upload_request.rb +220 -0
  45. data/lib/cloudsmith-api/models/npm_upstream.rb +2 -2
  46. data/lib/cloudsmith-api/models/nuget_upstream.rb +2 -2
  47. data/lib/cloudsmith-api/models/package_recycle_bin.rb +251 -0
  48. data/lib/cloudsmith-api/models/python_upstream.rb +2 -2
  49. data/lib/cloudsmith-api/models/recycle_bin_package.rb +442 -0
  50. data/lib/cloudsmith-api/models/repository_token_private_broadcasts.rb +190 -0
  51. data/lib/cloudsmith-api/models/repository_token_private_broadcasts_request.rb +190 -0
  52. data/lib/cloudsmith-api/models/repository_token_refresh_request.rb +1 -11
  53. data/lib/cloudsmith-api/models/repository_token_request.rb +1 -11
  54. data/lib/cloudsmith-api/models/repository_token_request_patch.rb +1 -11
  55. data/lib/cloudsmith-api/models/rpm_upstream.rb +2 -2
  56. data/lib/cloudsmith-api/models/ruby_upstream.rb +2 -2
  57. data/lib/cloudsmith-api/models/storage_allocated_limit.rb +13 -4
  58. data/lib/cloudsmith-api/models/storage_allocated_limit_raw.rb +13 -4
  59. data/lib/cloudsmith-api/models/swift_upstream.rb +2 -2
  60. data/lib/cloudsmith-api/version.rb +1 -1
  61. data/lib/cloudsmith-api.rb +7 -0
  62. data/spec/api/entitlements_api_spec.rb +15 -0
  63. data/spec/api/packages_api_spec.rb +28 -0
  64. data/spec/api/recycle_bin_api_spec.rb +62 -0
  65. data/spec/api/repos_api_spec.rb +1 -2
  66. data/spec/models/alpine_upstream_request_patch_spec.rb +16 -0
  67. data/spec/models/alpine_upstream_request_spec.rb +16 -0
  68. data/spec/models/alpine_upstream_spec.rb +33 -1
  69. data/spec/models/cargo_upstream_spec.rb +1 -1
  70. data/spec/models/composer_upstream_spec.rb +1 -1
  71. data/spec/models/conda_upstream_spec.rb +1 -1
  72. data/spec/models/cran_upstream_spec.rb +1 -1
  73. data/spec/models/dart_upstream_spec.rb +1 -1
  74. data/spec/models/deb_upstream_spec.rb +1 -1
  75. data/spec/models/docker_upstream_spec.rb +1 -1
  76. data/spec/models/generic_upstream_spec.rb +1 -1
  77. data/spec/models/go_upstream_spec.rb +1 -1
  78. data/spec/models/helm_upstream_spec.rb +1 -1
  79. data/spec/models/hex_upstream_spec.rb +1 -1
  80. data/spec/models/huggingface_upstream_spec.rb +1 -1
  81. data/spec/models/maven_upstream_spec.rb +1 -1
  82. data/spec/models/mcp_package_upload_request_spec.rb +59 -0
  83. data/spec/models/mcp_package_upload_spec.rb +543 -0
  84. data/spec/models/npm_upstream_spec.rb +1 -1
  85. data/spec/models/nuget_upstream_spec.rb +1 -1
  86. data/spec/models/package_recycle_bin_spec.rb +57 -0
  87. data/spec/models/python_upstream_spec.rb +1 -1
  88. data/spec/models/recycle_bin_package_spec.rb +183 -0
  89. data/spec/models/repository_token_private_broadcasts_request_spec.rb +41 -0
  90. data/spec/models/repository_token_private_broadcasts_spec.rb +41 -0
  91. data/spec/models/repository_token_refresh_request_spec.rb +0 -6
  92. data/spec/models/repository_token_request_patch_spec.rb +0 -6
  93. data/spec/models/repository_token_request_spec.rb +0 -6
  94. data/spec/models/rpm_upstream_spec.rb +1 -1
  95. data/spec/models/ruby_upstream_spec.rb +1 -1
  96. data/spec/models/storage_allocated_limit_raw_spec.rb +6 -0
  97. data/spec/models/storage_allocated_limit_spec.rb +6 -0
  98. data/spec/models/swift_upstream_spec.rb +1 -1
  99. data/vendor/bundle/ruby/2.6.0/cache/addressable-2.9.0.gem +0 -0
  100. data/vendor/bundle/ruby/2.6.0/cache/autotest-fsevent-0.3.2.gem +0 -0
  101. data/vendor/bundle/ruby/2.6.0/cache/bigdecimal-4.1.2.gem +0 -0
  102. data/vendor/bundle/ruby/2.6.0/cache/ffi-1.17.4.gem +0 -0
  103. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/gem_make.out +5 -5
  104. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/bigdecimal-4.1.2/bigdecimal.so +0 -0
  105. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/bigdecimal-4.1.2/gem_make.out +206 -0
  106. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/mkmf.log +30 -8
  107. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.17.4/ffi_c.so +0 -0
  108. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{ffi-1.17.3 → ffi-1.17.4}/gem_make.out +6 -6
  109. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{ffi-1.17.3 → ffi-1.17.4}/mkmf.log +2 -2
  110. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.7.6/gem_make.out +2 -2
  111. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.7.6/mkmf.log +1 -1
  112. data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.9 → addressable-2.9.0}/CHANGELOG.md +7 -0
  113. data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.9 → addressable-2.9.0}/lib/addressable/template.rb +13 -2
  114. data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.9 → addressable-2.9.0}/lib/addressable/version.rb +2 -2
  115. data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/CHANGELOG.md +5 -0
  116. data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/lib/autotest-fsevent/version.rb +1 -1
  117. data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/bigdecimal.gemspec +6 -1
  118. data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/ext/bigdecimal/Makefile +3 -3
  119. data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/ext/bigdecimal/bigdecimal.c +262 -261
  120. data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/ext/bigdecimal/bigdecimal.h +43 -37
  121. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/ext/bigdecimal/bigdecimal.o +0 -0
  122. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/ext/bigdecimal/bigdecimal.so +0 -0
  123. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/ext/bigdecimal/div.h +192 -0
  124. data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/ext/bigdecimal/extconf.rb +5 -2
  125. data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/ext/bigdecimal/missing/dtoa.c +184 -137
  126. data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/ext/bigdecimal/missing.h +4 -2
  127. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/ext/bigdecimal/missing.o +0 -0
  128. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/ext/bigdecimal/ntt.h +191 -0
  129. data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/lib/bigdecimal/math.rb +102 -123
  130. data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/lib/bigdecimal/util.rb +1 -1
  131. data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/lib/bigdecimal.rb +104 -60
  132. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/lib/bigdecimal.so +0 -0
  133. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/sample/linear.rb +110 -0
  134. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/sample/nlsolve.rb +57 -0
  135. data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/sample/pi.rb +2 -7
  136. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/sig/big_decimal.rbs +1502 -0
  137. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/sig/big_decimal_util.rbs +158 -0
  138. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/sig/big_math.rbs +423 -0
  139. data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/CHANGELOG.md +10 -1
  140. data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/AbstractMemory.o +0 -0
  141. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/ArrayType.o +0 -0
  142. data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Buffer.o +0 -0
  143. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/Call.o +0 -0
  144. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/ClosurePool.o +0 -0
  145. data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/DynamicLibrary.o +0 -0
  146. data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Function.o +0 -0
  147. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/FunctionInfo.o +0 -0
  148. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/LastError.o +0 -0
  149. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/LongDouble.o +0 -0
  150. data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Makefile +2 -2
  151. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/MappedType.o +0 -0
  152. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/MemoryPointer.o +0 -0
  153. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/MethodHandle.o +0 -0
  154. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/Platform.o +0 -0
  155. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/Pointer.o +0 -0
  156. data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Struct.o +0 -0
  157. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/StructByValue.o +0 -0
  158. data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/StructLayout.c +129 -12
  159. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/StructLayout.o +0 -0
  160. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/Thread.o +0 -0
  161. data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Type.o +0 -0
  162. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/Types.o +0 -0
  163. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/Variadic.o +0 -0
  164. data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/ffi.o +0 -0
  165. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/ffi_c.so +0 -0
  166. data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ffi.gemspec +3 -1
  167. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/lib/ffi/version.rb +3 -0
  168. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/lib/ffi_c.so +0 -0
  169. data/vendor/bundle/ruby/2.6.0/gems/json-2.7.6/ext/json/ext/generator/Makefile +2 -2
  170. data/vendor/bundle/ruby/2.6.0/gems/json-2.7.6/ext/json/ext/parser/Makefile +2 -2
  171. data/vendor/bundle/ruby/2.6.0/specifications/{addressable-2.8.9.gemspec → addressable-2.9.0.gemspec} +3 -3
  172. data/vendor/bundle/ruby/2.6.0/specifications/{autotest-fsevent-0.3.1.gemspec → autotest-fsevent-0.3.2.gemspec} +3 -3
  173. data/vendor/bundle/ruby/2.6.0/specifications/{bigdecimal-4.0.1.gemspec → bigdecimal-4.1.2.gemspec} +3 -3
  174. data/vendor/bundle/ruby/2.6.0/specifications/{ffi-1.17.3.gemspec → ffi-1.17.4.gemspec} +2 -2
  175. metadata +513 -748
  176. data/vendor/bundle/ruby/2.6.0/cache/addressable-2.8.9.gem +0 -0
  177. data/vendor/bundle/ruby/2.6.0/cache/autotest-fsevent-0.3.1.gem +0 -0
  178. data/vendor/bundle/ruby/2.6.0/cache/bigdecimal-4.0.1.gem +0 -0
  179. data/vendor/bundle/ruby/2.6.0/cache/ffi-1.17.3.gem +0 -0
  180. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/bigdecimal-4.0.1/bigdecimal.so +0 -0
  181. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/bigdecimal-4.0.1/gem_make.out +0 -145
  182. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.17.3/ffi_c.so +0 -0
  183. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.0.1/ext/bigdecimal/bigdecimal.o +0 -0
  184. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.0.1/ext/bigdecimal/bigdecimal.so +0 -0
  185. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.0.1/ext/bigdecimal/missing.o +0 -0
  186. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.0.1/lib/bigdecimal.so +0 -0
  187. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.0.1/sample/linear.rb +0 -74
  188. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.0.1/sample/nlsolve.rb +0 -40
  189. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/ArrayType.o +0 -0
  190. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/Call.o +0 -0
  191. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/ClosurePool.o +0 -0
  192. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/FunctionInfo.o +0 -0
  193. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/LastError.o +0 -0
  194. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/LongDouble.o +0 -0
  195. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/MappedType.o +0 -0
  196. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/MemoryPointer.o +0 -0
  197. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/MethodHandle.o +0 -0
  198. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/Platform.o +0 -0
  199. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/Pointer.o +0 -0
  200. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/StructByValue.o +0 -0
  201. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/StructLayout.o +0 -0
  202. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/Thread.o +0 -0
  203. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/Types.o +0 -0
  204. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/Variadic.o +0 -0
  205. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/ffi_c.so +0 -0
  206. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.allow-ai-service +0 -0
  207. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.ci/Containerfile.ppc64le +0 -12
  208. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.ci/ar-lib +0 -270
  209. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.ci/bfin-sim.exp +0 -58
  210. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +0 -18
  211. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.ci/build-in-container.sh +0 -10
  212. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.ci/build.sh +0 -129
  213. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.ci/compile +0 -351
  214. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.ci/install.sh +0 -74
  215. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.ci/m32r-sim.exp +0 -58
  216. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.ci/moxie-sim.exp +0 -60
  217. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.ci/msvs-detect +0 -1103
  218. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.ci/or1k-sim.exp +0 -58
  219. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.ci/powerpc-eabisim.exp +0 -58
  220. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.ci/site.exp +0 -35
  221. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.ci/unix-noexec.exp +0 -7
  222. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.ci/wine-sim.exp +0 -55
  223. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.gail-labels +0 -44
  224. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.gitattributes +0 -4
  225. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.github/issue_template.md +0 -10
  226. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.github/workflows/build.yml +0 -358
  227. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.github/workflows/emscripten.yml +0 -215
  228. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.github/workflows/label-new-issue.yaml +0 -15
  229. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.github/workflows/tarball.yml +0 -55
  230. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/.gitignore +0 -46
  231. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/Makefile.am +0 -89
  232. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/config/default.exp +0 -1
  233. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +0 -34
  234. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/emscripten/build.sh +0 -46
  235. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +0 -86
  236. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +0 -23
  237. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/emscripten/test.html +0 -7
  238. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +0 -51
  239. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/lib/libffi.exp +0 -695
  240. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +0 -283
  241. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +0 -45
  242. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +0 -28
  243. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +0 -78
  244. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +0 -50
  245. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +0 -63
  246. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +0 -1746
  247. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +0 -2885
  248. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +0 -747
  249. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +0 -46
  250. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +0 -46
  251. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +0 -41
  252. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +0 -54
  253. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/callback.c +0 -99
  254. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/callback2.c +0 -108
  255. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/callback3.c +0 -114
  256. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/callback4.c +0 -119
  257. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +0 -26
  258. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +0 -166
  259. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/float.c +0 -59
  260. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +0 -60
  261. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +0 -61
  262. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +0 -74
  263. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +0 -62
  264. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +0 -110
  265. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/longjmp.c +0 -60
  266. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/many.c +0 -59
  267. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +0 -57
  268. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +0 -70
  269. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +0 -78
  270. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -52
  271. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +0 -46
  272. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/overread.c +0 -54
  273. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +0 -127
  274. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +0 -59
  275. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc_tc.c +0 -114
  276. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +0 -36
  277. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +0 -43
  278. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +0 -42
  279. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +0 -35
  280. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +0 -36
  281. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +0 -49
  282. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +0 -42
  283. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +0 -34
  284. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +0 -41
  285. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +0 -48
  286. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +0 -36
  287. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +0 -42
  288. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +0 -38
  289. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +0 -42
  290. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +0 -60
  291. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +0 -43
  292. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +0 -49
  293. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +0 -49
  294. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +0 -55
  295. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +0 -67
  296. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +0 -57
  297. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +0 -67
  298. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +0 -60
  299. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +0 -64
  300. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +0 -66
  301. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +0 -64
  302. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +0 -74
  303. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +0 -81
  304. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +0 -68
  305. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +0 -63
  306. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +0 -65
  307. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +0 -65
  308. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +0 -67
  309. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +0 -67
  310. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +0 -93
  311. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +0 -61
  312. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct_int_float.c +0 -88
  313. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +0 -63
  314. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +0 -90
  315. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +0 -61
  316. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +0 -78
  317. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +0 -220
  318. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +0 -154
  319. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +0 -134
  320. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +0 -135
  321. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +0 -141
  322. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.call/x32.c +0 -31
  323. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +0 -67
  324. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +0 -90
  325. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +0 -83
  326. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +0 -83
  327. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +0 -102
  328. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +0 -91
  329. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +0 -94
  330. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +0 -92
  331. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +0 -96
  332. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +0 -61
  333. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +0 -112
  334. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +0 -117
  335. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +0 -120
  336. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +0 -131
  337. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +0 -93
  338. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +0 -109
  339. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +0 -113
  340. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +0 -145
  341. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +0 -103
  342. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +0 -114
  343. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +0 -103
  344. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +0 -103
  345. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +0 -113
  346. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +0 -120
  347. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +0 -103
  348. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +0 -137
  349. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +0 -116
  350. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +0 -148
  351. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +0 -140
  352. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +0 -121
  353. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +0 -155
  354. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +0 -121
  355. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +0 -102
  356. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +0 -103
  357. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +0 -103
  358. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +0 -111
  359. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +0 -109
  360. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +0 -111
  361. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +0 -147
  362. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +0 -152
  363. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +0 -113
  364. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +0 -108
  365. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +0 -106
  366. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +0 -109
  367. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +0 -108
  368. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +0 -109
  369. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +0 -111
  370. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +0 -68
  371. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double.c +0 -43
  372. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +0 -69
  373. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +0 -46
  374. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +0 -115
  375. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +0 -80
  376. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_args.c +0 -70
  377. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_float_double.c +0 -55
  378. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +0 -78
  379. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +0 -79
  380. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +0 -94
  381. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +0 -99
  382. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +0 -78
  383. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +0 -94
  384. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +0 -79
  385. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +0 -152
  386. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +0 -47
  387. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +0 -44
  388. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +0 -45
  389. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +0 -125
  390. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +0 -45
  391. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +0 -47
  392. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +0 -49
  393. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +0 -49
  394. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +0 -49
  395. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +0 -46
  396. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/err_bad_abi.c +0 -36
  397. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +0 -1
  398. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +0 -342
  399. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +0 -175
  400. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +0 -161
  401. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +0 -146
  402. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +0 -137
  403. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +0 -86
  404. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +0 -115
  405. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +0 -119
  406. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +0 -120
  407. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +0 -120
  408. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +0 -121
  409. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +0 -142
  410. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +0 -120
  411. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +0 -142
  412. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +0 -142
  413. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/problem1.c +0 -90
  414. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +0 -86
  415. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +0 -102
  416. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +0 -101
  417. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large.c +0 -145
  418. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large2.c +0 -148
  419. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +0 -124
  420. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +0 -125
  421. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +0 -75
  422. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +0 -120
  423. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +0 -57
  424. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +0 -91
  425. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +0 -10
  426. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +0 -10
  427. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +0 -10
  428. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +0 -42
  429. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +0 -10
  430. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +0 -10
  431. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +0 -10
  432. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +0 -71
  433. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +0 -10
  434. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +0 -10
  435. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +0 -10
  436. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +0 -80
  437. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +0 -10
  438. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +0 -16
  439. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +0 -10
  440. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +0 -36
  441. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +0 -51
  442. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +0 -7
  443. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +0 -7
  444. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +0 -7
  445. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +0 -10
  446. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +0 -10
  447. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +0 -86
  448. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +0 -10
  449. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +0 -1
  450. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +0 -78
  451. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +0 -10
  452. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +0 -10
  453. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +0 -10
  454. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +0 -37
  455. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +0 -41
  456. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +0 -10
  457. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +0 -10
  458. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +0 -10
  459. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +0 -44
  460. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +0 -10
  461. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +0 -10
  462. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +0 -10
  463. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +0 -10
  464. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +0 -10
  465. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +0 -10
  466. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +0 -34
  467. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +0 -28
  468. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +0 -1
  469. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +0 -36
  470. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +0 -19
  471. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.threads/ffitest.h +0 -1
  472. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.threads/threads.exp +0 -50
  473. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/ext/ffi_c/libffi/testsuite/libffi.threads/tsan.c +0 -74
  474. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/lib/ffi/version.rb +0 -3
  475. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.3/lib/ffi_c.so +0 -0
  476. /data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/gem.build_complete +0 -0
  477. /data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/gem.build_complete +0 -0
  478. /data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{ffi-1.17.3 → ffi-1.17.4}/gem.build_complete +0 -0
  479. /data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.9 → addressable-2.9.0}/LICENSE.txt +0 -0
  480. /data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.9 → addressable-2.9.0}/README.md +0 -0
  481. /data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.9 → addressable-2.9.0}/lib/addressable/idna/native.rb +0 -0
  482. /data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.9 → addressable-2.9.0}/lib/addressable/idna/pure.rb +0 -0
  483. /data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.9 → addressable-2.9.0}/lib/addressable/idna.rb +0 -0
  484. /data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.9 → addressable-2.9.0}/lib/addressable/uri.rb +0 -0
  485. /data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.9 → addressable-2.9.0}/lib/addressable.rb +0 -0
  486. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/LICENSE.txt +0 -0
  487. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/README.md +0 -0
  488. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/ext/fsevent/Makefile +0 -0
  489. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/ext/fsevent/extconf.rb +0 -0
  490. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/ext/fsevent/fsevent.dll +0 -0
  491. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/ext/fsevent/fsevent.so +0 -0
  492. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/ext/fsevent/fsevent_sleep.c +0 -0
  493. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/ext/fsevent/make +0 -0
  494. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/ext/fsevent/nmake.bat +0 -0
  495. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/lib/autotest/fsevent.rb +0 -0
  496. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/lib/autotest-fsevent.rb +0 -0
  497. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/post-install.txt +0 -0
  498. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.3.1 → autotest-fsevent-0.3.2}/prebuilt/fsevent_sleep +0 -0
  499. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/LICENSE +0 -0
  500. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/ext/bigdecimal/.sitearchdir.time +0 -0
  501. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/ext/bigdecimal/bits.h +0 -0
  502. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/ext/bigdecimal/feature.h +0 -0
  503. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/ext/bigdecimal/missing.c +0 -0
  504. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/ext/bigdecimal/static_assert.h +0 -0
  505. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/lib/bigdecimal/jacobian.rb +0 -0
  506. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/lib/bigdecimal/ludcmp.rb +0 -0
  507. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.2}/lib/bigdecimal/newton.rb +0 -0
  508. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/COPYING +0 -0
  509. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/Gemfile +0 -0
  510. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/LICENSE +0 -0
  511. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/LICENSE.SPECS +0 -0
  512. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/README.md +0 -0
  513. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/Rakefile +0 -0
  514. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/Steepfile +0 -0
  515. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/.sitearchdir.time +0 -0
  516. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/AbstractMemory.c +0 -0
  517. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/AbstractMemory.h +0 -0
  518. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/ArrayType.c +0 -0
  519. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/ArrayType.h +0 -0
  520. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Buffer.c +0 -0
  521. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Call.c +0 -0
  522. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Call.h +0 -0
  523. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/ClosurePool.c +0 -0
  524. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/ClosurePool.h +0 -0
  525. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/DynamicLibrary.c +0 -0
  526. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/DynamicLibrary.h +0 -0
  527. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Function.c +0 -0
  528. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Function.h +0 -0
  529. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/FunctionInfo.c +0 -0
  530. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/LastError.c +0 -0
  531. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/LastError.h +0 -0
  532. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/LongDouble.c +0 -0
  533. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/LongDouble.h +0 -0
  534. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/MappedType.c +0 -0
  535. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/MappedType.h +0 -0
  536. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/MemoryPointer.c +0 -0
  537. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/MemoryPointer.h +0 -0
  538. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/MethodHandle.c +0 -0
  539. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/MethodHandle.h +0 -0
  540. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Platform.c +0 -0
  541. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Platform.h +0 -0
  542. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Pointer.c +0 -0
  543. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Pointer.h +0 -0
  544. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Struct.c +0 -0
  545. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Struct.h +0 -0
  546. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/StructByValue.c +0 -0
  547. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/StructByValue.h +0 -0
  548. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Thread.c +0 -0
  549. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Thread.h +0 -0
  550. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Type.c +0 -0
  551. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Type.h +0 -0
  552. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Types.c +0 -0
  553. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Types.h +0 -0
  554. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/Variadic.c +0 -0
  555. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/compat.h +0 -0
  556. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/extconf.h +0 -0
  557. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/extconf.rb +0 -0
  558. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/ffi.c +0 -0
  559. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/ChangeLog.old +0 -0
  560. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/LICENSE +0 -0
  561. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +0 -0
  562. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/Makefile.am +0 -0
  563. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/Makefile.in +0 -0
  564. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/README.md +0 -0
  565. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/acinclude.m4 +0 -0
  566. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/autogen.sh +0 -0
  567. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/compile +0 -0
  568. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/config.guess +0 -0
  569. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/config.sub +0 -0
  570. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/configure +0 -0
  571. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/configure.ac +0 -0
  572. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/configure.host +0 -0
  573. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/doc/Makefile.am +0 -0
  574. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/doc/Makefile.in +0 -0
  575. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/doc/libffi.texi +0 -0
  576. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/doc/version.texi +0 -0
  577. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/fficonfig.h.in +0 -0
  578. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +0 -0
  579. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/include/Makefile.am +0 -0
  580. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/include/Makefile.in +0 -0
  581. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/include/ffi.h.in +0 -0
  582. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/include/ffi_cfi.h +0 -0
  583. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/include/ffi_common.h +0 -0
  584. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/include/tramp.h +0 -0
  585. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/install-sh +0 -0
  586. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/libffi.map.in +0 -0
  587. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/libffi.pc.in +0 -0
  588. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +0 -0
  589. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/libtool-ldflags +0 -0
  590. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/libtool-version +0 -0
  591. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/ltmain.sh +0 -0
  592. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/m4/asmcfi.m4 +0 -0
  593. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/m4/ax_append_flag.m4 +0 -0
  594. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +0 -0
  595. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +0 -0
  596. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +0 -0
  597. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +0 -0
  598. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/m4/ax_configure_args.m4 +0 -0
  599. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +0 -0
  600. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +0 -0
  601. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +0 -0
  602. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +0 -0
  603. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/m4/ax_require_defined.m4 +0 -0
  604. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/make_sunver.pl +0 -0
  605. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/man/Makefile.am +0 -0
  606. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/man/Makefile.in +0 -0
  607. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/man/ffi.3 +0 -0
  608. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/man/ffi_call.3 +0 -0
  609. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/man/ffi_prep_cif.3 +0 -0
  610. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +0 -0
  611. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/missing +0 -0
  612. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +0 -0
  613. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +0 -0
  614. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +0 -0
  615. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +0 -0
  616. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +0 -0
  617. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +0 -0
  618. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/msvcc.sh +0 -0
  619. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/aarch64/ffi.c +0 -0
  620. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/aarch64/ffitarget.h +0 -0
  621. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/aarch64/internal.h +0 -0
  622. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/aarch64/sysv.S +0 -0
  623. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +0 -0
  624. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/alpha/ffi.c +0 -0
  625. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/alpha/ffitarget.h +0 -0
  626. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/alpha/internal.h +0 -0
  627. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/alpha/osf.S +0 -0
  628. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/arc/arcompact.S +0 -0
  629. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/arc/ffi.c +0 -0
  630. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/arc/ffitarget.h +0 -0
  631. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/arm/ffi.c +0 -0
  632. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/arm/ffitarget.h +0 -0
  633. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/arm/internal.h +0 -0
  634. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/arm/sysv.S +0 -0
  635. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +0 -0
  636. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/avr32/ffi.c +0 -0
  637. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/avr32/ffitarget.h +0 -0
  638. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/avr32/sysv.S +0 -0
  639. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/bfin/ffi.c +0 -0
  640. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/bfin/ffitarget.h +0 -0
  641. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/bfin/sysv.S +0 -0
  642. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/closures.c +0 -0
  643. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/cris/ffi.c +0 -0
  644. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/cris/ffitarget.h +0 -0
  645. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/cris/sysv.S +0 -0
  646. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/csky/ffi.c +0 -0
  647. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/csky/ffitarget.h +0 -0
  648. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/csky/sysv.S +0 -0
  649. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/debug.c +0 -0
  650. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/dlmalloc.c +0 -0
  651. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/frv/eabi.S +0 -0
  652. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/frv/ffi.c +0 -0
  653. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/frv/ffitarget.h +0 -0
  654. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/ia64/ffi.c +0 -0
  655. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/ia64/ffitarget.h +0 -0
  656. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/ia64/ia64_flags.h +0 -0
  657. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/ia64/unix.S +0 -0
  658. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/java_raw_api.c +0 -0
  659. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/kvx/asm.h +0 -0
  660. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/kvx/ffi.c +0 -0
  661. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/kvx/ffitarget.h +0 -0
  662. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/kvx/sysv.S +0 -0
  663. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/loongarch64/ffi.c +0 -0
  664. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +0 -0
  665. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/loongarch64/sysv.S +0 -0
  666. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/m32r/ffi.c +0 -0
  667. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/m32r/ffitarget.h +0 -0
  668. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/m32r/sysv.S +0 -0
  669. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/m68k/ffi.c +0 -0
  670. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/m68k/ffitarget.h +0 -0
  671. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/m68k/sysv.S +0 -0
  672. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/m88k/ffi.c +0 -0
  673. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/m88k/ffitarget.h +0 -0
  674. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/m88k/obsd.S +0 -0
  675. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/metag/ffi.c +0 -0
  676. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/metag/ffitarget.h +0 -0
  677. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/metag/sysv.S +0 -0
  678. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/microblaze/ffi.c +0 -0
  679. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/microblaze/ffitarget.h +0 -0
  680. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/microblaze/sysv.S +0 -0
  681. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/mips/ffi.c +0 -0
  682. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/mips/ffitarget.h +0 -0
  683. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/mips/n32.S +0 -0
  684. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/mips/o32.S +0 -0
  685. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/moxie/eabi.S +0 -0
  686. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/moxie/ffi.c +0 -0
  687. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/moxie/ffitarget.h +0 -0
  688. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/or1k/ffi.c +0 -0
  689. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/or1k/ffitarget.h +0 -0
  690. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/or1k/sysv.S +0 -0
  691. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/pa/ffi.c +0 -0
  692. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/pa/ffi64.c +0 -0
  693. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/pa/ffitarget.h +0 -0
  694. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/pa/hpux32.S +0 -0
  695. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/pa/hpux64.S +0 -0
  696. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/pa/linux.S +0 -0
  697. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/aix.S +0 -0
  698. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/aix_closure.S +0 -0
  699. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/asm.h +0 -0
  700. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/darwin.S +0 -0
  701. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +0 -0
  702. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/ffi.c +0 -0
  703. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +0 -0
  704. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +0 -0
  705. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +0 -0
  706. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +0 -0
  707. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/ffitarget.h +0 -0
  708. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/internal.h +0 -0
  709. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/linux64.S +0 -0
  710. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +0 -0
  711. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +0 -0
  712. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/sysv.S +0 -0
  713. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/powerpc/t-aix +0 -0
  714. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/prep_cif.c +0 -0
  715. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/raw_api.c +0 -0
  716. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/riscv/ffi.c +0 -0
  717. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/riscv/ffitarget.h +0 -0
  718. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/riscv/internal.h +0 -0
  719. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/riscv/sysv.S +0 -0
  720. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/s390/ffi.c +0 -0
  721. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/s390/ffitarget.h +0 -0
  722. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/s390/internal.h +0 -0
  723. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/s390/sysv.S +0 -0
  724. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/sh/ffi.c +0 -0
  725. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/sh/ffitarget.h +0 -0
  726. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/sh/sysv.S +0 -0
  727. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/sh64/ffi.c +0 -0
  728. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/sh64/ffitarget.h +0 -0
  729. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/sh64/sysv.S +0 -0
  730. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/sparc/ffi.c +0 -0
  731. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/sparc/ffi64.c +0 -0
  732. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/sparc/ffitarget.h +0 -0
  733. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/sparc/internal.h +0 -0
  734. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/sparc/v8.S +0 -0
  735. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/sparc/v9.S +0 -0
  736. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/tile/ffi.c +0 -0
  737. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/tile/ffitarget.h +0 -0
  738. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/tile/tile.S +0 -0
  739. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/tramp.c +0 -0
  740. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/types.c +0 -0
  741. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/vax/elfbsd.S +0 -0
  742. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/vax/ffi.c +0 -0
  743. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/vax/ffitarget.h +0 -0
  744. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/wasm/ffi.c +0 -0
  745. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/wasm/ffitarget.h +0 -0
  746. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/x86/asmnames.h +0 -0
  747. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/x86/ffi.c +0 -0
  748. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/x86/ffi64.c +0 -0
  749. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/x86/ffitarget.h +0 -0
  750. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/x86/ffiw64.c +0 -0
  751. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/x86/internal.h +0 -0
  752. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/x86/internal64.h +0 -0
  753. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/x86/sysv.S +0 -0
  754. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/x86/sysv_intel.S +0 -0
  755. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/x86/unix64.S +0 -0
  756. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/x86/win64.S +0 -0
  757. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/x86/win64_intel.S +0 -0
  758. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/xtensa/ffi.c +0 -0
  759. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/xtensa/ffitarget.h +0 -0
  760. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/src/xtensa/sysv.S +0 -0
  761. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/stamp-h.in +0 -0
  762. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi/testsuite/Makefile.in +0 -0
  763. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi.bsd.mk +0 -0
  764. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi.darwin.mk +0 -0
  765. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi.gnu.mk +0 -0
  766. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi.mk +0 -0
  767. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi.vc.mk +0 -0
  768. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/libffi.vc64.mk +0 -0
  769. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/rbffi.h +0 -0
  770. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/ext/ffi_c/rbffi_endian.h +0 -0
  771. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/abstract_memory.rb +0 -0
  772. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/autopointer.rb +0 -0
  773. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/buffer.rb +0 -0
  774. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/callback.rb +0 -0
  775. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/compat.rb +0 -0
  776. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/data_converter.rb +0 -0
  777. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/dynamic_library.rb +0 -0
  778. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/enum.rb +0 -0
  779. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/errno.rb +0 -0
  780. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/ffi.rb +0 -0
  781. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/function.rb +0 -0
  782. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/io.rb +0 -0
  783. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/library.rb +0 -0
  784. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/library_path.rb +0 -0
  785. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/managedstruct.rb +0 -0
  786. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/memorypointer.rb +0 -0
  787. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/aarch64-darwin/types.conf +0 -0
  788. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/aarch64-freebsd/types.conf +0 -0
  789. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/aarch64-freebsd12/types.conf +0 -0
  790. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/aarch64-linux/types.conf +0 -0
  791. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/aarch64-openbsd/types.conf +0 -0
  792. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/aarch64-windows/types.conf +0 -0
  793. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/arm-freebsd/types.conf +0 -0
  794. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/arm-freebsd12/types.conf +0 -0
  795. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/arm-linux/types.conf +0 -0
  796. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/hppa1.1-linux/types.conf +0 -0
  797. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/hppa2.0-linux/types.conf +0 -0
  798. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/i386-cygwin/types.conf +0 -0
  799. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/i386-darwin/types.conf +0 -0
  800. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/i386-freebsd/types.conf +0 -0
  801. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/i386-freebsd12/types.conf +0 -0
  802. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/i386-gnu/types.conf +0 -0
  803. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/i386-linux/types.conf +0 -0
  804. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/i386-netbsd/types.conf +0 -0
  805. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/i386-openbsd/types.conf +0 -0
  806. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/i386-solaris/types.conf +0 -0
  807. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/i386-windows/types.conf +0 -0
  808. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/ia64-linux/types.conf +0 -0
  809. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/loongarch64-linux/types.conf +0 -0
  810. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/mips-linux/types.conf +0 -0
  811. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/mips64-linux/types.conf +0 -0
  812. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/mips64el-linux/types.conf +0 -0
  813. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/mipsel-linux/types.conf +0 -0
  814. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/mipsisa32r6-linux/types.conf +0 -0
  815. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/mipsisa32r6el-linux/types.conf +0 -0
  816. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/mipsisa64r6-linux/types.conf +0 -0
  817. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/mipsisa64r6el-linux/types.conf +0 -0
  818. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/powerpc-aix/types.conf +0 -0
  819. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/powerpc-darwin/types.conf +0 -0
  820. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/powerpc-linux/types.conf +0 -0
  821. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/powerpc-openbsd/types.conf +0 -0
  822. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/powerpc64-linux/types.conf +0 -0
  823. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/powerpc64le-linux/types.conf +0 -0
  824. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/riscv64-linux/types.conf +0 -0
  825. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/s390-linux/types.conf +0 -0
  826. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/s390x-linux/types.conf +0 -0
  827. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/sparc-linux/types.conf +0 -0
  828. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/sparc-solaris/types.conf +0 -0
  829. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/sparcv9-linux/types.conf +0 -0
  830. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/sparcv9-openbsd/types.conf +0 -0
  831. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/sparcv9-solaris/types.conf +0 -0
  832. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/sw_64-linux/types.conf +0 -0
  833. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/x86_64-cygwin/types.conf +0 -0
  834. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/x86_64-darwin/types.conf +0 -0
  835. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/x86_64-dragonflybsd/types.conf +0 -0
  836. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/x86_64-freebsd/types.conf +0 -0
  837. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/x86_64-freebsd12/types.conf +0 -0
  838. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/x86_64-haiku/types.conf +0 -0
  839. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/x86_64-linux/types.conf +0 -0
  840. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/x86_64-msys/types.conf +0 -0
  841. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/x86_64-netbsd/types.conf +0 -0
  842. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/x86_64-openbsd/types.conf +0 -0
  843. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/x86_64-solaris/types.conf +0 -0
  844. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform/x86_64-windows/types.conf +0 -0
  845. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/platform.rb +0 -0
  846. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/pointer.rb +0 -0
  847. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/struct.rb +0 -0
  848. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/struct_by_reference.rb +0 -0
  849. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/struct_layout.rb +0 -0
  850. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/struct_layout_builder.rb +0 -0
  851. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/tools/const_generator.rb +0 -0
  852. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/tools/generator.rb +0 -0
  853. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/tools/generator_task.rb +0 -0
  854. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/tools/struct_generator.rb +0 -0
  855. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/types.rb +0 -0
  856. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/union.rb +0 -0
  857. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi/variadic.rb +0 -0
  858. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/lib/ffi.rb +0 -0
  859. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/samples/getlogin.rb +0 -0
  860. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/samples/getpid.rb +0 -0
  861. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/samples/gettimeofday.rb +0 -0
  862. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/samples/hello.rb +0 -0
  863. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/samples/hello_ractor.rb +0 -0
  864. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/samples/inotify.rb +0 -0
  865. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/samples/pty.rb +0 -0
  866. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/samples/qsort.rb +0 -0
  867. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/samples/qsort_ractor.rb +0 -0
  868. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/abstract_memory.rbs +0 -0
  869. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/auto_pointer.rbs +0 -0
  870. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/buffer.rbs +0 -0
  871. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/data_converter.rbs +0 -0
  872. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/dynamic_library.rbs +0 -0
  873. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/enum.rbs +0 -0
  874. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/errno.rbs +0 -0
  875. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/function.rbs +0 -0
  876. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/library.rbs +0 -0
  877. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/native_type.rbs +0 -0
  878. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/platform.rbs +0 -0
  879. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/pointer.rbs +0 -0
  880. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/struct.rbs +0 -0
  881. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/struct_by_reference.rbs +0 -0
  882. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/struct_by_value.rbs +0 -0
  883. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/struct_layout.rbs +0 -0
  884. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/struct_layout_builder.rbs +0 -0
  885. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi/type.rbs +0 -0
  886. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.3 → ffi-1.17.4}/sig/ffi.rbs +0 -0
@@ -0,0 +1,183 @@
1
+ =begin
2
+ #Cloudsmith API (v1)
3
+
4
+ #The API to the Cloudsmith Service
5
+
6
+ OpenAPI spec version: v1
7
+ Contact: support@cloudsmith.io
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.50
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudsmithApi::RecycleBinPackage
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'RecycleBinPackage' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudsmithApi::RecycleBinPackage.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of RecycleBinPackage' do
31
+ it 'should create an instance of RecycleBinPackage' do
32
+ expect(@instance).to be_instance_of(CloudsmithApi::RecycleBinPackage)
33
+ end
34
+ end
35
+ describe 'test attribute "action_by"' 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
+
41
+ describe 'test attribute "downloads"' 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 "filename"' 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 "format"' 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
+
59
+ describe 'test attribute "fully_qualified_name"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "identifiers"' 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
+
71
+ describe 'test attribute "invoked_retention_rule"' 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
+
77
+ describe 'test attribute "is_deleteable"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "is_quarantined"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
89
+ describe 'test attribute "is_restorable"' do
90
+ it 'should work' do
91
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
+ end
93
+ end
94
+
95
+ describe 'test attribute "name"' do
96
+ it 'should work' do
97
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
+ end
99
+ end
100
+
101
+ describe 'test attribute "policy_violated"' do
102
+ it 'should work' do
103
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
+ end
105
+ end
106
+
107
+ describe 'test attribute "repository"' 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
+
113
+ describe 'test attribute "security_scan_completed_at"' do
114
+ it 'should work' do
115
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
+ end
117
+ end
118
+
119
+ describe 'test attribute "security_scan_status"' do
120
+ it 'should work' do
121
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
+ # 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"])
123
+ # validator.allowable_values.each do |value|
124
+ # expect { @instance.security_scan_status = value }.not_to raise_error
125
+ # end
126
+ end
127
+ end
128
+
129
+ describe 'test attribute "size"' do
130
+ it 'should work' do
131
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
132
+ end
133
+ end
134
+
135
+ describe 'test attribute "slug_perm"' do
136
+ it 'should work' do
137
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
138
+ end
139
+ end
140
+
141
+ describe 'test attribute "status"' do
142
+ it 'should work' do
143
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
144
+ end
145
+ end
146
+
147
+ describe 'test attribute "status_updated_at"' do
148
+ it 'should work' do
149
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
150
+ end
151
+ end
152
+
153
+ describe 'test attribute "tags"' do
154
+ it 'should work' do
155
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
156
+ end
157
+ end
158
+
159
+ describe 'test attribute "type_display"' do
160
+ it 'should work' do
161
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
162
+ end
163
+ end
164
+
165
+ describe 'test attribute "uploaded_at"' do
166
+ it 'should work' do
167
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
168
+ end
169
+ end
170
+
171
+ describe 'test attribute "uploader"' do
172
+ it 'should work' do
173
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
174
+ end
175
+ end
176
+
177
+ describe 'test attribute "version"' do
178
+ it 'should work' do
179
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
180
+ end
181
+ end
182
+
183
+ end
@@ -0,0 +1,41 @@
1
+ =begin
2
+ #Cloudsmith API (v1)
3
+
4
+ #The API to the Cloudsmith Service
5
+
6
+ OpenAPI spec version: v1
7
+ Contact: support@cloudsmith.io
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.50
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudsmithApi::RepositoryTokenPrivateBroadcastsRequest
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'RepositoryTokenPrivateBroadcastsRequest' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudsmithApi::RepositoryTokenPrivateBroadcastsRequest.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of RepositoryTokenPrivateBroadcastsRequest' do
31
+ it 'should create an instance of RepositoryTokenPrivateBroadcastsRequest' do
32
+ expect(@instance).to be_instance_of(CloudsmithApi::RepositoryTokenPrivateBroadcastsRequest)
33
+ end
34
+ end
35
+ describe 'test attribute "access_private_broadcasts"' 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
+
41
+ end
@@ -0,0 +1,41 @@
1
+ =begin
2
+ #Cloudsmith API (v1)
3
+
4
+ #The API to the Cloudsmith Service
5
+
6
+ OpenAPI spec version: v1
7
+ Contact: support@cloudsmith.io
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.50
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudsmithApi::RepositoryTokenPrivateBroadcasts
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'RepositoryTokenPrivateBroadcasts' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudsmithApi::RepositoryTokenPrivateBroadcasts.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of RepositoryTokenPrivateBroadcasts' do
31
+ it 'should create an instance of RepositoryTokenPrivateBroadcasts' do
32
+ expect(@instance).to be_instance_of(CloudsmithApi::RepositoryTokenPrivateBroadcasts)
33
+ end
34
+ end
35
+ describe 'test attribute "access_private_broadcasts"' 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
+
41
+ end
@@ -32,12 +32,6 @@ describe 'RepositoryTokenRefreshRequest' do
32
32
  expect(@instance).to be_instance_of(CloudsmithApi::RepositoryTokenRefreshRequest)
33
33
  end
34
34
  end
35
- describe 'test attribute "access_private_broadcasts"' 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
-
41
35
  describe 'test attribute "eula_required"' do
42
36
  it 'should work' do
43
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -32,12 +32,6 @@ describe 'RepositoryTokenRequestPatch' do
32
32
  expect(@instance).to be_instance_of(CloudsmithApi::RepositoryTokenRequestPatch)
33
33
  end
34
34
  end
35
- describe 'test attribute "access_private_broadcasts"' 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
-
41
35
  describe 'test attribute "eula_required"' do
42
36
  it 'should work' do
43
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -32,12 +32,6 @@ describe 'RepositoryTokenRequest' do
32
32
  expect(@instance).to be_instance_of(CloudsmithApi::RepositoryTokenRequest)
33
33
  end
34
34
  end
35
- describe 'test attribute "access_private_broadcasts"' 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
-
41
35
  describe 'test attribute "eula_required"' do
42
36
  it 'should work' do
43
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -75,7 +75,7 @@ describe 'RpmUpstream' do
75
75
  describe 'test attribute "disable_reason"' do
76
76
  it 'should work' do
77
77
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
78
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["N/A", "Upstream points to its own repository", "Missing upstream source", "Upstream was disabled by request of user"])
78
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["N/A", "Upstream points to its own repository", "Missing upstream source", "RSA key did not verify the upstream's APKINDEX signature", "Upstream was disabled by request of user"])
79
79
  # validator.allowable_values.each do |value|
80
80
  # expect { @instance.disable_reason = value }.not_to raise_error
81
81
  # end
@@ -75,7 +75,7 @@ describe 'RubyUpstream' do
75
75
  describe 'test attribute "disable_reason"' do
76
76
  it 'should work' do
77
77
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
78
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["N/A", "Upstream points to its own repository", "Missing upstream source", "Upstream was disabled by request of user"])
78
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["N/A", "Upstream points to its own repository", "Missing upstream source", "RSA key did not verify the upstream's APKINDEX signature", "Upstream was disabled by request of user"])
79
79
  # validator.allowable_values.each do |value|
80
80
  # expect { @instance.disable_reason = value }.not_to raise_error
81
81
  # end
@@ -62,4 +62,10 @@ describe 'StorageAllocatedLimitRaw' do
62
62
  end
63
63
  end
64
64
 
65
+ describe 'test attribute "used_pre_deduplication"' 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
+
65
71
  end
@@ -62,4 +62,10 @@ describe 'StorageAllocatedLimit' do
62
62
  end
63
63
  end
64
64
 
65
+ describe 'test attribute "used_pre_deduplication"' 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
+
65
71
  end
@@ -75,7 +75,7 @@ describe 'SwiftUpstream' do
75
75
  describe 'test attribute "disable_reason"' do
76
76
  it 'should work' do
77
77
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
78
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["N/A", "Upstream points to its own repository", "Missing upstream source", "Upstream was disabled by request of user"])
78
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["N/A", "Upstream points to its own repository", "Missing upstream source", "RSA key did not verify the upstream's APKINDEX signature", "Upstream was disabled by request of user"])
79
79
  # validator.allowable_values.each do |value|
80
80
  # expect { @instance.disable_reason = value }.not_to raise_error
81
81
  # end
@@ -1,14 +1,14 @@
1
- current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.3.1/ext/fsevent
2
- /usr/local/bin/ruby -I /usr/local/lib/ruby/site_ruby/2.6.0 -r ./siteconf20260323-877-1th368r.rb extconf.rb
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 ./siteconf20260424-877-fp86e9.rb extconf.rb
3
3
 
4
- current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.3.1/ext/fsevent
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
6
6
  make: *** No rule to make target 'clean'. Stop.
7
7
 
8
- current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.3.1/ext/fsevent
8
+ current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.3.2/ext/fsevent
9
9
  make DESTDIR\=
10
10
  make: Nothing to be done for 'all'.
11
11
 
12
- current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.3.1/ext/fsevent
12
+ current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.3.2/ext/fsevent
13
13
  make DESTDIR\= install
14
14
  make: Nothing to be done for 'install'.
@@ -0,0 +1,206 @@
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 ./siteconf20260424-877-g66gbj.rb extconf.rb
3
+ checking for __builtin_clz()... yes
4
+ checking for __builtin_clzl()... yes
5
+ checking for __builtin_clzll()... yes
6
+ checking for float.h... yes
7
+ checking for math.h... yes
8
+ checking for stdbool.h... yes
9
+ checking for stdlib.h... yes
10
+ checking for x86intrin.h... yes
11
+ checking for _lzcnt_u32() in x86intrin.h... no
12
+ checking for _lzcnt_u64() in x86intrin.h... no
13
+ checking for intrin.h... no
14
+ checking for ruby/atomic.h... no
15
+ checking for ruby/internal/has/builtin.h... no
16
+ checking for ruby/internal/static_assert.h... no
17
+ checking for rb_complex_real() in ruby.h... yes
18
+ checking for rb_complex_imag() in ruby.h... yes
19
+ checking for rb_opts_exception_p() in ruby.h... no
20
+ checking for rb_category_warn() in ruby.h... no
21
+ checking for RB_WARN_CATEGORY_DEPRECATED in ruby.h... no
22
+ checking for RUBY_TYPED_EMBEDDABLE in ruby.h... no
23
+ creating Makefile
24
+
25
+ current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/ext/bigdecimal
26
+ make DESTDIR\= clean
27
+
28
+ current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/ext/bigdecimal
29
+ make DESTDIR\=
30
+ compiling bigdecimal.c
31
+ In file included from bigdecimal.c:32:
32
+ ntt.h: In function ‘ntt_recursive’:
33
+ ntt.h:39:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
34
+ 39 | uint32_t size_half = (uint32_t)1 << (size_bits - 1);
35
+ | ^~~~~~~~
36
+ In file included from bigdecimal.c:32:
37
+ ntt.h: In function ‘ntt_multiply’:
38
+ ntt.h:126:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
39
+ 126 | int ntt_size_bits = (int)bit_length(b_size - 1) + 1;
40
+ | ^~~
41
+ ntt.h:132:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
42
+ 132 | uint32_t ntt_size = (uint32_t)1 << ntt_size_bits;
43
+ | ^~~~~~~~
44
+ ntt.h:184:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
45
+ 184 | uint32_t carry = 0;
46
+ | ^~~~~~~~
47
+ In file included from bigdecimal.c:33:
48
+ div.h: In function ‘newton_raphson_inverse’:
49
+ div.h:6:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
50
+ 6 | VALUE one = bdone.bigdecimal;
51
+ | ^~~~~
52
+ In file included from bigdecimal.c:11:
53
+ bigdecimal.h:21:20: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
54
+ 21 | #define DECDIG_DBL uint64_t
55
+ | ^~~~~~~~
56
+ div.h:12:5: note: in expansion of macro ‘DECDIG_DBL’
57
+ 12 | DECDIG_DBL numerator = (DECDIG_DBL)BIGDECIMAL_BASE * 100;
58
+ | ^~~~~~~~~~
59
+ In file included from bigdecimal.c:33:
60
+ div.h:20:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
61
+ 20 | VALUE inv = inv0.bigdecimal;
62
+ | ^~~~~
63
+ div.h:29:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
64
+ 29 | VALUE one_minus_x_inv = BigDecimal_sub2(
65
+ | ^~~~~
66
+ div.h: In function ‘slice_copy’:
67
+ div.h:69:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
68
+ 69 | size_t max_length = (size_t)((ssize_t)src->Prec - start);
69
+ | ^~~~~~
70
+ div.h: In function ‘divmod_newton’:
71
+ div.h:93:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
72
+ 93 | size_t n = x_digits / y_digits;
73
+ | ^~~~~~
74
+ div.h:108:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
75
+ 108 | BDVALUE bdmod = GetBDValueMust(mod);
76
+ | ^~~~~~~
77
+ div.h:118:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
78
+ 118 | VALUE div;
79
+ | ^~~~~
80
+ div.h:120:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
81
+ 120 | BDVALUE bddiv = GetBDValueMust(div);
82
+ | ^~~~~~~
83
+ bigdecimal.c: In function ‘GetBDValueWithPrecInternal’:
84
+ bigdecimal.c:318:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
85
+ 318 | Real *vp = VpPtr(v);
86
+ | ^~~~
87
+ In file included from bigdecimal.c:11:
88
+ bigdecimal.c: In function ‘VpCountPrecisionAndScale’:
89
+ bigdecimal.h:20:16: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
90
+ 20 | #define DECDIG uint32_t
91
+ | ^~~~~~~~
92
+ bigdecimal.c:381:5: note: in expansion of macro ‘DECDIG’
93
+ 381 | DECDIG x;
94
+ | ^~~~~~
95
+ bigdecimal.c:387:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
96
+ 387 | int nlz = BASE_FIG;
97
+ | ^~~
98
+ bigdecimal.c:390:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
99
+ 390 | int ntz = 0;
100
+ | ^~~
101
+ bigdecimal.c:429:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
102
+ 429 | ssize_t ex = p->exponent;
103
+ | ^~~~~~~
104
+ bigdecimal.c: In function ‘BigDecimal_n_significant_digits’:
105
+ bigdecimal.c:576:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
106
+ 576 | ssize_t n = v.real->Prec; /* The length of frac without trailing zeros. */
107
+ | ^~~~~~~
108
+ In file included from bigdecimal.c:11:
109
+ bigdecimal.h:20:16: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
110
+ 20 | #define DECDIG uint32_t
111
+ | ^~~~~~~~
112
+ bigdecimal.c:580:5: note: in expansion of macro ‘DECDIG’
113
+ 580 | DECDIG x;
114
+ | ^~~~~~
115
+ bigdecimal.c:584:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
116
+ 584 | int ntz = 0;
117
+ | ^~~
118
+ bigdecimal.c:588:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
119
+ 588 | ssize_t n_significant_digits = BASE_FIG*n - nlz - ntz;
120
+ | ^~~~~~~
121
+ bigdecimal.c: In function ‘GetAddSubPrec’:
122
+ bigdecimal.c:966:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
123
+ 966 | ssize_t min_a = a->exponent - a->Prec;
124
+ | ^~~~~~~
125
+ bigdecimal.c: In function ‘BigDecimal_addsub_with_coerce’:
126
+ bigdecimal.c:1285:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
127
+ 1285 | size_t pl = VpGetPrecLimit();
128
+ | ^~~~~~
129
+ bigdecimal.c: In function ‘BigDecimal_DoDivmod’:
130
+ bigdecimal.c:1675:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
131
+ 1675 | VALUE nan = BigDecimal_nan();
132
+ | ^~~~~
133
+ bigdecimal.c: In function ‘rb_uint64_convert_to_BigDecimal’:
134
+ bigdecimal.c:2583:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
135
+ 2583 | const size_t exp = len + ntz;
136
+ | ^~~~~
137
+ bigdecimal.c: In function ‘rb_big_convert_to_BigDecimal’:
138
+ bigdecimal.c:2612:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
139
+ 2612 | int leading_zeros;
140
+ | ^~~
141
+ bigdecimal.c: In function ‘rb_float_convert_to_BigDecimal’:
142
+ bigdecimal.c:2666:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
143
+ 2666 | double d = RFLOAT_VALUE(val);
144
+ | ^~~~~~
145
+ bigdecimal.c:2701:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
146
+ 2701 | char buf[BIGDECIMAL_DOUBLE_FIGURES + BASE_FIG + 2 + 1]; /* sizeof(buf) == 28 in the typical case */
147
+ | ^~~~
148
+ bigdecimal.c:2714:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
149
+ 2714 | VALUE inum;
150
+ | ^~~~~
151
+ bigdecimal.c:2771:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
152
+ 2771 | const size_t ntz10 = prec * BASE_FIG - len10;
153
+ | ^~~~~
154
+ bigdecimal.c:2791:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
155
+ 2791 | const size_t nlz10 = decpt % BASE_FIG;
156
+ | ^~~~~
157
+ bigdecimal.c:2794:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
158
+ 2794 | const size_t ntz10 = prec * BASE_FIG - nlz10 - len10;
159
+ | ^~~~~
160
+ bigdecimal.c:2807:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
161
+ 2807 | VALUE bd = rb_inum_convert_to_BigDecimal(inum);
162
+ | ^~~~~
163
+ bigdecimal.c: In function ‘rb_rational_convert_to_BigDecimal’:
164
+ bigdecimal.c:2829:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
165
+ 2829 | VALUE num = rb_inum_convert_to_BigDecimal(rb_rational_num(val));
166
+ | ^~~~~
167
+ bigdecimal.c: In function ‘rb_convert_to_BigDecimal’:
168
+ bigdecimal.c:2874:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
169
+ 2874 | Real *vp = VpPtr(val);
170
+ | ^~~~
171
+ bigdecimal.c:2911:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
172
+ 2911 | VALUE str = rb_check_convert_type(val, T_STRING, "String", "to_str");
173
+ | ^~~~~
174
+ bigdecimal.c: In function ‘f_BigDecimal’:
175
+ bigdecimal.c:2974:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
176
+ 2974 | int exception = opts_exception_p(opts);
177
+ | ^~~
178
+ bigdecimal.c: In function ‘VpAlloc’:
179
+ bigdecimal.c:4197:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
180
+ 4197 | NULLABLE_BDVALUE special_bd = bigdecimal_parse_special_string(szVal);
181
+ | ^~~~~~~~~~~~~~~~
182
+ bigdecimal.c:4365:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
183
+ 4365 | VALUE obj = BigDecimal_allocate(nalloc);
184
+ | ^~~~~
185
+ In file included from bigdecimal.c:11:
186
+ bigdecimal.c: In function ‘VpMult’:
187
+ bigdecimal.h:21:20: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
188
+ 21 | #define DECDIG_DBL uint64_t
189
+ | ^~~~~~~~
190
+ bigdecimal.c:4906:13: note: in expansion of macro ‘DECDIG_DBL’
191
+ 4906 | DECDIG_DBL carry = 0;
192
+ | ^~~~~~~~~~
193
+ bigdecimal.c: In function ‘VpToString’:
194
+ bigdecimal.c:5537:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
195
+ 5537 | size_t ex_n = Vp_ulltoa(ex, ulltoa_buf_end - 1);
196
+ | ^~~~~~
197
+ bigdecimal.c: At top level:
198
+ cc1: warning: unrecognized command line option ‘-Wno-self-assign’
199
+ cc1: warning: unrecognized command line option ‘-Wno-parentheses-equality’
200
+ cc1: warning: unrecognized command line option ‘-Wno-constant-logical-operand’
201
+ compiling missing.c
202
+ linking shared-object bigdecimal.so
203
+
204
+ current directory: /home/circleci/project/bindings/ruby/src/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/ext/bigdecimal
205
+ make DESTDIR\= install
206
+ /usr/bin/install -c -m 0755 bigdecimal.so ./.gem.20260424-877-4a0wu2