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
@@ -1,4 +1,4 @@
1
- # frozen_string_literal: false
1
+ # frozen_string_literal: true
2
2
  #
3
3
  #--
4
4
  # bigdecimal/util extends various native classes to provide the #to_d method,
@@ -12,6 +12,9 @@ end
12
12
 
13
13
  class BigDecimal
14
14
  module Internal # :nodoc:
15
+ # Default extra precision for intermediate calculations
16
+ # This value is currently the same as BigDecimal.double_fig, but defined separately for future changes.
17
+ EXTRA_PREC = 16
15
18
 
16
19
  # Coerce x to BigDecimal with the specified precision.
17
20
  # TODO: some methods (example: BigMath.exp) require more precision than specified to coerce.
@@ -54,12 +57,59 @@ class BigDecimal
54
57
  BigDecimal::INFINITY
55
58
  end
56
59
 
60
+ def self.underflow_computation_result # :nodoc:
61
+ if BigDecimal.mode(BigDecimal::EXCEPTION_ALL).anybits?(BigDecimal::EXCEPTION_UNDERFLOW)
62
+ raise FloatDomainError, 'Exponent underflow'
63
+ end
64
+ BigDecimal(0)
65
+ end
66
+
57
67
  def self.nan_computation_result # :nodoc:
58
68
  if BigDecimal.mode(BigDecimal::EXCEPTION_ALL).anybits?(BigDecimal::EXCEPTION_NaN)
59
69
  raise FloatDomainError, "Computation results to 'NaN'"
60
70
  end
61
71
  BigDecimal::NAN
62
72
  end
73
+
74
+ # Iteration for Newton's method with increasing precision
75
+ def self.newton_loop(prec, initial_precision: BigDecimal.double_fig / 2, safe_margin: 2) # :nodoc:
76
+ precs = []
77
+ while prec > initial_precision
78
+ precs << prec
79
+ prec = (precs.last + 1) / 2 + safe_margin
80
+ end
81
+ precs.reverse_each do |p|
82
+ yield p
83
+ end
84
+ end
85
+
86
+ # Calculates Math.log(x.to_f) considering large or small exponent
87
+ def self.float_log(x) # :nodoc:
88
+ Math.log(x._decimal_shift(-x.exponent).to_f) + x.exponent * Math.log(10)
89
+ end
90
+
91
+ # Calculating Taylor series sum using binary splitting method
92
+ # Calculates f(x) = (x/d0)*(1+(x/d1)*(1+(x/d2)*(1+(x/d3)*(1+...))))
93
+ # x.n_significant_digits or ds.size must be small to be performant.
94
+ def self.taylor_sum_binary_splitting(x, ds, prec) # :nodoc:
95
+ fs = ds.map {|d| [0, BigDecimal(d)] }
96
+ # fs = [[a0, a1], [b0, b1], [c0, c1], ...]
97
+ # f(x) = a0/a1+(x/a1)*(1+b0/b1+(x/b1)*(1+c0/c1+(x/c1)*(1+d0/d1+(x/d1)*(1+...))))
98
+ while fs.size > 1
99
+ # Merge two adjacent fractions
100
+ # from: (1 + a0/a1 + x/a1 * (1 + b0/b1 + x/b1 * rest))
101
+ # to: (1 + (a0*b1+x*(b0+b1))/(a1*b1) + (x*x)/(a1*b1) * rest)
102
+ xn = xn ? xn.mult(xn, prec) : x
103
+ fs = fs.each_slice(2).map do |(a, b)|
104
+ b ||= [0, BigDecimal(1)._decimal_shift([xn.exponent, 0].max + 2)]
105
+ [
106
+ (a[0] * b[1]).add(xn * (b[0] + b[1]), prec),
107
+ a[1].mult(b[1], prec)
108
+ ]
109
+ end
110
+ end
111
+ BigDecimal(fs[0][0]).div(fs[0][1], prec)
112
+ end
63
113
  end
