cloudsmith-api 2.0.16 → 2.0.17

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 (1309) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +8 -8
  3. data/README.md +20 -4
  4. data/build.json +1 -1
  5. data/docs/AlpinePackageUpload.md +3 -0
  6. data/docs/CargoPackageUpload.md +3 -0
  7. data/docs/CocoapodsPackageUpload.md +3 -0
  8. data/docs/ComposerPackageUpload.md +3 -0
  9. data/docs/ConanPackageUpload.md +3 -0
  10. data/docs/CondaPackageUpload.md +3 -0
  11. data/docs/CranPackageUpload.md +3 -0
  12. data/docs/DartPackageUpload.md +3 -0
  13. data/docs/DebPackageUpload.md +3 -0
  14. data/docs/DockerPackageUpload.md +3 -0
  15. data/docs/DockerUpstreamRequest.md +2 -0
  16. data/docs/DockerUpstreamRequestPatch.md +2 -0
  17. data/docs/ErrorDetail.md +1 -0
  18. data/docs/GoPackageUpload.md +3 -0
  19. data/docs/HelmPackageUpload.md +3 -0
  20. data/docs/HexPackageUpload.md +3 -0
  21. data/docs/LuarocksPackageUpload.md +3 -0
  22. data/docs/MavenPackageUpload.md +3 -0
  23. data/docs/MavenPackageUploadRequest.md +1 -0
  24. data/docs/NpmPackageUpload.md +3 -0
  25. data/docs/NugetPackageUpload.md +3 -0
  26. data/docs/OrganizationMembershipRequestPatch.md +7 -0
  27. data/docs/OrganizationMembershipRoleUpdate.md +18 -0
  28. data/docs/OrganizationMembershipRoleUpdateRequestPatch.md +8 -0
  29. data/docs/OrganizationMembershipVisibilityUpdate.md +18 -0
  30. data/docs/OrganizationMembershipVisibilityUpdateRequestPatch.md +8 -0
  31. data/docs/OrganizationSAMLAuth.md +11 -0
  32. data/docs/OrganizationSAMLAuthRequestPatch.md +11 -0
  33. data/docs/OrgsApi.md +325 -1
  34. data/docs/P2PackageUpload.md +3 -0
  35. data/docs/Package.md +3 -0
  36. data/docs/PackageCopy.md +3 -0
  37. data/docs/PackageMove.md +3 -0
  38. data/docs/PackageQuarantine.md +3 -0
  39. data/docs/PackageResync.md +3 -0
  40. data/docs/PackageTag.md +3 -0
  41. data/docs/PythonPackageUpload.md +3 -0
  42. data/docs/RawPackageUpload.md +3 -0
  43. data/docs/ReposApi.md +124 -0
  44. data/docs/Repository.md +1 -0
  45. data/docs/RepositoryCreate.md +1 -0
  46. data/docs/RepositoryCreateRequest.md +1 -0
  47. data/docs/RepositoryRequestPatch.md +1 -0
  48. data/docs/RepositoryX509EcdsaCertificate.md +17 -0
  49. data/docs/RepositoryX509RsaCertificate.md +17 -0
  50. data/docs/RpmPackageUpload.md +3 -0
  51. data/docs/RubyPackageUpload.md +3 -0
  52. data/docs/StatusBasic.md +1 -1
  53. data/docs/SwiftPackageUpload.md +3 -0
  54. data/docs/TerraformPackageUpload.md +3 -0
  55. data/docs/VagrantPackageUpload.md +3 -0
  56. data/docs/VulnerabilityScanResults.md +1 -1
  57. data/lib/cloudsmith-api/api/orgs_api.rb +302 -0
  58. data/lib/cloudsmith-api/api/repos_api.rb +120 -0
  59. data/lib/cloudsmith-api/models/alpine_package_upload.rb +32 -1
  60. data/lib/cloudsmith-api/models/cargo_package_upload.rb +32 -1
  61. data/lib/cloudsmith-api/models/cocoapods_package_upload.rb +32 -1
  62. data/lib/cloudsmith-api/models/composer_package_upload.rb +32 -1
  63. data/lib/cloudsmith-api/models/conan_package_upload.rb +32 -1
  64. data/lib/cloudsmith-api/models/conda_package_upload.rb +32 -1
  65. data/lib/cloudsmith-api/models/cran_package_upload.rb +32 -1
  66. data/lib/cloudsmith-api/models/dart_package_upload.rb +32 -1
  67. data/lib/cloudsmith-api/models/dart_upstream.rb +2 -2
  68. data/lib/cloudsmith-api/models/dart_upstream_request.rb +2 -2
  69. data/lib/cloudsmith-api/models/dart_upstream_request_patch.rb +2 -2
  70. data/lib/cloudsmith-api/models/deb_package_upload.rb +32 -1
  71. data/lib/cloudsmith-api/models/docker_package_upload.rb +32 -1
  72. data/lib/cloudsmith-api/models/docker_upstream.rb +2 -2
  73. data/lib/cloudsmith-api/models/docker_upstream_request.rb +23 -3
  74. data/lib/cloudsmith-api/models/docker_upstream_request_patch.rb +23 -3
  75. data/lib/cloudsmith-api/models/error_detail.rb +16 -4
  76. data/lib/cloudsmith-api/models/go_package_upload.rb +32 -1
  77. data/lib/cloudsmith-api/models/helm_package_upload.rb +32 -1
  78. data/lib/cloudsmith-api/models/hex_package_upload.rb +32 -1
  79. data/lib/cloudsmith-api/models/luarocks_package_upload.rb +32 -1
  80. data/lib/cloudsmith-api/models/maven_package_upload.rb +32 -1
  81. data/lib/cloudsmith-api/models/maven_package_upload_request.rb +13 -1
  82. data/lib/cloudsmith-api/models/npm_package_upload.rb +32 -1
  83. data/lib/cloudsmith-api/models/nuget_package_upload.rb +32 -1
  84. data/lib/cloudsmith-api/models/organization_membership_request_patch.rb +175 -0
  85. data/lib/cloudsmith-api/models/organization_membership_role_update.rb +338 -0
  86. data/lib/cloudsmith-api/models/organization_membership_role_update_request_patch.rb +220 -0
  87. data/lib/cloudsmith-api/models/organization_membership_visibility_update.rb +338 -0
  88. data/lib/cloudsmith-api/models/organization_membership_visibility_update_request_patch.rb +220 -0
  89. data/lib/cloudsmith-api/models/organization_saml_auth.rb +223 -0
  90. data/lib/cloudsmith-api/models/organization_saml_auth_request_patch.rb +213 -0
  91. data/lib/cloudsmith-api/models/p2_package_upload.rb +32 -1
  92. data/lib/cloudsmith-api/models/package.rb +32 -1
  93. data/lib/cloudsmith-api/models/package_copy.rb +32 -1
  94. data/lib/cloudsmith-api/models/package_move.rb +32 -1
  95. data/lib/cloudsmith-api/models/package_quarantine.rb +32 -1
  96. data/lib/cloudsmith-api/models/package_resync.rb +32 -1
  97. data/lib/cloudsmith-api/models/package_tag.rb +32 -1
  98. data/lib/cloudsmith-api/models/python_package_upload.rb +32 -1
  99. data/lib/cloudsmith-api/models/raw_package_upload.rb +32 -1
  100. data/lib/cloudsmith-api/models/repository.rb +11 -1
  101. data/lib/cloudsmith-api/models/repository_create.rb +11 -1
  102. data/lib/cloudsmith-api/models/repository_create_request.rb +11 -1
  103. data/lib/cloudsmith-api/models/repository_request_patch.rb +11 -1
  104. data/lib/cloudsmith-api/models/repository_x509_ecdsa_certificate.rb +306 -0
  105. data/lib/cloudsmith-api/models/repository_x509_rsa_certificate.rb +306 -0
  106. data/lib/cloudsmith-api/models/rpm_package_upload.rb +32 -1
  107. data/lib/cloudsmith-api/models/ruby_package_upload.rb +32 -1
  108. data/lib/cloudsmith-api/models/status_basic.rb +1 -1
  109. data/lib/cloudsmith-api/models/swift_package_upload.rb +32 -1
  110. data/lib/cloudsmith-api/models/terraform_package_upload.rb +32 -1
  111. data/lib/cloudsmith-api/models/vagrant_package_upload.rb +32 -1
  112. data/lib/cloudsmith-api/models/vulnerability_scan_results.rb +20 -18
  113. data/lib/cloudsmith-api/version.rb +1 -1
  114. data/lib/cloudsmith-api.rb +9 -0
  115. data/spec/api/orgs_api_spec.rb +69 -0
  116. data/spec/api/repos_api_spec.rb +26 -0
  117. data/spec/models/alpine_package_upload_spec.rb +18 -0
  118. data/spec/models/cargo_package_upload_spec.rb +18 -0
  119. data/spec/models/cocoapods_package_upload_spec.rb +18 -0
  120. data/spec/models/composer_package_upload_spec.rb +18 -0
  121. data/spec/models/conan_package_upload_spec.rb +18 -0
  122. data/spec/models/conda_package_upload_spec.rb +18 -0
  123. data/spec/models/cran_package_upload_spec.rb +18 -0
  124. data/spec/models/dart_package_upload_spec.rb +18 -0
  125. data/spec/models/dart_upstream_request_patch_spec.rb +1 -1
  126. data/spec/models/dart_upstream_request_spec.rb +1 -1
  127. data/spec/models/dart_upstream_spec.rb +1 -1
  128. data/spec/models/deb_package_upload_spec.rb +18 -0
  129. data/spec/models/docker_package_upload_spec.rb +18 -0
  130. data/spec/models/docker_upstream_request_patch_spec.rb +13 -1
  131. data/spec/models/docker_upstream_request_spec.rb +13 -1
  132. data/spec/models/docker_upstream_spec.rb +1 -1
  133. data/spec/models/error_detail_spec.rb +6 -0
  134. data/spec/models/format_support_upstream_spec.rb +1 -1
  135. data/spec/models/go_package_upload_spec.rb +18 -0
  136. data/spec/models/helm_package_upload_spec.rb +18 -0
  137. data/spec/models/hex_package_upload_spec.rb +18 -0
  138. data/spec/models/luarocks_package_upload_spec.rb +18 -0
  139. data/spec/models/maven_package_upload_request_spec.rb +6 -0
  140. data/spec/models/maven_package_upload_spec.rb +18 -0
  141. data/spec/models/npm_package_upload_spec.rb +18 -0
  142. data/spec/models/nuget_package_upload_spec.rb +18 -0
  143. data/spec/models/organization_membership_request_patch_spec.rb +35 -0
  144. data/spec/models/organization_membership_role_update_request_patch_spec.rb +45 -0
  145. data/spec/models/organization_membership_role_update_spec.rb +113 -0
  146. data/spec/models/organization_membership_visibility_update_request_patch_spec.rb +45 -0
  147. data/spec/models/organization_membership_visibility_update_spec.rb +113 -0
  148. data/spec/models/organization_saml_auth_request_patch_spec.rb +59 -0
  149. data/spec/models/organization_saml_auth_spec.rb +59 -0
  150. data/spec/models/p2_package_upload_spec.rb +18 -0
  151. data/spec/models/package_copy_spec.rb +18 -0
  152. data/spec/models/package_move_spec.rb +18 -0
  153. data/spec/models/package_quarantine_spec.rb +18 -0
  154. data/spec/models/package_resync_spec.rb +18 -0
  155. data/spec/models/package_spec.rb +18 -0
  156. data/spec/models/package_tag_spec.rb +18 -0
  157. data/spec/models/python_package_upload_spec.rb +18 -0
  158. data/spec/models/raw_package_upload_spec.rb +18 -0
  159. data/spec/models/repository_create_request_spec.rb +6 -0
  160. data/spec/models/repository_create_spec.rb +6 -0
  161. data/spec/models/repository_request_patch_spec.rb +6 -0
  162. data/spec/models/repository_spec.rb +6 -0
  163. data/spec/models/repository_x509_ecdsa_certificate_spec.rb +99 -0
  164. data/spec/models/repository_x509_rsa_certificate_spec.rb +99 -0
  165. data/spec/models/rpm_package_upload_spec.rb +18 -0
  166. data/spec/models/ruby_package_upload_spec.rb +18 -0
  167. data/spec/models/swift_package_upload_spec.rb +18 -0
  168. data/spec/models/terraform_package_upload_spec.rb +18 -0
  169. data/spec/models/vagrant_package_upload_spec.rb +18 -0
  170. data/spec/models/vulnerability_scan_results_spec.rb +2 -2
  171. data/vendor/bundle/ruby/2.6.0/cache/autotest-fsevent-0.2.22.gem +0 -0
  172. data/vendor/bundle/ruby/2.6.0/cache/bigdecimal-3.1.9.gem +0 -0
  173. data/vendor/bundle/ruby/2.6.0/cache/diff-lcs-1.6.1.gem +0 -0
  174. data/vendor/bundle/ruby/2.6.0/cache/ffi-1.17.1.gem +0 -0
  175. data/vendor/bundle/ruby/2.6.0/cache/rexml-3.4.1.gem +0 -0
  176. data/vendor/bundle/ruby/2.6.0/cache/rspec-core-3.13.3.gem +0 -0
  177. data/vendor/bundle/ruby/2.6.0/cache/rspec-support-3.13.2.gem +0 -0
  178. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.2.22/gem_make.out +14 -0
  179. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/bigdecimal-3.1.9/bigdecimal.so +0 -0
  180. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/bigdecimal-3.1.9/gem_make.out +157 -0
  181. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/bigdecimal-3.1.9/mkmf.log +674 -0
  182. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.17.1/ffi_c.so +0 -0
  183. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.17.1/gem_make.out +44 -0
  184. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.17.1/mkmf.log +299 -0
  185. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.7.6/gem_make.out +2 -2
  186. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.7.6/mkmf.log +1 -1
  187. data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.22/CHANGELOG.md +155 -0
  188. data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.22/README.md +87 -0
  189. data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.22/lib/autotest-fsevent/version.rb +5 -0
  190. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.9/ext/bigdecimal/Makefile +267 -0
  191. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.9/ext/bigdecimal/bigdecimal.c +7790 -0
  192. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.9/ext/bigdecimal/bigdecimal.o +0 -0
  193. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.9/ext/bigdecimal/bigdecimal.so +0 -0
  194. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.9/ext/bigdecimal/extconf.rb +64 -0
  195. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.9/ext/bigdecimal/missing.c +28 -0
  196. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.9/ext/bigdecimal/missing.o +0 -0
  197. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.9/lib/bigdecimal/util.rb +185 -0
  198. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.9/lib/bigdecimal.so +0 -0
  199. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/CHANGELOG.md +506 -0
  200. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/CODE_OF_CONDUCT.md +128 -0
  201. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/CONTRIBUTING.md +71 -0
  202. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/CONTRIBUTORS.md +48 -0
  203. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/LICENCE.md +40 -0
  204. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/Manifest.txt +115 -0
  205. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/README.md +92 -0
  206. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/Rakefile +99 -0
  207. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/SECURITY.md +41 -0
  208. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/docs/artistic.txt +127 -0
  209. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/lib/diff/lcs/change.rb +174 -0
  210. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/lib/diff/lcs/htmldiff.rb +160 -0
  211. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/lib/diff/lcs/hunk.rb +379 -0
  212. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/lib/diff/lcs/ldiff.rb +189 -0
  213. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/lib/diff/lcs/version.rb +7 -0
  214. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/lib/diff/lcs.rb +742 -0
  215. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/mise.toml +5 -0
  216. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/123_x +2 -0
  217. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/456_x +2 -0
  218. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/file1.bin +0 -0
  219. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/file2.bin +0 -0
  220. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/four_lines +4 -0
  221. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/four_lines_with_missing_new_line +4 -0
  222. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/diff.missing_new_line1-e +1 -0
  223. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/diff.missing_new_line1-f +1 -0
  224. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/diff.missing_new_line2-e +1 -0
  225. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/diff.missing_new_line2-f +1 -0
  226. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/error.diff.chef-e +2 -0
  227. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/error.diff.chef-f +2 -0
  228. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/error.diff.missing_new_line1-e +1 -0
  229. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/error.diff.missing_new_line1-f +1 -0
  230. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/error.diff.missing_new_line2-e +1 -0
  231. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/error.diff.missing_new_line2-f +1 -0
  232. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.bin1-c +0 -0
  233. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.bin1-e +0 -0
  234. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.bin1-f +0 -0
  235. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.bin1-u +0 -0
  236. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.bin2 +1 -0
  237. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.bin2-c +1 -0
  238. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.bin2-e +1 -0
  239. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.bin2-f +1 -0
  240. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.bin2-u +1 -0
  241. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.empty.vs.four_lines +5 -0
  242. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.empty.vs.four_lines-c +9 -0
  243. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.empty.vs.four_lines-e +6 -0
  244. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.empty.vs.four_lines-f +6 -0
  245. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.empty.vs.four_lines-u +7 -0
  246. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.four_lines.vs.empty +5 -0
  247. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.four_lines.vs.empty-c +9 -0
  248. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.four_lines.vs.empty-e +1 -0
  249. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.four_lines.vs.empty-f +1 -0
  250. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.four_lines.vs.empty-u +7 -0
  251. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.issue95_trailing_context +4 -0
  252. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.issue95_trailing_context-c +9 -0
  253. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.issue95_trailing_context-e +3 -0
  254. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.issue95_trailing_context-f +3 -0
  255. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.issue95_trailing_context-u +6 -0
  256. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.missing_new_line1 +5 -0
  257. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.missing_new_line1-c +14 -0
  258. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.missing_new_line1-e +0 -0
  259. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.missing_new_line1-f +0 -0
  260. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.missing_new_line1-u +9 -0
  261. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.missing_new_line2 +5 -0
  262. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.missing_new_line2-c +14 -0
  263. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.missing_new_line2-e +0 -0
  264. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.missing_new_line2-f +0 -0
  265. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.missing_new_line2-u +9 -0
  266. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/hunk_spec.rb +83 -0
  267. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/issues_spec.rb +160 -0
  268. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/ldiff_spec.rb +100 -0
  269. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/patch_spec.rb +416 -0
  270. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.6.1/spec/spec_helper.rb +376 -0
  271. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/CHANGELOG.md +465 -0
  272. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/Gemfile +21 -0
  273. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/Rakefile +206 -0
  274. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/.sitearchdir.time +0 -0
  275. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/AbstractMemory.o +0 -0
  276. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/ArrayType.o +0 -0
  277. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/Buffer.o +0 -0
  278. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/Call.o +0 -0
  279. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/ClosurePool.o +0 -0
  280. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/DynamicLibrary.o +0 -0
  281. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/Function.c +1081 -0
  282. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/Function.o +0 -0
  283. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/FunctionInfo.o +0 -0
  284. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/LastError.o +0 -0
  285. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/LongDouble.o +0 -0
  286. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/Makefile +266 -0
  287. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/MappedType.o +0 -0
  288. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/MemoryPointer.o +0 -0
  289. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/MethodHandle.o +0 -0
  290. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/Platform.o +0 -0
  291. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/Pointer.o +0 -0
  292. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/Struct.o +0 -0
  293. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/StructByValue.o +0 -0
  294. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/StructLayout.o +0 -0
  295. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/Thread.o +0 -0
  296. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/Type.o +0 -0
  297. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/Types.o +0 -0
  298. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/Variadic.o +0 -0
  299. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/ffi.o +0 -0
  300. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/ffi_c.so +0 -0
  301. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/libffi/.allow-ai-service +0 -0
  302. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/libffi/configure +23105 -0
  303. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/ext/ffi_c/libffi/fficonfig.h.in +188 -0
  304. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/lib/ffi/ffi.rb +109 -0
  305. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/lib/ffi/version.rb +3 -0
  306. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/lib/ffi_c.so +0 -0
  307. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/sig/ffi/auto_pointer.rbs +26 -0
  308. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.1/sig/ffi/library.rbs +42 -0
  309. data/vendor/bundle/ruby/2.6.0/gems/json-2.7.6/ext/json/ext/generator/Makefile +2 -2
  310. data/vendor/bundle/ruby/2.6.0/gems/json-2.7.6/ext/json/ext/parser/Makefile +2 -2
  311. data/vendor/bundle/ruby/2.6.0/gems/rexml-3.4.1/NEWS.md +699 -0
  312. data/vendor/bundle/ruby/2.6.0/gems/rexml-3.4.1/lib/rexml/parsers/baseparser.rb +887 -0
  313. data/vendor/bundle/ruby/2.6.0/gems/rexml-3.4.1/lib/rexml/parsers/pullparser.rb +213 -0
  314. data/vendor/bundle/ruby/2.6.0/gems/rexml-3.4.1/lib/rexml/rexml.rb +39 -0
  315. data/vendor/bundle/ruby/2.6.0/gems/rexml-3.4.1/lib/rexml/source.rb +383 -0
  316. data/vendor/bundle/ruby/2.6.0/gems/rexml-3.4.1/lib/rexml/text.rb +423 -0
  317. data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.13.3/Changelog.md +2425 -0
  318. data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.13.3/lib/rspec/core/drb.rb +120 -0
  319. data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.13.3/lib/rspec/core/example.rb +666 -0
  320. data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.13.3/lib/rspec/core/filter_manager.rb +231 -0
  321. data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.13.3/lib/rspec/core/reporter.rb +266 -0
  322. data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.13.3/lib/rspec/core/version.rb +9 -0
  323. data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.13.2/Changelog.md +408 -0
  324. data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.13.2/lib/rspec/support/spec/shell_out.rb +113 -0
  325. data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.13.2/lib/rspec/support/version.rb +9 -0
  326. data/vendor/bundle/ruby/2.6.0/specifications/autotest-fsevent-0.2.22.gemspec +44 -0
  327. data/vendor/bundle/ruby/2.6.0/specifications/bigdecimal-3.1.9.gemspec +25 -0
  328. data/vendor/bundle/ruby/2.6.0/specifications/diff-lcs-1.6.1.gemspec +46 -0
  329. data/vendor/bundle/ruby/2.6.0/specifications/ffi-1.17.1.gemspec +43 -0
  330. data/vendor/bundle/ruby/2.6.0/specifications/rexml-3.4.1.gemspec +25 -0
  331. data/vendor/bundle/ruby/2.6.0/specifications/rspec-core-3.13.3.gemspec +37 -0
  332. data/vendor/bundle/ruby/2.6.0/specifications/rspec-support-3.13.2.gemspec +36 -0
  333. metadata +1070 -978
  334. data/vendor/bundle/ruby/2.6.0/cache/autotest-fsevent-0.2.21.gem +0 -0
  335. data/vendor/bundle/ruby/2.6.0/cache/bigdecimal-3.1.8.gem +0 -0
  336. data/vendor/bundle/ruby/2.6.0/cache/diff-lcs-1.5.1.gem +0 -0
  337. data/vendor/bundle/ruby/2.6.0/cache/ffi-1.17.0.gem +0 -0
  338. data/vendor/bundle/ruby/2.6.0/cache/rexml-3.3.9.gem +0 -0
  339. data/vendor/bundle/ruby/2.6.0/cache/rspec-core-3.13.2.gem +0 -0
  340. data/vendor/bundle/ruby/2.6.0/cache/rspec-support-3.13.1.gem +0 -0
  341. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.2.21/gem_make.out +0 -14
  342. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/bigdecimal-3.1.8/bigdecimal.so +0 -0
  343. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/bigdecimal-3.1.8/gem_make.out +0 -161
  344. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/bigdecimal-3.1.8/mkmf.log +0 -894
  345. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.17.0/ffi_c.so +0 -0
  346. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.17.0/gem_make.out +0 -44
  347. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.17.0/mkmf.log +0 -299
  348. data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.21/CHANGELOG.md +0 -149
  349. data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.21/README.md +0 -85
  350. data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.21/lib/autotest-fsevent/version.rb +0 -5
  351. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.8/ext/bigdecimal/Makefile +0 -267
  352. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.8/ext/bigdecimal/bigdecimal.c +0 -7794
  353. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.8/ext/bigdecimal/bigdecimal.o +0 -0
  354. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.8/ext/bigdecimal/bigdecimal.so +0 -0
  355. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.8/ext/bigdecimal/extconf.rb +0 -62
  356. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.8/ext/bigdecimal/missing.c +0 -27
  357. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.8/ext/bigdecimal/missing.o +0 -0
  358. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.8/lib/bigdecimal/util.rb +0 -185
  359. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.8/lib/bigdecimal.so +0 -0
  360. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/Code-of-Conduct.md +0 -74
  361. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/Contributing.md +0 -121
  362. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/History.md +0 -431
  363. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/License.md +0 -41
  364. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/Manifest.txt +0 -59
  365. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/README.rdoc +0 -84
  366. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/Rakefile +0 -130
  367. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/docs/artistic.txt +0 -127
  368. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/lib/diff/lcs/change.rb +0 -174
  369. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/lib/diff/lcs/htmldiff.rb +0 -158
  370. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/lib/diff/lcs/hunk.rb +0 -363
  371. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/lib/diff/lcs/ldiff.rb +0 -173
  372. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/lib/diff/lcs.rb +0 -741
  373. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/spec/hunk_spec.rb +0 -83
  374. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/spec/issues_spec.rb +0 -160
  375. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/spec/ldiff_spec.rb +0 -89
  376. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/spec/patch_spec.rb +0 -416
  377. data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.1/spec/spec_helper.rb +0 -376
  378. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/CHANGELOG.md +0 -456
  379. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/Gemfile +0 -21
  380. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/Rakefile +0 -206
  381. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/AbstractMemory.o +0 -0
  382. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/ArrayType.o +0 -0
  383. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/Buffer.o +0 -0
  384. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/Call.o +0 -0
  385. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/ClosurePool.o +0 -0
  386. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/DynamicLibrary.o +0 -0
  387. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/Function.c +0 -1063
  388. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/Function.o +0 -0
  389. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/FunctionInfo.o +0 -0
  390. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/LastError.o +0 -0
  391. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/LongDouble.o +0 -0
  392. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/Makefile +0 -266
  393. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/MappedType.o +0 -0
  394. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/MemoryPointer.o +0 -0
  395. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/MethodHandle.o +0 -0
  396. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/Platform.o +0 -0
  397. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/Pointer.o +0 -0
  398. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/Struct.o +0 -0
  399. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/StructByValue.o +0 -0
  400. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/StructLayout.o +0 -0
  401. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/Thread.o +0 -0
  402. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/Type.o +0 -0
  403. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/Types.o +0 -0
  404. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/Variadic.o +0 -0
  405. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/ffi.o +0 -0
  406. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/ffi_c.so +0 -0
  407. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/libffi/configure +0 -22791
  408. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/ext/ffi_c/libffi/fficonfig.h.in +0 -188
  409. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/lib/ffi/ffi.rb +0 -50
  410. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/lib/ffi/version.rb +0 -3
  411. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/lib/ffi_c.so +0 -0
  412. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/sig/ffi/auto_pointer.rbs +0 -27
  413. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.0/sig/ffi/library.rbs +0 -42
  414. data/vendor/bundle/ruby/2.6.0/gems/rexml-3.3.9/NEWS.md +0 -646
  415. data/vendor/bundle/ruby/2.6.0/gems/rexml-3.3.9/lib/rexml/parsers/baseparser.rb +0 -862
  416. data/vendor/bundle/ruby/2.6.0/gems/rexml-3.3.9/lib/rexml/parsers/pullparser.rb +0 -209
  417. data/vendor/bundle/ruby/2.6.0/gems/rexml-3.3.9/lib/rexml/rexml.rb +0 -39
  418. data/vendor/bundle/ruby/2.6.0/gems/rexml-3.3.9/lib/rexml/source.rb +0 -334
  419. data/vendor/bundle/ruby/2.6.0/gems/rexml-3.3.9/lib/rexml/text.rb +0 -448
  420. data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.13.2/Changelog.md +0 -2415
  421. data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.13.2/lib/rspec/core/drb.rb +0 -120
  422. data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.13.2/lib/rspec/core/example.rb +0 -666
  423. data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.13.2/lib/rspec/core/filter_manager.rb +0 -231
  424. data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.13.2/lib/rspec/core/reporter.rb +0 -265
  425. data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.13.2/lib/rspec/core/version.rb +0 -9
  426. data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.13.1/Changelog.md +0 -397
  427. data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.13.1/lib/rspec/support/spec/shell_out.rb +0 -110
  428. data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.13.1/lib/rspec/support/version.rb +0 -9
  429. data/vendor/bundle/ruby/2.6.0/specifications/autotest-fsevent-0.2.21.gemspec +0 -44
  430. data/vendor/bundle/ruby/2.6.0/specifications/bigdecimal-3.1.8.gemspec +0 -25
  431. data/vendor/bundle/ruby/2.6.0/specifications/diff-lcs-1.5.1.gemspec +0 -50
  432. data/vendor/bundle/ruby/2.6.0/specifications/ffi-1.17.0.gemspec +0 -43
  433. data/vendor/bundle/ruby/2.6.0/specifications/rexml-3.3.9.gemspec +0 -25
  434. data/vendor/bundle/ruby/2.6.0/specifications/rspec-core-3.13.2.gemspec +0 -53
  435. data/vendor/bundle/ruby/2.6.0/specifications/rspec-support-3.13.1.gemspec +0 -36
  436. /data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{autotest-fsevent-0.2.21 → autotest-fsevent-0.2.22}/gem.build_complete +0 -0
  437. /data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/gem.build_complete +0 -0
  438. /data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{ffi-1.17.0 → ffi-1.17.1}/gem.build_complete +0 -0
  439. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.21 → autotest-fsevent-0.2.22}/LICENSE.txt +0 -0
  440. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.21 → autotest-fsevent-0.2.22}/ext/fsevent/Makefile +0 -0
  441. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.21 → autotest-fsevent-0.2.22}/ext/fsevent/extconf.rb +0 -0
  442. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.21 → autotest-fsevent-0.2.22}/ext/fsevent/fsevent.dll +0 -0
  443. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.21 → autotest-fsevent-0.2.22}/ext/fsevent/fsevent.so +0 -0
  444. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.21 → autotest-fsevent-0.2.22}/ext/fsevent/fsevent_sleep.c +0 -0
  445. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.21 → autotest-fsevent-0.2.22}/ext/fsevent/make +0 -0
  446. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.21 → autotest-fsevent-0.2.22}/ext/fsevent/nmake.bat +0 -0
  447. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.21 → autotest-fsevent-0.2.22}/lib/autotest/fsevent.rb +0 -0
  448. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.21 → autotest-fsevent-0.2.22}/lib/autotest-fsevent.rb +0 -0
  449. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.21 → autotest-fsevent-0.2.22}/post-install.txt +0 -0
  450. /data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.21 → autotest-fsevent-0.2.22}/prebuilt/fsevent_sleep +0 -0
  451. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/LICENSE +0 -0
  452. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/bigdecimal.gemspec +0 -0
  453. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/ext/bigdecimal/.sitearchdir.time +0 -0
  454. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/ext/bigdecimal/bigdecimal.h +0 -0
  455. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/ext/bigdecimal/bits.h +0 -0
  456. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/ext/bigdecimal/feature.h +0 -0
  457. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/ext/bigdecimal/missing/dtoa.c +0 -0
  458. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/ext/bigdecimal/missing.h +0 -0
  459. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/ext/bigdecimal/static_assert.h +0 -0
  460. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/lib/bigdecimal/jacobian.rb +0 -0
  461. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/lib/bigdecimal/ludcmp.rb +0 -0
  462. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/lib/bigdecimal/math.rb +0 -0
  463. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/lib/bigdecimal/newton.rb +0 -0
  464. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/lib/bigdecimal.rb +0 -0
  465. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/sample/linear.rb +0 -0
  466. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/sample/nlsolve.rb +0 -0
  467. /data/vendor/bundle/ruby/2.6.0/gems/{bigdecimal-3.1.8 → bigdecimal-3.1.9}/sample/pi.rb +0 -0
  468. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/.rspec +0 -0
  469. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/bin/htmldiff +0 -0
  470. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/bin/ldiff +0 -0
  471. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/docs/COPYING.txt +0 -0
  472. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/lib/diff/lcs/array.rb +0 -0
  473. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/lib/diff/lcs/backports.rb +0 -0
  474. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/lib/diff/lcs/block.rb +0 -0
  475. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/lib/diff/lcs/callbacks.rb +0 -0
  476. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/lib/diff/lcs/internals.rb +0 -0
  477. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/lib/diff/lcs/string.rb +0 -0
  478. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/lib/diff-lcs.rb +0 -0
  479. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/change_spec.rb +0 -0
  480. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/diff_spec.rb +0 -0
  481. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/aX +0 -0
  482. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/bXaX +0 -0
  483. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ds1.csv +0 -0
  484. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ds2.csv +0 -0
  485. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0/ext/ffi_c/.sitearchdir.time → diff-lcs-1.6.1/spec/fixtures/empty} +0 -0
  486. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ldiff/output.diff +0 -0
  487. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ldiff/output.diff-c +0 -0
  488. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ldiff/output.diff-e +0 -0
  489. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ldiff/output.diff-f +0 -0
  490. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ldiff/output.diff-u +0 -0
  491. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0/ext/ffi_c/libffi/.allow-ai-service → diff-lcs-1.6.1/spec/fixtures/ldiff/output.diff.bin1} +0 -0
  492. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ldiff/output.diff.chef +0 -0
  493. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ldiff/output.diff.chef-c +0 -0
  494. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ldiff/output.diff.chef-e +0 -0
  495. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ldiff/output.diff.chef-f +0 -0
  496. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ldiff/output.diff.chef-u +0 -0
  497. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ldiff/output.diff.chef2 +0 -0
  498. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ldiff/output.diff.chef2-c +0 -0
  499. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ldiff/output.diff.chef2-d +0 -0
  500. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ldiff/output.diff.chef2-e +0 -0
  501. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ldiff/output.diff.chef2-f +0 -0
  502. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/ldiff/output.diff.chef2-u +0 -0
  503. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/new-chef +0 -0
  504. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/new-chef2 +0 -0
  505. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/old-chef +0 -0
  506. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/fixtures/old-chef2 +0 -0
  507. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/lcs_spec.rb +0 -0
  508. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/sdiff_spec.rb +0 -0
  509. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/traverse_balanced_spec.rb +0 -0
  510. /data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.5.1 → diff-lcs-1.6.1}/spec/traverse_sequences_spec.rb +0 -0
  511. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/COPYING +0 -0
  512. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/LICENSE +0 -0
  513. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/LICENSE.SPECS +0 -0
  514. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/README.md +0 -0
  515. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/AbstractMemory.c +0 -0
  516. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/AbstractMemory.h +0 -0
  517. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/ArrayType.c +0 -0
  518. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/ArrayType.h +0 -0
  519. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Buffer.c +0 -0
  520. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Call.c +0 -0
  521. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Call.h +0 -0
  522. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/ClosurePool.c +0 -0
  523. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/ClosurePool.h +0 -0
  524. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/DynamicLibrary.c +0 -0
  525. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/DynamicLibrary.h +0 -0
  526. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Function.h +0 -0
  527. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/FunctionInfo.c +0 -0
  528. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/LastError.c +0 -0
  529. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/LastError.h +0 -0
  530. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/LongDouble.c +0 -0
  531. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/LongDouble.h +0 -0
  532. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/MappedType.c +0 -0
  533. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/MappedType.h +0 -0
  534. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/MemoryPointer.c +0 -0
  535. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/MemoryPointer.h +0 -0
  536. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/MethodHandle.c +0 -0
  537. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/MethodHandle.h +0 -0
  538. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Platform.c +0 -0
  539. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Platform.h +0 -0
  540. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Pointer.c +0 -0
  541. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Pointer.h +0 -0
  542. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Struct.c +0 -0
  543. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Struct.h +0 -0
  544. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/StructByValue.c +0 -0
  545. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/StructByValue.h +0 -0
  546. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/StructLayout.c +0 -0
  547. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Thread.c +0 -0
  548. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Thread.h +0 -0
  549. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Type.c +0 -0
  550. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Type.h +0 -0
  551. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Types.c +0 -0
  552. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Types.h +0 -0
  553. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/Variadic.c +0 -0
  554. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/compat.h +0 -0
  555. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/extconf.h +0 -0
  556. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/extconf.rb +0 -0
  557. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/ffi.c +0 -0
  558. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.appveyor/site.exp +0 -0
  559. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.appveyor/unix-noexec.exp +0 -0
  560. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.appveyor.yml +0 -0
  561. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.ci/ar-lib +0 -0
  562. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.ci/bfin-sim.exp +0 -0
  563. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +0 -0
  564. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.ci/build-in-container.sh +0 -0
  565. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.ci/build.sh +0 -0
  566. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.ci/compile +0 -0
  567. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.ci/install.sh +0 -0
  568. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.ci/m32r-sim.exp +0 -0
  569. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.ci/moxie-sim.exp +0 -0
  570. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.ci/msvs-detect +0 -0
  571. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.ci/or1k-sim.exp +0 -0
  572. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.ci/powerpc-eabisim.exp +0 -0
  573. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.ci/site.exp +0 -0
  574. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.ci/wine-sim.exp +0 -0
  575. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.circleci/config.yml +0 -0
  576. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.gitattributes +0 -0
  577. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.github/issue_template.md +0 -0
  578. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.github/workflows/build.yml +0 -0
  579. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.github/workflows/emscripten.yml +0 -0
  580. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/.gitignore +0 -0
  581. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/ChangeLog.old +0 -0
  582. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/LICENSE +0 -0
  583. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +0 -0
  584. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/Makefile.am +0 -0
  585. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/Makefile.in +0 -0
  586. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/README.md +0 -0
  587. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/acinclude.m4 +0 -0
  588. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/autogen.sh +0 -0
  589. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/compile +0 -0
  590. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/config.guess +0 -0
  591. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/config.sub +0 -0
  592. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/configure.ac +0 -0
  593. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/configure.host +0 -0
  594. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/doc/Makefile.am +0 -0
  595. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/doc/Makefile.in +0 -0
  596. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/doc/libffi.texi +0 -0
  597. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/doc/version.texi +0 -0
  598. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +0 -0
  599. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/include/Makefile.am +0 -0
  600. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/include/Makefile.in +0 -0
  601. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/include/ffi.h.in +0 -0
  602. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/include/ffi_cfi.h +0 -0
  603. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/include/ffi_common.h +0 -0
  604. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/include/tramp.h +0 -0
  605. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/install-sh +0 -0
  606. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/libffi.map.in +0 -0
  607. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/libffi.pc.in +0 -0
  608. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +0 -0
  609. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/libtool-ldflags +0 -0
  610. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/libtool-version +0 -0
  611. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/ltmain.sh +0 -0
  612. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/m4/asmcfi.m4 +0 -0
  613. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/m4/ax_append_flag.m4 +0 -0
  614. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +0 -0
  615. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +0 -0
  616. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +0 -0
  617. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +0 -0
  618. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/m4/ax_configure_args.m4 +0 -0
  619. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +0 -0
  620. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +0 -0
  621. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +0 -0
  622. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +0 -0
  623. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/m4/ax_require_defined.m4 +0 -0
  624. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/make_sunver.pl +0 -0
  625. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/man/Makefile.am +0 -0
  626. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/man/Makefile.in +0 -0
  627. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/man/ffi.3 +0 -0
  628. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/man/ffi_call.3 +0 -0
  629. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/man/ffi_prep_cif.3 +0 -0
  630. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +0 -0
  631. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/missing +0 -0
  632. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +0 -0
  633. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +0 -0
  634. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +0 -0
  635. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +0 -0
  636. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +0 -0
  637. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +0 -0
  638. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/msvcc.sh +0 -0
  639. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/aarch64/ffi.c +0 -0
  640. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/aarch64/ffitarget.h +0 -0
  641. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/aarch64/internal.h +0 -0
  642. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/aarch64/sysv.S +0 -0
  643. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +0 -0
  644. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/alpha/ffi.c +0 -0
  645. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/alpha/ffitarget.h +0 -0
  646. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/alpha/internal.h +0 -0
  647. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/alpha/osf.S +0 -0
  648. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/arc/arcompact.S +0 -0
  649. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/arc/ffi.c +0 -0
  650. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/arc/ffitarget.h +0 -0
  651. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/arm/ffi.c +0 -0
  652. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/arm/ffitarget.h +0 -0
  653. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/arm/internal.h +0 -0
  654. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/arm/sysv.S +0 -0
  655. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +0 -0
  656. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/avr32/ffi.c +0 -0
  657. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/avr32/ffitarget.h +0 -0
  658. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/avr32/sysv.S +0 -0
  659. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/bfin/ffi.c +0 -0
  660. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/bfin/ffitarget.h +0 -0
  661. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/bfin/sysv.S +0 -0
  662. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/closures.c +0 -0
  663. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/cris/ffi.c +0 -0
  664. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/cris/ffitarget.h +0 -0
  665. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/cris/sysv.S +0 -0
  666. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/csky/ffi.c +0 -0
  667. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/csky/ffitarget.h +0 -0
  668. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/csky/sysv.S +0 -0
  669. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/debug.c +0 -0
  670. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/dlmalloc.c +0 -0
  671. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/frv/eabi.S +0 -0
  672. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/frv/ffi.c +0 -0
  673. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/frv/ffitarget.h +0 -0
  674. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/ia64/ffi.c +0 -0
  675. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/ia64/ffitarget.h +0 -0
  676. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/ia64/ia64_flags.h +0 -0
  677. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/ia64/unix.S +0 -0
  678. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/java_raw_api.c +0 -0
  679. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/kvx/asm.h +0 -0
  680. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/kvx/ffi.c +0 -0
  681. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/kvx/ffitarget.h +0 -0
  682. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/kvx/sysv.S +0 -0
  683. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/loongarch64/ffi.c +0 -0
  684. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +0 -0
  685. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/loongarch64/sysv.S +0 -0
  686. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/m32r/ffi.c +0 -0
  687. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/m32r/ffitarget.h +0 -0
  688. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/m32r/sysv.S +0 -0
  689. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/m68k/ffi.c +0 -0
  690. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/m68k/ffitarget.h +0 -0
  691. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/m68k/sysv.S +0 -0
  692. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/m88k/ffi.c +0 -0
  693. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/m88k/ffitarget.h +0 -0
  694. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/m88k/obsd.S +0 -0
  695. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/metag/ffi.c +0 -0
  696. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/metag/ffitarget.h +0 -0
  697. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/metag/sysv.S +0 -0
  698. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/microblaze/ffi.c +0 -0
  699. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/microblaze/ffitarget.h +0 -0
  700. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/microblaze/sysv.S +0 -0
  701. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/mips/ffi.c +0 -0
  702. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/mips/ffitarget.h +0 -0
  703. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/mips/n32.S +0 -0
  704. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/mips/o32.S +0 -0
  705. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/moxie/eabi.S +0 -0
  706. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/moxie/ffi.c +0 -0
  707. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/moxie/ffitarget.h +0 -0
  708. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/nios2/ffi.c +0 -0
  709. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/nios2/ffitarget.h +0 -0
  710. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/nios2/sysv.S +0 -0
  711. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/or1k/ffi.c +0 -0
  712. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/or1k/ffitarget.h +0 -0
  713. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/or1k/sysv.S +0 -0
  714. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/pa/ffi.c +0 -0
  715. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/pa/ffi64.c +0 -0
  716. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/pa/ffitarget.h +0 -0
  717. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/pa/hpux32.S +0 -0
  718. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/pa/hpux64.S +0 -0
  719. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/pa/linux.S +0 -0
  720. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/powerpc/aix.S +0 -0
  721. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/powerpc/aix_closure.S +0 -0
  722. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/powerpc/asm.h +0 -0
  723. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/powerpc/darwin.S +0 -0
  724. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +0 -0
  725. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/powerpc/ffi.c +0 -0
  726. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +0 -0
  727. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +0 -0
  728. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +0 -0
  729. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +0 -0
  730. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/powerpc/ffitarget.h +0 -0
  731. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/powerpc/linux64.S +0 -0
  732. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +0 -0
  733. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +0 -0
  734. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/powerpc/sysv.S +0 -0
  735. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/powerpc/t-aix +0 -0
  736. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/prep_cif.c +0 -0
  737. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/raw_api.c +0 -0
  738. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/riscv/ffi.c +0 -0
  739. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/riscv/ffitarget.h +0 -0
  740. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/riscv/sysv.S +0 -0
  741. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/s390/ffi.c +0 -0
  742. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/s390/ffitarget.h +0 -0
  743. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/s390/internal.h +0 -0
  744. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/s390/sysv.S +0 -0
  745. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/sh/ffi.c +0 -0
  746. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/sh/ffitarget.h +0 -0
  747. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/sh/sysv.S +0 -0
  748. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/sh64/ffi.c +0 -0
  749. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/sh64/ffitarget.h +0 -0
  750. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/sh64/sysv.S +0 -0
  751. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/sparc/ffi.c +0 -0
  752. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/sparc/ffi64.c +0 -0
  753. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/sparc/ffitarget.h +0 -0
  754. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/sparc/internal.h +0 -0
  755. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/sparc/v8.S +0 -0
  756. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/sparc/v9.S +0 -0
  757. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/tile/ffi.c +0 -0
  758. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/tile/ffitarget.h +0 -0
  759. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/tile/tile.S +0 -0
  760. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/tramp.c +0 -0
  761. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/types.c +0 -0
  762. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/vax/elfbsd.S +0 -0
  763. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/vax/ffi.c +0 -0
  764. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/vax/ffitarget.h +0 -0
  765. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/wasm32/ffi.c +0 -0
  766. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/wasm32/ffitarget.h +0 -0
  767. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/x86/asmnames.h +0 -0
  768. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/x86/ffi.c +0 -0
  769. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/x86/ffi64.c +0 -0
  770. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/x86/ffitarget.h +0 -0
  771. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/x86/ffiw64.c +0 -0
  772. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/x86/internal.h +0 -0
  773. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/x86/internal64.h +0 -0
  774. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/x86/sysv.S +0 -0
  775. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/x86/sysv_intel.S +0 -0
  776. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/x86/unix64.S +0 -0
  777. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/x86/win64.S +0 -0
  778. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/x86/win64_intel.S +0 -0
  779. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/xtensa/ffi.c +0 -0
  780. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/xtensa/ffitarget.h +0 -0
  781. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/src/xtensa/sysv.S +0 -0
  782. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/stamp-h.in +0 -0
  783. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/Makefile.am +0 -0
  784. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/Makefile.in +0 -0
  785. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/config/default.exp +0 -0
  786. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +0 -0
  787. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/emscripten/build.sh +0 -0
  788. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +0 -0
  789. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +0 -0
  790. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/emscripten/test.html +0 -0
  791. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +0 -0
  792. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/lib/libffi.exp +0 -0
  793. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +0 -0
  794. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +0 -0
  795. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +0 -0
  796. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +0 -0
  797. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +0 -0
  798. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +0 -0
  799. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +0 -0
  800. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +0 -0
  801. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +0 -0
  802. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +0 -0
  803. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +0 -0
  804. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +0 -0
  805. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +0 -0
  806. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/callback.c +0 -0
  807. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/callback2.c +0 -0
  808. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/callback3.c +0 -0
  809. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/callback4.c +0 -0
  810. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +0 -0
  811. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +0 -0
  812. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/float.c +0 -0
  813. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +0 -0
  814. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +0 -0
  815. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +0 -0
  816. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +0 -0
  817. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +0 -0
  818. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/many.c +0 -0
  819. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +0 -0
  820. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +0 -0
  821. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +0 -0
  822. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -0
  823. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +0 -0
  824. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +0 -0
  825. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +0 -0
  826. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc_tc.c +0 -0
  827. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +0 -0
  828. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +0 -0
  829. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +0 -0
  830. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +0 -0
  831. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +0 -0
  832. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +0 -0
  833. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +0 -0
  834. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +0 -0
  835. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +0 -0
  836. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +0 -0
  837. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +0 -0
  838. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +0 -0
  839. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +0 -0
  840. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +0 -0
  841. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +0 -0
  842. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +0 -0
  843. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +0 -0
  844. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +0 -0
  845. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +0 -0
  846. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +0 -0
  847. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +0 -0
  848. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +0 -0
  849. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +0 -0
  850. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +0 -0
  851. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +0 -0
  852. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +0 -0
  853. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +0 -0
  854. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +0 -0
  855. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +0 -0
  856. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +0 -0
  857. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +0 -0
  858. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +0 -0
  859. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +0 -0
  860. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +0 -0
  861. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +0 -0
  862. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +0 -0
  863. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +0 -0
  864. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +0 -0
  865. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +0 -0
  866. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +0 -0
  867. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +0 -0
  868. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +0 -0
  869. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +0 -0
  870. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +0 -0
  871. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +0 -0
  872. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +0 -0
  873. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +0 -0
  874. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +0 -0
  875. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +0 -0
  876. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +0 -0
  877. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +0 -0
  878. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +0 -0
  879. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +0 -0
  880. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +0 -0
  881. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +0 -0
  882. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +0 -0
  883. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +0 -0
  884. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +0 -0
  885. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +0 -0
  886. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +0 -0
  887. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +0 -0
  888. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +0 -0
  889. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +0 -0
  890. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +0 -0
  891. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +0 -0
  892. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +0 -0
  893. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +0 -0
  894. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +0 -0
  895. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +0 -0
  896. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +0 -0
  897. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +0 -0
  898. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +0 -0
  899. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +0 -0
  900. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +0 -0
  901. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +0 -0
  902. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +0 -0
  903. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +0 -0
  904. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +0 -0
  905. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +0 -0
  906. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +0 -0
  907. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +0 -0
  908. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +0 -0
  909. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +0 -0
  910. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +0 -0
  911. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +0 -0
  912. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +0 -0
  913. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +0 -0
  914. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +0 -0
  915. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +0 -0
  916. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +0 -0
  917. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +0 -0
  918. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +0 -0
  919. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +0 -0
  920. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double.c +0 -0
  921. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +0 -0
  922. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +0 -0
  923. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +0 -0
  924. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +0 -0
  925. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_args.c +0 -0
  926. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_float_double.c +0 -0
  927. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +0 -0
  928. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +0 -0
  929. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +0 -0
  930. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +0 -0
  931. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +0 -0
  932. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +0 -0
  933. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +0 -0
  934. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +0 -0
  935. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +0 -0
  936. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +0 -0
  937. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +0 -0
  938. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +0 -0
  939. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +0 -0
  940. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +0 -0
  941. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +0 -0
  942. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +0 -0
  943. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +0 -0
  944. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +0 -0
  945. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/err_bad_abi.c +0 -0
  946. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +0 -0
  947. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +0 -0
  948. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +0 -0
  949. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +0 -0
  950. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +0 -0
  951. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +0 -0
  952. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +0 -0
  953. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +0 -0
  954. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +0 -0
  955. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +0 -0
  956. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +0 -0
  957. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +0 -0
  958. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +0 -0
  959. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +0 -0
  960. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +0 -0
  961. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +0 -0
  962. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/problem1.c +0 -0
  963. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +0 -0
  964. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +0 -0
  965. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +0 -0
  966. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large.c +0 -0
  967. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large2.c +0 -0
  968. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +0 -0
  969. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +0 -0
  970. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +0 -0
  971. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +0 -0
  972. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +0 -0
  973. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +0 -0
  974. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +0 -0
  975. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +0 -0
  976. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +0 -0
  977. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +0 -0
  978. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +0 -0
  979. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +0 -0
  980. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +0 -0
  981. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +0 -0
  982. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +0 -0
  983. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +0 -0
  984. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +0 -0
  985. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +0 -0
  986. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +0 -0
  987. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +0 -0
  988. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +0 -0
  989. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +0 -0
  990. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +0 -0
  991. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +0 -0
  992. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +0 -0
  993. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +0 -0
  994. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +0 -0
  995. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +0 -0
  996. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +0 -0
  997. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +0 -0
  998. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +0 -0
  999. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +0 -0
  1000. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +0 -0
  1001. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +0 -0
  1002. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +0 -0
  1003. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +0 -0
  1004. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +0 -0
  1005. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +0 -0
  1006. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +0 -0
  1007. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +0 -0
  1008. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +0 -0
  1009. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +0 -0
  1010. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +0 -0
  1011. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +0 -0
  1012. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +0 -0
  1013. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +0 -0
  1014. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +0 -0
  1015. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +0 -0
  1016. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +0 -0
  1017. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +0 -0
  1018. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +0 -0
  1019. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +0 -0
  1020. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi.bsd.mk +0 -0
  1021. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi.darwin.mk +0 -0
  1022. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi.gnu.mk +0 -0
  1023. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi.mk +0 -0
  1024. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi.vc.mk +0 -0
  1025. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/libffi.vc64.mk +0 -0
  1026. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/rbffi.h +0 -0
  1027. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ext/ffi_c/rbffi_endian.h +0 -0
  1028. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/ffi.gemspec +0 -0
  1029. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/abstract_memory.rb +0 -0
  1030. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/autopointer.rb +0 -0
  1031. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/buffer.rb +0 -0
  1032. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/callback.rb +0 -0
  1033. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/compat.rb +0 -0
  1034. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/data_converter.rb +0 -0
  1035. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/dynamic_library.rb +0 -0
  1036. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/enum.rb +0 -0
  1037. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/errno.rb +0 -0
  1038. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/function.rb +0 -0
  1039. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/io.rb +0 -0
  1040. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/library.rb +0 -0
  1041. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/library_path.rb +0 -0
  1042. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/managedstruct.rb +0 -0
  1043. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/memorypointer.rb +0 -0
  1044. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/aarch64-darwin/types.conf +0 -0
  1045. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/aarch64-freebsd/types.conf +0 -0
  1046. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/aarch64-freebsd12/types.conf +0 -0
  1047. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/aarch64-linux/types.conf +0 -0
  1048. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/aarch64-openbsd/types.conf +0 -0
  1049. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/aarch64-windows/types.conf +0 -0
  1050. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/arm-freebsd/types.conf +0 -0
  1051. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/arm-freebsd12/types.conf +0 -0
  1052. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/arm-linux/types.conf +0 -0
  1053. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/hppa1.1-linux/types.conf +0 -0
  1054. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/hppa2.0-linux/types.conf +0 -0
  1055. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/i386-cygwin/types.conf +0 -0
  1056. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/i386-darwin/types.conf +0 -0
  1057. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/i386-freebsd/types.conf +0 -0
  1058. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/i386-freebsd12/types.conf +0 -0
  1059. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/i386-gnu/types.conf +0 -0
  1060. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/i386-linux/types.conf +0 -0
  1061. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/i386-netbsd/types.conf +0 -0
  1062. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/i386-openbsd/types.conf +0 -0
  1063. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/i386-solaris/types.conf +0 -0
  1064. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/i386-windows/types.conf +0 -0
  1065. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/ia64-linux/types.conf +0 -0
  1066. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/loongarch64-linux/types.conf +0 -0
  1067. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/mips-linux/types.conf +0 -0
  1068. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/mips64-linux/types.conf +0 -0
  1069. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/mips64el-linux/types.conf +0 -0
  1070. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/mipsel-linux/types.conf +0 -0
  1071. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/mipsisa32r6-linux/types.conf +0 -0
  1072. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/mipsisa32r6el-linux/types.conf +0 -0
  1073. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/mipsisa64r6-linux/types.conf +0 -0
  1074. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/mipsisa64r6el-linux/types.conf +0 -0
  1075. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/powerpc-aix/types.conf +0 -0
  1076. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/powerpc-darwin/types.conf +0 -0
  1077. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/powerpc-linux/types.conf +0 -0
  1078. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/powerpc-openbsd/types.conf +0 -0
  1079. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/powerpc64-linux/types.conf +0 -0
  1080. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/powerpc64le-linux/types.conf +0 -0
  1081. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/riscv64-linux/types.conf +0 -0
  1082. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/s390-linux/types.conf +0 -0
  1083. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/s390x-linux/types.conf +0 -0
  1084. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/sparc-linux/types.conf +0 -0
  1085. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/sparc-solaris/types.conf +0 -0
  1086. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/sparcv9-linux/types.conf +0 -0
  1087. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/sparcv9-openbsd/types.conf +0 -0
  1088. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/sparcv9-solaris/types.conf +0 -0
  1089. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/sw_64-linux/types.conf +0 -0
  1090. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/x86_64-cygwin/types.conf +0 -0
  1091. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/x86_64-darwin/types.conf +0 -0
  1092. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/x86_64-dragonflybsd/types.conf +0 -0
  1093. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/x86_64-freebsd/types.conf +0 -0
  1094. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/x86_64-freebsd12/types.conf +0 -0
  1095. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/x86_64-haiku/types.conf +0 -0
  1096. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/x86_64-linux/types.conf +0 -0
  1097. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/x86_64-msys/types.conf +0 -0
  1098. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/x86_64-netbsd/types.conf +0 -0
  1099. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/x86_64-openbsd/types.conf +0 -0
  1100. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/x86_64-solaris/types.conf +0 -0
  1101. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform/x86_64-windows/types.conf +0 -0
  1102. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/platform.rb +0 -0
  1103. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/pointer.rb +0 -0
  1104. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/struct.rb +0 -0
  1105. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/struct_by_reference.rb +0 -0
  1106. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/struct_layout.rb +0 -0
  1107. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/struct_layout_builder.rb +0 -0
  1108. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/tools/const_generator.rb +0 -0
  1109. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/tools/generator.rb +0 -0
  1110. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/tools/generator_task.rb +0 -0
  1111. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/tools/struct_generator.rb +0 -0
  1112. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/tools/types_generator.rb +0 -0
  1113. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/types.rb +0 -0
  1114. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/union.rb +0 -0
  1115. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi/variadic.rb +0 -0
  1116. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/lib/ffi.rb +0 -0
  1117. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/rakelib/ffi_gem_helper.rb +0 -0
  1118. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/samples/getlogin.rb +0 -0
  1119. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/samples/getpid.rb +0 -0
  1120. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/samples/gettimeofday.rb +0 -0
  1121. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/samples/hello.rb +0 -0
  1122. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/samples/hello_ractor.rb +0 -0
  1123. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/samples/inotify.rb +0 -0
  1124. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/samples/pty.rb +0 -0
  1125. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/samples/qsort.rb +0 -0
  1126. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/samples/qsort_ractor.rb +0 -0
  1127. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/sig/ffi/abstract_memory.rbs +0 -0
  1128. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/sig/ffi/buffer.rbs +0 -0
  1129. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/sig/ffi/data_converter.rbs +0 -0
  1130. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/sig/ffi/dynamic_library.rbs +0 -0
  1131. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/sig/ffi/enum.rbs +0 -0
  1132. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/sig/ffi/function.rbs +0 -0
  1133. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/sig/ffi/native_type.rbs +0 -0
  1134. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/sig/ffi/pointer.rbs +0 -0
  1135. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/sig/ffi/struct.rbs +0 -0
  1136. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/sig/ffi/struct_by_reference.rbs +0 -0
  1137. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/sig/ffi/struct_by_value.rbs +0 -0
  1138. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/sig/ffi/struct_layout.rbs +0 -0
  1139. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/sig/ffi/struct_layout_builder.rbs +0 -0
  1140. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/sig/ffi/type.rbs +0 -0
  1141. /data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.17.0 → ffi-1.17.1}/sig/ffi.rbs +0 -0
  1142. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/LICENSE.txt +0 -0
  1143. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/README.md +0 -0
  1144. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/doc/rexml/context.rdoc +0 -0
  1145. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/doc/rexml/tasks/rdoc/child.rdoc +0 -0
  1146. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/doc/rexml/tasks/rdoc/document.rdoc +0 -0
  1147. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/doc/rexml/tasks/rdoc/element.rdoc +0 -0
  1148. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/doc/rexml/tasks/rdoc/node.rdoc +0 -0
  1149. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/doc/rexml/tasks/rdoc/parent.rdoc +0 -0
  1150. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/doc/rexml/tasks/tocs/child_toc.rdoc +0 -0
  1151. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/doc/rexml/tasks/tocs/document_toc.rdoc +0 -0
  1152. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/doc/rexml/tasks/tocs/element_toc.rdoc +0 -0
  1153. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/doc/rexml/tasks/tocs/master_toc.rdoc +0 -0
  1154. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/doc/rexml/tasks/tocs/node_toc.rdoc +0 -0
  1155. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/doc/rexml/tasks/tocs/parent_toc.rdoc +0 -0
  1156. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/doc/rexml/tutorial.rdoc +0 -0
  1157. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/attlistdecl.rb +0 -0
  1158. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/attribute.rb +0 -0
  1159. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/cdata.rb +0 -0
  1160. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/child.rb +0 -0
  1161. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/comment.rb +0 -0
  1162. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/doctype.rb +0 -0
  1163. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/document.rb +0 -0
  1164. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/dtd/attlistdecl.rb +0 -0
  1165. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/dtd/dtd.rb +0 -0
  1166. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/dtd/elementdecl.rb +0 -0
  1167. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/dtd/entitydecl.rb +0 -0
  1168. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/dtd/notationdecl.rb +0 -0
  1169. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/element.rb +0 -0
  1170. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/encoding.rb +0 -0
  1171. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/entity.rb +0 -0
  1172. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/formatters/default.rb +0 -0
  1173. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/formatters/pretty.rb +0 -0
  1174. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/formatters/transitive.rb +0 -0
  1175. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/functions.rb +0 -0
  1176. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/instruction.rb +0 -0
  1177. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/light/node.rb +0 -0
  1178. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/namespace.rb +0 -0
  1179. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/node.rb +0 -0
  1180. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/output.rb +0 -0
  1181. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/parent.rb +0 -0
  1182. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/parseexception.rb +0 -0
  1183. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/parsers/lightparser.rb +0 -0
  1184. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/parsers/sax2parser.rb +0 -0
  1185. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/parsers/streamparser.rb +0 -0
  1186. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/parsers/treeparser.rb +0 -0
  1187. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/parsers/ultralightparser.rb +0 -0
  1188. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/parsers/xpathparser.rb +0 -0
  1189. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/quickpath.rb +0 -0
  1190. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/sax2listener.rb +0 -0
  1191. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/security.rb +0 -0
  1192. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/streamlistener.rb +0 -0
  1193. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/undefinednamespaceexception.rb +0 -0
  1194. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/validation/relaxng.rb +0 -0
  1195. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/validation/validation.rb +0 -0
  1196. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/validation/validationexception.rb +0 -0
  1197. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/xmldecl.rb +0 -0
  1198. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/xmltokens.rb +0 -0
  1199. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/xpath.rb +0 -0
  1200. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml/xpath_parser.rb +0 -0
  1201. /data/vendor/bundle/ruby/2.6.0/gems/{rexml-3.3.9 → rexml-3.4.1}/lib/rexml.rb +0 -0
  1202. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/.document +0 -0
  1203. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/.yardopts +0 -0
  1204. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/LICENSE.md +0 -0
  1205. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/README.md +0 -0
  1206. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/exe/rspec +0 -0
  1207. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/autorun.rb +0 -0
  1208. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/backtrace_formatter.rb +0 -0
  1209. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/bisect/coordinator.rb +0 -0
  1210. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/bisect/example_minimizer.rb +0 -0
  1211. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/bisect/fork_runner.rb +0 -0
  1212. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/bisect/server.rb +0 -0
  1213. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/bisect/shell_command.rb +0 -0
  1214. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/bisect/shell_runner.rb +0 -0
  1215. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/bisect/utilities.rb +0 -0
  1216. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/configuration.rb +0 -0
  1217. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/configuration_options.rb +0 -0
  1218. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/did_you_mean.rb +0 -0
  1219. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/dsl.rb +0 -0
  1220. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/example_group.rb +0 -0
  1221. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/example_status_persister.rb +0 -0
  1222. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/flat_map.rb +0 -0
  1223. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/base_bisect_formatter.rb +0 -0
  1224. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/base_formatter.rb +0 -0
  1225. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/base_text_formatter.rb +0 -0
  1226. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/bisect_drb_formatter.rb +0 -0
  1227. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/bisect_progress_formatter.rb +0 -0
  1228. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/console_codes.rb +0 -0
  1229. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/deprecation_formatter.rb +0 -0
  1230. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/documentation_formatter.rb +0 -0
  1231. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/exception_presenter.rb +0 -0
  1232. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/failure_list_formatter.rb +0 -0
  1233. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/fallback_message_formatter.rb +0 -0
  1234. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/helpers.rb +0 -0
  1235. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/html_formatter.rb +0 -0
  1236. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/html_printer.rb +0 -0
  1237. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/html_snippet_extractor.rb +0 -0
  1238. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/json_formatter.rb +0 -0
  1239. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/profile_formatter.rb +0 -0
  1240. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/progress_formatter.rb +0 -0
  1241. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/protocol.rb +0 -0
  1242. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/snippet_extractor.rb +0 -0
  1243. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters/syntax_highlighter.rb +0 -0
  1244. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/formatters.rb +0 -0
  1245. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/hooks.rb +0 -0
  1246. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/invocations.rb +0 -0
  1247. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/memoized_helpers.rb +0 -0
  1248. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/metadata.rb +0 -0
  1249. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/metadata_filter.rb +0 -0
  1250. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/minitest_assertions_adapter.rb +0 -0
  1251. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/mocking_adapters/flexmock.rb +0 -0
  1252. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/mocking_adapters/mocha.rb +0 -0
  1253. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/mocking_adapters/null.rb +0 -0
  1254. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/mocking_adapters/rr.rb +0 -0
  1255. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/mocking_adapters/rspec.rb +0 -0
  1256. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/notifications.rb +0 -0
  1257. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/option_parser.rb +0 -0
  1258. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/ordering.rb +0 -0
  1259. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/output_wrapper.rb +0 -0
  1260. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/pending.rb +0 -0
  1261. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/profiler.rb +0 -0
  1262. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/project_initializer/.rspec +0 -0
  1263. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/project_initializer/spec/spec_helper.rb +0 -0
  1264. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/project_initializer.rb +0 -0
  1265. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/rake_task.rb +0 -0
  1266. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/ruby_project.rb +0 -0
  1267. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/runner.rb +0 -0
  1268. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/sandbox.rb +0 -0
  1269. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/set.rb +0 -0
  1270. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/shared_context.rb +0 -0
  1271. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/shared_example_group.rb +0 -0
  1272. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/shell_escape.rb +0 -0
  1273. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/test_unit_assertions_adapter.rb +0 -0
  1274. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/warnings.rb +0 -0
  1275. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core/world.rb +0 -0
  1276. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.13.2 → rspec-core-3.13.3}/lib/rspec/core.rb +0 -0
  1277. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/LICENSE.md +0 -0
  1278. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/README.md +0 -0
  1279. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/caller_filter.rb +0 -0
  1280. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/comparable_version.rb +0 -0
  1281. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/differ.rb +0 -0
  1282. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/directory_maker.rb +0 -0
  1283. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/encoded_string.rb +0 -0
  1284. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/fuzzy_matcher.rb +0 -0
  1285. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/hunk_generator.rb +0 -0
  1286. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/matcher_definition.rb +0 -0
  1287. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/method_signature_verifier.rb +0 -0
  1288. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/mutex.rb +0 -0
  1289. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/object_formatter.rb +0 -0
  1290. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/recursive_const_methods.rb +0 -0
  1291. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/reentrant_mutex.rb +0 -0
  1292. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/ruby_features.rb +0 -0
  1293. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/source/location.rb +0 -0
  1294. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/source/node.rb +0 -0
  1295. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/source/token.rb +0 -0
  1296. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/source.rb +0 -0
  1297. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/spec/deprecation_helpers.rb +0 -0
  1298. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/spec/diff_helpers.rb +0 -0
  1299. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/spec/formatting_support.rb +0 -0
  1300. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/spec/in_sub_process.rb +0 -0
  1301. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/spec/library_wide_checks.rb +0 -0
  1302. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/spec/stderr_splitter.rb +0 -0
  1303. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/spec/string_matcher.rb +0 -0
  1304. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/spec/with_isolated_directory.rb +0 -0
  1305. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/spec/with_isolated_stderr.rb +0 -0
  1306. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/spec.rb +0 -0
  1307. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/warnings.rb +0 -0
  1308. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support/with_keywords_when_needed.rb +0 -0
  1309. /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.13.1 → rspec-support-3.13.2}/lib/rspec/support.rb +0 -0