64
114
 
65
115
  # call-seq:
@@ -170,7 +220,7 @@ class BigDecimal
170
220
  result_prec = prec.nonzero? || [x.n_significant_digits, y.n_significant_digits, BigDecimal.double_fig].max + BigDecimal.double_fig
171
221
  result_prec = [result_prec, limit].min if prec.zero? && limit.nonzero?
172
222
 
173
- prec2 = result_prec + BigDecimal.double_fig
223
+ prec2 = result_prec + BigDecimal::Internal::EXTRA_PREC
174
224
 
175
225
  if y < 0
176
226
  inv = x.power(-y, prec2)
@@ -226,9 +276,7 @@ class BigDecimal
226
276
  ex = exponent / 2
227
277
  x = _decimal_shift(-2 * ex)
228
278
  y = BigDecimal(Math.sqrt(x.to_f), 0)
229
- precs = [prec + BigDecimal.double_fig]
230
- precs << 2 + precs.last / 2 while precs.last > BigDecimal.double_fig
231
- precs.reverse_each do |p|
279
+ Internal.newton_loop(prec + BigDecimal::Internal::EXTRA_PREC) do |p|
232
280
  y = y.add(x.div(y, p), p).div(2, p)
233
281
  end
234
282
  y._decimal_shift(ex).mult(1, prec)
@@ -263,60 +311,36 @@ module BigMath
263
311
  return BigDecimal::Internal.infinity_computation_result if x.infinite?
264
312
  return BigDecimal(0) if x == 1
265
313
 
266
- prec2 = prec + BigDecimal.double_fig
267
- BigDecimal.save_limit do
268
- BigDecimal.limit(0)
269
- if x > 10 || x < 0.1
270
- log10 = log(BigDecimal(10), prec2)
271
- exponent = x.exponent
272
- x = x._decimal_shift(-exponent)
273
- if x < 0.3
274
- x *= 10
275
- exponent -= 1
276
- end
277
- return (log10 * exponent).add(log(x, prec2), prec)
278
- end
279
-
280
- x_minus_one_exponent = (x - 1).exponent
281
-
282
- # log(x) = log(sqrt(sqrt(sqrt(sqrt(x))))) * 2**sqrt_steps
283
- sqrt_steps = [Integer.sqrt(prec2) + 3 * x_minus_one_exponent, 0].max
314
+ prec2 = prec + BigDecimal::Internal::EXTRA_PREC
284
315
 
285
- lg2 = 0.3010299956639812
286
- sqrt_prec = prec2 + [-x_minus_one_exponent, 0].max + (sqrt_steps * lg2).ceil
287
-
288
- sqrt_steps.times do
289
- x = x.sqrt(sqrt_prec)
290
- end
291
-
292
- # Taylor series for log(x) around 1
293
- # log(x) = -log((1 + X) / (1 - X)) where X = (x - 1) / (x + 1)
294
- # log(x) = 2 * (X + X**3 / 3 + X**5 / 5 + X**7 / 7 + ...)
295
- x = (x - 1).div(x + 1, sqrt_prec)
296
- y = x
297
- x2 = x.mult(x, prec2)
298
- 1.step do |i|
299
- n = prec2 + x.exponent - y.exponent + x2.exponent
300
- break if n <= 0 || x.zero?
301
- x = x.mult(x2.round(n - x2.exponent), n)
302
- y = y.add(x.div(2 * i + 1, n), prec2)
303
- end
316
+ # Reduce x to near 1
317
+ if x > 1.01 || x < 0.99
318
+ # log(x) = log(x/exp(logx_approx)) + logx_approx
319
+ logx_approx = BigDecimal(BigDecimal::Internal.float_log(x), 0)
320
+ x = x.div(exp(logx_approx, prec2), prec2)
321
+ else
322
+ logx_approx = BigDecimal(0)
323
+ end
304
324
 
305
- y.mult(2 ** (sqrt_steps + 1), prec)
325
+ # Solve exp(y) - x = 0 with Newton's method
326
+ # Repeat: y -= (exp(y) - x) / exp(y)
327
+ y = BigDecimal(BigDecimal::Internal.float_log(x), 0)
328
+ exp_additional_prec = [-(x - 1).exponent, 0].max
329
+ BigDecimal::Internal.newton_loop(prec2) do |p|
330
+ expy = exp(y, p + exp_additional_prec)
331
+ y = y.sub(expy.sub(x, p).div(expy, p), p)
306
332
  end
333
+ y.add(logx_approx, prec)
307
334
  end
308
335
 
309
- # Taylor series for exp(x) around 0
310
- private_class_method def _exp_taylor(x, prec) # :nodoc:
311
- xn = BigDecimal(1)
312
- y = BigDecimal(1)
313
- 1.step do |i|
314
- n = prec + xn.exponent
315
- break if n <= 0 || xn.zero?
316
- xn = xn.mult(x, n).div(i, n)
317
- y = y.add(xn, prec)
318
- end
319
- y
336
+ private_class_method def _exp_binary_splitting(x, prec) # :nodoc:
337
+ return BigDecimal(1) if x.zero?
338
+ # Find k that satisfies x**k / k! < 10**(-prec)
339
+ log10 = Math.log(10)
340
+ logx = BigDecimal::Internal.float_log(x.abs)
341
+ step = (1..).bsearch { |k| Math.lgamma(k + 1)[0] - k * logx > prec * log10 }
342
+ # exp(x)-1 = x*(1+x/2*(1+x/3*(1+x/4*(1+x/5*(1+...)))))
343
+ 1 + BigDecimal::Internal.taylor_sum_binary_splitting(x, [*1..step], prec)
320
344
  end
321
345
 
322
346
  # call-seq:
@@ -333,19 +357,39 @@ module BigMath
333
357
  prec = BigDecimal::Internal.coerce_validate_prec(prec, :exp)
334
358
  x = BigDecimal::Internal.coerce_to_bigdecimal(x, prec, :exp)
335
359
  return BigDecimal::Internal.nan_computation_result if x.nan?
336
- return x.positive? ? BigDecimal::Internal.infinity_computation_result : BigDecimal(0) if x.infinite?
360
+ if x.infinite? || x.exponent >= 21 # exp(10**20) and exp(-10**20) overflows/underflows 64-bit exponent
361
+ if x.positive?
362
+ return BigDecimal::Internal.infinity_computation_result
363
+ elsif x.infinite?
364
+ # exp(-Infinity) is +0 by definition, this is not an underflow.
365
+ return BigDecimal(0)
366
+ else
367
+ return BigDecimal::Internal.underflow_computation_result
368
+ end
369
+ end
370
+
337
371
  return BigDecimal(1) if x.zero?
338
372
 
339
373
  # exp(x * 10**cnt) = exp(x)**(10**cnt)
340
374
  cnt = x < -1 || x > 1 ? x.exponent : 0
341
- prec2 = prec + BigDecimal.double_fig + cnt
375
+ prec2 = prec + BigDecimal::Internal::EXTRA_PREC + cnt
342
376
  x = x._decimal_shift(-cnt)
343
377
 
344
- # Calculation of exp(small_prec) is fast because calculation of x**n is fast
345
- # Calculation of exp(small_abs) converges fast.
346
- # exp(x) = exp(small_prec_part + small_abs_part) = exp(small_prec_part) * exp(small_abs_part)
347
- x_small_prec = x.round(Integer.sqrt(prec2))
348
- y = _exp_taylor(x_small_prec, prec2).mult(_exp_taylor(x.sub(x_small_prec, prec2), prec2), prec2)
378
+ # Decimal form of bit-burst algorithm
379
+ # Calculate exp(x.xxxxxxxxxxxxxxxx) as
380
+ # exp(x.xx) * exp(0.00xx) * exp(0.0000xxxx) * exp(0.00000000xxxxxxxx)
381
+ x = x.mult(1, prec2)
382
+ n = 2
383
+ y = BigDecimal(1)
384
+ BigDecimal.save_limit do
385
+ BigDecimal.limit(0)
386
+ while x != 0 do
387
+ partial_x = x.truncate(n)
388
+ x -= partial_x
389
+ y = y.mult(_exp_binary_splitting(partial_x, prec2), prec2)
390
+ n *= 2
391
+ end
392
+ end
349
393
 