@@ -0,0 +1,506 @@
1
+ # Changelog
2
+
3
+ ## 1.6.1 / 2025-03-25
4
+
5
+ - Performed further work on `Diff::LCS::Ldiff` improvements ([#46][issue-46])
6
+ and resolve several thread safety issues cleanly by making it a class.
7
+ [#129][pull-129]
8
+
9
+ - Restructure the project to be more consistent with the rest of the projects
10
+ that I manage.
11
+
12
+ - Increased GitHub action security.
13
+
14
+ - Added [trusted publishing][tp] for fully automated releases.
15
+
16
+ ## 1.6.0 / 2025-02-13
17
+
18
+ - Baptiste Courtois (@annih) has done significant work on making `bin/ldiff`
19
+ work better, contributing a number of issues and pull requests. These include:
20
+
21
+ - Separation of command parsing from diff-generation in `Diff::LCS::Ldiff`
22
+ code extraction making it easier to use separately from the `bin/ldiff`
23
+ command in [#103][pull-103]. This partially resolves [#46][issue-46].
24
+
25
+ - Improvement of binary and empty file detection and tests in [#104][pull-104]
26
+ and [#105][pull-105]. This resolves issues [#100][issue-100],
27
+ [#102][issue-102].
28
+
29
+ - Various ldiff fixes for output [#101][pull-101] resolves issues
30
+ [#106][issue-106] (ldiff ed scripts are inverted), [#107][issue-107] (ldiff
31
+ hunk ranges are incorrect; regression or incorrect fix for [#60][issue-60]),
32
+ and [#95][issue-95].
33
+
34
+ - Patrick Linnane fixed various minor typos. [#93][pull-93]
35
+
36
+ - Mark Young added a Changelog link to the RubyGems metadata. [#92][pull-92]
37
+ This has been modified to incorporate it into the README.
38
+
39
+ - Updated the documentation on `Diff::LCS#lcs` to be clearer about the
40
+ requirements for object equality comparison. This resolves [#70][issue-70].
41
+
42
+ - Governance:
43
+
44
+ Changes described here are effective 2024-12-31.
45
+
46
+ - Update gem management details to use markdown files for everything, enabled
47
+ in part by [flavorjones/hoe-markdown][hoe-markdown]. Several files were
48
+ renamed to be more consistent with standard practices.
49
+
50
+ - Updated security notes with an [age][age] public key rather than pointing to
51
+ Keybase.io and a PGP public key which I no longer use. The use of the
52
+ [Tidelift security contact][tidelift] is recommended over direct disclosure.
53
+
54
+ ## 1.5.1 / 2024-01-31
55
+
56
+ - Peter Goldstein updated CI configuration to add Ruby 3.1 and Masato Nakamura
57
+ added Ruby 3.2 and 3.3. [#82][pull-82], [#89][pull-89]
58
+
59
+ - Switched to [standard ruby][standard ruby] formatting.
60
+
61
+ - Justin Steele converted the licence file to Markdown. [#84][pull-84]
62
+
63
+ - Updated the gem SPDX identifier for GPL 2.0 or later, resolving [#86][pull-86]
64
+ by Vit Ondruch.
65
+
66
+ - Resolve a potential security issue with `ldiff` in its use of `IO.read`
67
+ instead of `File.read`. [#91][issue-91]
68
+
69
+ - Added MFA authentication requirement for release to RubyGems. [#90][pull-90]
70
+
71
+ - Added Dependabot management for actions and gems. [#90][pull-90]
72
+
73
+ - Updated CodeQL configuration. [#90][pull-90]
74
+
75
+ ## 1.5.0 / 2021-12-23
76
+
77
+ - Updated the CI configuration and monkey-patch Hoe.
78
+
79
+ - Kenichi Kamiya fixed a test configuration deprecation in SimpleCov.
80
+ [#69][pull-69]
81
+
82
+ - Tien introduced several corrections and code improvements:
83
+
84
+ - Removed an off-by-one error when calculating an index value by embracing
85
+ Ruby iteration properly. This had a side-effect of fixing a long-standing
86
+ bug in `#traverse_sequences` where the traversal would not be transitive.
87
+ That is, `LCS(s2, s1)` should produce a sequence that is transitive with
88
+ `LCS(s1, s2)` on traversal, and applying the diff computed from those
89
+ results would result in equivalent changes that could be played forward or
90
+ backward as appropriate. [#71][pull-71], [#75][pull-75]
91
+
92
+ - The above fix resulted in a changed order of the longest common subsequence
93
+ when callbacks were applied. After analysis, it was determined that the
94
+ computed subsequence was _equivalent_ to the prior version, so the test was
95
+ updated. This also resulted in the clarification of documentation when
96
+ traversing the sub-sequences. [#79][pull-79]
97
+
98
+ - An infinite loop case in the case where `Diff::LCS` would be included into
99
+ an enumerable class has been fixed. [#73][pull-73]
100
+
101
+ - Clarified the purpose of a threshold test in calculation of LCS.
102
+ [#72][pull-72], [#80][pull-80]
103
+
104
+ - Removed autotest directory
105
+
106
+ ## 1.4.4 / 2020-07-01
107
+
108
+ - Fixed an issue reported by Jun Aruga in the `Diff::LCS::Ldiff` binary text
109
+ detection. [#44][issue-44]
110
+
111
+ - Fixed a theoretical issue reported by Jun Aruga in `Diff::LCS::Hunk` to raise
112
+ a more useful exception. [#43][issue-43]
113
+
114
+ - Added documentation that should address custom object issues as reported in
115
+ [#35][issue-35].
116
+
117
+ - Fixed more diff errors, in part reported in [#65][issue-65].
118
+
119
+ - The use of `Numeric#abs` is incorrect in `Diff::LCS::Block#diff_size`. The
120
+ diff size _must_ be accurate for correct change placement.
121
+
122
+ - When selecting `@max_diff_size` in `Diff::LCS::Hunk`, choose it based on
123
+ `block.diff_size.abs`.
124
+
125
+ - Made a number of changes that will, unfortunately, increase allocations at
126
+ the cost of being safe with frozen strings.
127
+
128
+ - Add some knowledge that when `Diff::LCS::Hunk#diff` is called, that we are
129
+ processing the _last_ hunk, so some changes will be made to how the output
130
+ is generated.
131
+
132
+ - `old`, `ed`, and `reverse_ed` formats have no differences.
133
+
134
+ - `unified` format will report `` given the
135
+ correct conditions, at most once. Unified range reporting also differs for
136
+ the last hunk such that the `length` of the range is reduced by one.
137
+
138
+ - `context` format will report `\No newline at end of file` given the
139
+ correct conditions, up to once per "file". Context range reporting also
140
+ differs for the last hunk such that the `end` part of the range is reduced
141
+ by one to a minimum of one.
142
+
143
+ - Added a bunch more tests for the cases above, and fixed `hunk_spec.rb` so that
144
+ the phrase being compared isn't nonsense French.
145
+
146
+ - Updated formatting.
147
+
148
+ - Added a Rake task to assist with manual testing on Ruby 1.8.
149
+
150
+ ## 1.4.3 / 2020-06-29
151
+
152
+ - Fixed several issues with 1.4 on Rubies older than 2.0. Some of this was
153
+ providing useful shim functions to Hoe 3.x (which dropped these older Rubies a
154
+ while ago). Specifically:
155
+
156
+ - Removed Array#lazy from a method in `Diff::LCS::Hunk`.
157
+
158
+ - Changed some unit tests to use old-style Symbol-keyed hashes.
159
+
160
+ - Changed some unit test helper functions to no longer use keyword parameters,
161
+ but only a trailing options hash.
162
+
163
+ - Made the use of `psych` dependent on `RUBY_VERSION >= 1.9`.
164
+
165
+ Resolves [#63][issue-63].
166
+
167
+ ## 1.4.2 / 2020-06-23
168
+
169
+ - Camille Drapier fixed a small issue with RuboCop configuration. [#59][pull-59]
170
+
171
+ - Applied another fix (and unit test) to fix an issue for the Chef team.
172
+ [#60][issue-60], [#61][pull-61]
173
+
174
+ ## 1.4.1 / 2020-06-23
175
+
176
+ - Fix an issue where diff sizes could be negative, and they should be.
177
+ [#57][issue-57], [#58][pull-58]
178
+
179
+ ## 1.4 / 2020-06-23
180
+
181
+ - Ruby versions lower than 2.4 are soft-deprecated and will not be run as part
182
+ of the CI process any longer.
183
+
184
+ - Akinora MUSHA (knu) added the ability for `Diff::LCS::Change` objects to be
185
+ implicitly treated arrays. Originally provided as pull request [#47][pull-47],
186
+ but it introduced a number of test failures as documented in [#48][issue-48],
187
+ and remediation of `Diff::LCS` itself was introduced in [#49][pull-49].
188
+
189
+ - Resolved [#5][issue-05] with some tests comparing output from `system` calls
190
+ to `bin/ldiff` with some pre-generated output. Resolved [#6][issue-06] with
191
+ these tests.
192
+
193
+ - Resolved a previously undetected `bin/ldiff` issue with `--context` output not
194
+ matching `diff --context` output.
195
+
196
+ - Resolved an issue with later versions of Ruby not working with an `OptParse`
197
+ specification of `Numeric`; this has been changed to `Integer`.
198
+
199
+ - Brandon Fish added TruffleRuby in [#52][pull-52].
200
+
201
+ - Fixed two missing classes as reported in [#53][issue-53].
202
+
203
+ ## 1.3 / 2017-01-18
204
+
205
+ - Bugs fixed:
206
+
207
+ - Fixed an error for `bin/ldiff --version`. Fixes issue [#21][issue-21].
208
+
209
+ - Force `Diff::LCS::Change` and `Diff::LCS::ContextChange` to only perform
210
+ equality comparisons against themselves. Provided by Kevin Mook in pull
211
+ request [#29][pull-29].
212
+
213
+ - Fix tab expansion in `htmldiff`, provided by Mark Friedgan in pull request
214
+ [#25][pull-25].
215
+
216
+ - Silence Ruby 2.4 `Fixnum` deprecation warnings. Fixes issue [#38][issue-38]
217
+ and pull request [#36][pull-36].
218
+
219
+ - Ensure that test dependencies are loaded properly. Fixes issue
220
+ [#33][issue-33] and pull request [#34][pull-34].
221
+
222
+ - Fix issue [#1][issue-01] with incorrect intuition of patch direction.
223
+ Tentative fix, but the previous failure cases pass now.
224
+
225
+ - Tooling changes:
226
+
227
+ - Added SimpleCov and Coveralls support.
228
+
229
+ - Change the homepage (temporarily) to the GitHub repo.
230
+
231
+ - Updated testing and gem infrastructure.
232
+
233
+ - Modernized the specs.
234
+
235
+ - Cleaned up documentation.
236
+
237
+ - Added a Code of Conduct.
238
+
239
+ ## 1.2.5 / 2013-11-08
240
+
241
+ - Bugs fixed:
242
+
243
+ - Comparing arrays flattened them too far, especially with `Diff::LCS.sdiff`.
244
+ Fixed by Josh Bronson in pull request [#23][pull-23].
245
+
246
+ ## 1.2.4 / 2013-04-20
247
+
248
+ - Bugs fixed:
249
+
250
+ - A bug was introduced after 1.1.3 when pruning common sequences at the start
251
+ of comparison. Paul Kunysch (@pck) fixed this in pull request
252
+ [#18][pull-18]. Thanks!
253
+
254
+ - The Rubinius (1.9 mode) bug in [rubinius/rubinius#2268][rubinius#2268] has
255
+ been fixed by the Rubinius team two days after it was filed. Thanks for
256
+ fixing this so quickly!
257
+
258
+ - Switching to Raggi's hoe-gemspec2 for gemspec generation.
259
+
260
+ ## 1.2.3 / 2013-04-11
261
+
262
+ - Bugs Fixed:
263
+
264
+ - The new encoding detection for diff output generation (added in 1.2.2)
265
+ introduced a bug if the left side of the comparison was the empty set.
266
+ Originally found in [rspec/rspec-expectations#238][rspec-expectations#238]
267
+ and [rspec/rspec-expectations#239][rspec-expectations#239]. Jon Rowe
268
+ developed a reasonable heuristic (left side, right side, empty string
269
+ literal) to avoid this bug.
270
+
271
+ - There is a known issue with Rubinius in 1.9 mode reported in
272
+ [rubinius/rubinius#2268][rubinius#2268] and demonstrated in the Travis CI
273
+ builds. For all other tested platforms, diff-lcs is considered stable. As
274
+ soon as a suitably small test-case can be created for the Rubinius team to
275
+ examine, this will be added to the Rubinius issue around this.
276
+
277
+ ## 1.2.2 / 2013-03-30
278
+
279
+ - Bugs Fixed:
280
+
281
+ - `Diff::LCS::Hunk` could not properly generate a difference for comparison
282
+ sets that are not US-ASCII-compatible because of the use of literal regular
283
+ expressions and strings. Jon Rowe found this in
284
+ [rspec/rspec-expectations#219][rspec-expectations#219] and provided a first
285
+ pass implementation in pull request [#15][pull-15]. I've reworked it because
286
+ of test failures in Rubinius when running in Ruby 1.9 mode. This coerces the
287
+ added values to the encoding of the old dataset (as determined by the first
288
+ piece of the old dataset).
289
+
290
+ - Adding Travis CI testing for Ruby 2.0.
291
+
292
+ ## 1.2.1 / 2013-02-09
293
+
294
+ - Bugs Fixed:
295
+
296
+ - As seen in [rspec/rspec-expectations#200][rspec-expectations#200], the
297
+ release of `Diff::LCS` 1.2 introduced an unnecessary public API change to
298
+ `Diff::LCS::Hunk` (see the change at
299
+ [rspec/rspec-expectations@3d6fc82c][rspec-expectations@3d6fc82c] for
300
+ details). The new method name (and behaviour) is more correct, but I should
301
+ not have renamed the function or should have at least provided an alias.
302
+ This release restores `Diff::LCS::Hunk#unshift` as an alias to #merge. Note
303
+ that the old `#unshift` behaviour was incorrect and will not be restored.
304
+
305
+ ## 1.2.0 / 2013-01-21
306
+
307
+ - Minor Enhancements:
308
+
309
+ - Added special case handling for `Diff::LCS.patch` so that it handles patches
310
+ that are empty or contain no changes.
311
+
312
+ - Added two new methods (`#patch_me` and `#unpatch_me`) to the include-able
313
+ module.
314
+
315
+ - Bugs Fixed:
316
+
317
+ - Fixed issue [#1][issue-01] patch direction detection.
318
+
319
+ - Resolved issue [#2][issue-02] by handling `string[string.size, 1]` properly
320
+ (it returns `""` not `nil`).
321
+
322
+ - Michael Granger (ged) fixed an implementation error in `Diff::LCS::Change`
323
+ and added specs in pull request [#8][pull-08]. Thanks!
324
+
325
+ - Made the code auto-testable.
326
+
327
+ - Vít Ondruch (voxik) provided the latest version of the GPL2 license file in
328
+ pull request [#10][pull-10]. Thanks!
329
+
330
+ - Fixed a documentation issue with the include-able versions of `#patch!` and
331
+ `#unpatch!` where they implied that they would replace the original value.
332
+ Given that `Diff::LCS.patch` always returns a copy, the documentation was
333
+ incorrect and has been corrected. To provide the behaviour that was
334
+ originally documented, two new methods were added to provide this behaviour.
335
+ Found by scooter-dangle in issue [#12][issue-12]. Thanks!
336
+
337
+ - Code Style Changes:
338
+
339
+ - Removed trailing spaces.
340
+
341
+ - Calling class methods using `.` instead of `::`.
342
+
343
+ - Vít Ondruch (voxik) removed unnecessary shebangs in pull request
344
+ [#9][pull-09]. Thanks!
345
+
346
+ - Kenichi Kamiya (kachick) removed some warnings of an unused variable in
347
+ lucky pull request [#13][pull-13]. Thanks!
348
+
349
+ - Embarked on a major refactoring to make the files a little more manageable
350
+ and understand the code on a deeper level.
351
+
352
+ - Adding CI via Travis CI.
353
+
354
+ ## 1.1.3 / 2011-08-27
355
+
356
+ - Converted to 'hoe' for release.
357
+
358
+ - Converted tests to RSpec 2.
359
+
360
+ - Extracted the body of `htmldiff` into a class available from
361
+ `diff/lcs/htmldiff`.
362
+
363
+ - Migrated development and issue tracking to GitHub.
364
+
365
+ - Bugs fixed:
366
+
367
+ - Eliminated the explicit use of RubyGems in both `bin/htmldiff` and
368
+ `bin/ldiff`. Resolves issue [#4][issue-04].
369
+
370
+ - Eliminated Ruby warnings. Resolves issue [#3][issue-03].
371
+
372
+ ## 1.1.2 / 2004-10-20
373
+
374
+ - Fixed a problem reported by Mauricio Fernandez in `htmldiff`.
375
+
376
+ ## 1.1.1 / 2004-09-25
377
+
378
+ - Fixed bug #891 (Set returned from patch command does not contain last equal
379
+ part).
380
+
381
+ - Fixed a problem with callback initialisation code (it assumed that all
382
+ callbacks passed as classes can be initialised; now, it rescues NoMethodError
383
+ in the event of private :new being called).
384
+
385
+ - Modified the non-initialisable callbacks to have a private `#new` method.
386
+
387
+ - Moved `ldiff` core code to `Diff::LCS::Ldiff` (`diff/lcs/ldiff.rb`).
388
+
389
+ ## 1.1.0
390
+
391
+ - Eliminated the need for `Diff::LCS::Event` and removed it.
392
+
393
+ - Added a contextual diff callback, `Diff::LCS::ContextDiffCallback`.
394
+
395
+ - Implemented (un-)patching for standard diff callback output formats with both
396
+ `#diff` and `#sdiff`.
397
+
398
+ - Extensive documentation changes.
399
+
400
+ ## 1.0.4
401
+
402
+ - Fixed a problem with `bin/ldiff` output, especially for unified format.
403
+ Newlines that should have been present weren't.
404
+
405
+ - Changed the `.tar.gz` installer to generate Windows batch files if ones do not
406
+ exist already. Removed the existing batch files as they didn't work.
407
+
408
+ ## 1.0.3
409
+
410
+ - Fixed a problem with `#traverse_sequences` where the first difference from the
411
+ left sequence might not be appropriately captured.
412
+
413
+ ## 1.0.2
414
+
415
+ - Fixed an issue with `ldiff` not working because actions were changed from
416
+ symbols to strings.
417
+
418
+ ## 1.0.1
419
+
420
+ - Minor modifications to the `gemspec`, the `README`.
421
+
422
+ - Renamed the diff program to `ldiff` (as well as the companion batch file) so
423
+ as to not collide with the standard diff program.
424
+
425
+ - Fixed issues with RubyGems. Requires RubyGems > 0.6.1 or >= 0.6.1 with the
426
+ latest CVS version.
427
+
428
+ ## 1.0
429
+
430
+ - Initial release based mostly on Perl's Algorithm::Diff.
431
+
432
+ [age]: https://github.com/FiloSottile/age
433
+ [hoe-halostatue]: https://github.com/halostatue/hoe-halostatue
434
+ [hoe-markdown]: https://github.com/flavorjones/hoe-markdown
435
+ [issue-01]: https://github.com/halostatue/diff-lcs/issues/1
436
+ [issue-02]: https://github.com/halostatue/diff-lcs/issues/2
437
+ [issue-03]: https://github.com/halostatue/diff-lcs/issues/3
438
+ [issue-04]: https://github.com/halostatue/diff-lcs/issues/4
439
+ [issue-05]: https://github.com/halostatue/diff-lcs/issues/5
440
+ [issue-06]: https://github.com/halostatue/diff-lcs/issues/6
441
+ [issue-12]: https://github.com/halostatue/diff-lcs/issues/12
442
+ [issue-21]: https://github.com/halostatue/diff-lcs/issues/21
443
+ [issue-33]: https://github.com/halostatue/diff-lcs/issues/33
444
+ [issue-35]: https://github.com/halostatue/diff-lcs/issues/35
445
+ [issue-38]: https://github.com/halostatue/diff-lcs/issues/38
446
+ [issue-43]: https://github.com/halostatue/diff-lcs/issues/43
447
+ [issue-44]: https://github.com/halostatue/diff-lcs/issues/44
448
+ [issue-46]: https://github.com/halostatue/diff-lcs/issues/46
449
+ [issue-48]: https://github.com/halostatue/diff-lcs/issues/48
450
+ [issue-53]: https://github.com/halostatue/diff-lcs/issues/53
451
+ [issue-57]: https://github.com/halostatue/diff-lcs/issues/57
452
+ [issue-60]: https://github.com/halostatue/diff-lcs/issues/60
453
+ [issue-63]: https://github.com/halostatue/diff-lcs/issues/63
454
+ [issue-65]: https://github.com/halostatue/diff-lcs/issues/65
455
+ [issue-70]: https://github.com/halostatue/diff-lcs/issues/70
456
+ [issue-91]: https://github.com/halostatue/diff-lcs/issues/91
457
+ [issue-95]: https://github.com/halostatue/diff-lcs/issues/95
458
+ [issue-100]: https://github.com/halostatue/diff-lcs/issues/100
459
+ [issue-102]: https://github.com/halostatue/diff-lcs/issues/102
460
+ [issue-106]: https://github.com/halostatue/diff-lcs/issues/106
461
+ [issue-107]: https://github.com/halostatue/diff-lcs/issues/107
462
+ [pull-08]: https://github.com/halostatue/diff-lcs/pull/8
463
+ [pull-09]: https://github.com/halostatue/diff-lcs/pull/9
464
+ [pull-10]: https://github.com/halostatue/diff-lcs/pull/10
465
+ [pull-13]: https://github.com/halostatue/diff-lcs/pull/13
466
+ [pull-15]: https://github.com/halostatue/diff-lcs/pull/15
467
+ [pull-18]: https://github.com/halostatue/diff-lcs/pull/18
468
+ [pull-23]: https://github.com/halostatue/diff-lcs/pull/23
469
+ [pull-25]: https://github.com/halostatue/diff-lcs/pull/25
470
+ [pull-29]: https://github.com/halostatue/diff-lcs/pull/29
471
+ [pull-34]: https://github.com/halostatue/diff-lcs/pull/34
472
+ [pull-36]: https://github.com/halostatue/diff-lcs/pull/36
473
+ [pull-47]: https://github.com/halostatue/diff-lcs/pull/47
474
+ [pull-49]: https://github.com/halostatue/diff-lcs/pull/49
475
+ [pull-52]: https://github.com/halostatue/diff-lcs/pull/52
476
+ [pull-58]: https://github.com/halostatue/diff-lcs/pull/58
477
+ [pull-59]: https://github.com/halostatue/diff-lcs/pull/59
478
+ [pull-61]: https://github.com/halostatue/diff-lcs/pull/61
479
+ [pull-69]: https://github.com/halostatue/diff-lcs/pull/69
480
+ [pull-71]: https://github.com/halostatue/diff-lcs/pull/71
481
+ [pull-72]: https://github.com/halostatue/diff-lcs/pull/72
482
+ [pull-73]: https://github.com/halostatue/diff-lcs/pull/73
483
+ [pull-75]: https://github.com/halostatue/diff-lcs/pull/75
484
+ [pull-79]: https://github.com/halostatue/diff-lcs/pull/79
485
+ [pull-80]: https://github.com/halostatue/diff-lcs/pull/80
486
+ [pull-82]: https://github.com/halostatue/diff-lcs/pull/82
487
+ [pull-84]: https://github.com/halostatue/diff-lcs/pull/84
488
+ [pull-86]: https://github.com/halostatue/diff-lcs/pull/86
489
+ [pull-89]: https://github.com/halostatue/diff-lcs/pull/89
490
+ [pull-90]: https://github.com/halostatue/diff-lcs/pull/90
491
+ [pull-92]: https://github.com/halostatue/diff-lcs/pull/92
492
+ [pull-93]: https://github.com/halostatue/diff-lcs/pull/93
493
+ [pull-101]: https://github.com/halostatue/diff-lcs/pull/101
494
+ [pull-103]: https://github.com/halostatue/diff-lcs/pull/103
495
+ [pull-104]: https://github.com/halostatue/diff-lcs/pull/104
496
+ [pull-105]: https://github.com/halostatue/diff-lcs/pull/105
497
+ [pull-129]: https://github.com/halostatue/diff-lcs/pull/129
498
+ [rspec-expectations#200]: https://github.com/rspec/rspec-expectations/pull/200
499
+ [rspec-expectations#219]: https://github.com/rspec/rspec-expectations/issues/219
500
+ [rspec-expectations#238]: https://github.com/rspec/rspec-expectations/issues/238
501
+ [rspec-expectations#239]: https://github.com/rspec/rspec-expectations/issues/239
502
+ [rspec-expectations@3d6fc82c]: https://github.com/rspec/rspec-expectations/commit/3d6fc82c
503
+ [rubinius#2268]: https://github.com/rubinius/rubinius/issues/2268
504
+ [standard ruby]: https://github.com/standardrb/standard
505
+ [tidelift]: https://tidelift.com/security
506
+ [tp]: https://guides.rubygems.org/trusted-publishing/
@@ -0,0 +1,128 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, caste, color, religion, or sexual
10
+ identity and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ - Demonstrating empathy and kindness toward other people
21
+ - Being respectful of differing opinions, viewpoints, and experiences
22
+ - Giving and gracefully accepting constructive feedback
23
+ - Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ - Focusing on what is best not just for us as individuals, but for the overall
26
+ community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ - The use of sexualized language or imagery, and sexual attention or advances of
31
+ any kind
32
+ - Trolling, insulting or derogatory comments, and personal or political attacks
33
+ - Public or private harassment
34
+ - Publishing others' private information, such as a physical or email address,
35
+ without their explicit permission
36
+ - Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official email address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement at [INSERT CONTACT
63
+ METHOD]. All complaints will be reviewed and investigated promptly and fairly.
64
+
65
+ All community leaders are obligated to respect the privacy and security of the
66
+ reporter of any incident.
67
+
68
+ ## Enforcement Guidelines
69
+
70
+ Community leaders will follow these Community Impact Guidelines in determining
71
+ the consequences for any action they deem in violation of this Code of Conduct:
72
+
73
+ ### 1. Correction
74
+
75
+ **Community Impact**: Use of inappropriate language or other behavior deemed
76
+ unprofessional or unwelcome in the community.
77
+
78
+ **Consequence**: A private, written warning from community leaders, providing
79
+ clarity around the nature of the violation and an explanation of why the
80
+ behavior was inappropriate. A public apology may be requested.
81
+
82
+ ### 2. Warning
83
+
84
+ **Community Impact**: A violation through a single incident or series of
85
+ actions.
86
+
87
+ **Consequence**: A warning with consequences for continued behavior. No
88
+ interaction with the people involved, including unsolicited interaction with
89
+ those enforcing the Code of Conduct, for a specified period of time. This
90
+ includes avoiding interactions in community spaces as well as external channels
91
+ like social media. Violating these terms may lead to a temporary or permanent
92
+ ban.
93
+
94
+ ### 3. Temporary Ban
95
+
96
+ **Community Impact**: A serious violation of community standards, including
97
+ sustained inappropriate behavior.
98
+
99
+ **Consequence**: A temporary ban from any sort of interaction or public
100
+ communication with the community for a specified period of time. No public or
101
+ private interaction with the people involved, including unsolicited interaction
102
+ with those enforcing the Code of Conduct, is allowed during this period.
103
+ Violating these terms may lead to a permanent ban.
104
+
105
+ ### 4. Permanent Ban
106
+
107
+ **Community Impact**: Demonstrating a pattern of violation of community
108
+ standards, including sustained inappropriate behavior, harassment of an
109
+ individual, or aggression toward or disparagement of classes of individuals.
110
+
111
+ **Consequence**: A permanent ban from any sort of public interaction within the
112
+ community.
113
+
114
+ ## Attribution
115
+
116
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
117
+ version 2.1, available at
118
+ <https://www.contributor-covenant.org/version/2/1/code_of_conduct.html>.
119
+
120
+ Community Impact Guidelines were inspired by
121
+ [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
122
+
123
+ For answers to common questions about this code of conduct, see the FAQ at
124
+ <https://www.contributor-covenant.org/faq>. Translations are available at
125
+ <https://www.contributor-covenant.org/translations>.
126
+
127
+ [homepage]: https://www.contributor-covenant.org
128
+ [Mozilla CoC]: https://github.com/mozilla/diversity