350
394
  # calculate exp(x * 10**cnt) from exp(x)
351
395
  # exp(x * 10**k) = exp(x * 10**(k - 1)) ** 10
@@ -0,0 +1,110 @@
1
+ #
2
+ # linear.rb
3
+ #
4
+ # Solves linear equation system(A*x = b) by LU decomposition method.
5
+ # where A is a coefficient matrix,x is an answer vector,b is a constant vector.
6
+ #
7
+ # USAGE:
8
+ # ruby linear.rb [input file solved]
9
+ #
10
+
11
+ # :stopdoc:
12
+ require "bigdecimal"
13
+
14
+ # Requires gem matrix
15
+ require "matrix"
16
+
17
+ class PrecisionSpecifiedValue
18
+ # NOTE:
19
+ # Change following PREC if needed.
20
+
21
+ attr_reader :value
22
+ def initialize(value, prec)
23
+ @value = BigDecimal(value)
24
+ @prec = prec
25
+ end
26
+
27
+ def unwrap(value)
28
+ PrecisionSpecifiedValue === value ? value.value : value
29
+ end
30
+
31
+ def coerce(other)
32
+ [self.class.new(unwrap(other), @prec), self]
33
+ end
34
+
35
+ def abs
36
+ self.class.new(@value.abs, @prec)
37
+ end
38
+
39
+ def >(other)
40
+ @value > unwrap(other)
41
+ end
42
+
43
+ def <(other)
44
+ @value < unwrap(other)
45
+ end
46
+
47
+ def -(other)
48
+ self.class.new(@value.sub(unwrap(other), @prec), @prec)
49
+ end
50
+
51
+ def +(other)
52
+ self.class.new(@value.add(unwrap(other), @prec), @prec)
53
+ end
54
+
55
+ def *(other)
56
+ self.class.new(@value.mult(unwrap(other), @prec), @prec)
57
+ end
58
+
59
+ def quo(other)
60
+ self.class.new(@value.div(unwrap(other), @prec), @prec)
61
+ end
62
+ end
63
+
64
+ return if __FILE__ != $0
65
+
66
+ def rd_order(na)
67
+ printf("Number of equations ?") if(na <= 0)
68
+ ARGF.gets().to_i
69
+ end
70
+
71
+ na = ARGV.size
72
+
73
+ while (n=rd_order(na))>0
74
+ a = []
75
+ b = []
76
+ if na <= 0
77
+ # Read data from console.
78
+ printf("\nEnter coefficient matrix element A[i,j]\n")
79
+ for i in 0...n do
80
+ a << n.times.map do |j|
81
+ printf("A[%d,%d]? ",i,j); s = ARGF.gets
82
+ BigDecimal(s)
83
+ end
84
+ printf("Contatant vector element b[%d] ? ",i)
85
+ b << BigDecimal(ARGF.gets)
86
+ end
87
+ else
88
+ # Read data from specified file.
89
+ printf("Coefficient matrix and constant vector.\n")
90
+ for i in 0...n do
91
+ s = ARGF.gets
92
+ printf("%d) %s",i,s)
93
+ s = s.split
94
+ a << n.times.map {|j| BigDecimal(s[j]) }
95
+ b << BigDecimal(s[n])
96
+ end
97
+ end
98
+
99
+ prec = 100
100
+ matrix = Matrix[*a.map {|row| row.map {|v| PrecisionSpecifiedValue.new(v, prec) } }]
101
+ vector = b.map {|v| PrecisionSpecifiedValue.new(v, prec) }
102
+ x = matrix.lup.solve(vector).map(&:value)
103
+
104
+ printf("Answer(x[i] & (A*x-b)[i]) follows\n")
105
+ for i in 0...n do
106
+ printf("x[%d]=%s ",i,x[i].to_s)
107
+ diff = a[i].zip(x).sum {|aij, xj| aij*xj }.sub(b[i], 10)
108
+ printf(" & %s\n", diff.to_s)
109
+ end
110
+ end
@@ -0,0 +1,57 @@
1
+ #
2
+ # nlsolve.rb
3
+ # An example for solving nonlinear algebraic equation system.
4
+ #
5
+
6
+ require "bigdecimal"
7
+ require_relative "linear"
8
+
9
+ # Requires gem matrix
10
+ require "matrix"
11
+
12
+ # :stopdoc:
13
+
14
+ def func((x, y)) # defines functions solved
15
+ [
16
+ x**2 + y**2 - 2,
17
+ (x - 1)**2 + (y + 1)**2 - 3
18
+ ]
19
+ end
20
+
21
+ def jacobian(x, f, delta, prec)
22
+ dim = x.size
23
+ dim.times.map do |i|
24
+ xplus = Array.new(dim) {|j| x[i] + (j == i ? delta : 0) }
25
+ xminus = Array.new(dim) {|j| x[i] - (j == i ? delta : 0) }
26
+ yplus = f.call(xplus)
27
+ yminus = f.call(xminus)
28
+ yplus.zip(yminus).map {|p, m| (p - m).div(2 * delta, prec) }
29
+ end.transpose
30
+ end
31
+
32
+ def nlsolve(initial_x, prec:, max_iteration: 100, &f)
33
+ initial_x = initial_x.map {|v| BigDecimal(v) }
34
+ x = initial_x
35
+ delta = BigDecimal(0.01)
36
+ calc_prec = prec + 10
37
+ max_iteration.times do |iteration|
38
+ # Newton step
39
+ jacobian = jacobian(x, f, delta, calc_prec)
40
+ matrix = Matrix[*jacobian.map {|row| row.map {|v| PrecisionSpecifiedValue.new(v, calc_prec) } }]
41
+ y = f.call(x)
42
+ vector = y.map {|v| PrecisionSpecifiedValue.new(v, calc_prec) }
43
+ dx = matrix.lup.solve(vector).map(&:value)
44
+ x_prev = x
45
+ x = x.zip(dx).map {|xi, di| xi.sub(di, prec) }
46
+ movement = x_prev.zip(x).map {|xn, xi| (xn - xi).abs }.max
47
+ delta = [movement, delta].min.mult(1, 10)
48
+ break if movement.zero? || movement.exponent < -prec
49
+ end
50
+ x
51
+ end
52
+
53
+ initial_value = [1, 1]
54
+ ans = nlsolve(initial_value, prec: 100) {|x| func(x) }
55
+ diff = func(ans).map {|v| v.mult(1, 10) }
56
+ p(ans:)
57
+ p(diff:)
@@ -1,21 +1,16 @@
1
- #!/usr/local/bin/ruby
2
- # frozen_string_literal: false
3
-
4
1
  #
5
2
  # pi.rb
6
3
  #
7
4
  # Calculates 3.1415.... (the number of times that a circle's diameter
8
- # will fit around the circle) using J. Machin's formula.
5
+ # will fit around the circle)
9
6
  #
10
7
 
11
8
  require "bigdecimal"
12
9
  require "bigdecimal/math.rb"
13
10
 
14
- include BigMath
15
-
16
11
  if ARGV.size == 1
17
12
  print "PI("+ARGV[0]+"):\n"
18
- p PI(ARGV[0].to_i)
13
+ p BigMath.PI(ARGV[0].to_i)
19
14
  else
20
15
  print "TRY: ruby pi.rb 1000 \n"
21
16
  end