cloudsmith-api 0.53.1 → 0.57.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +24 -24
- data/README.md +32 -27
- data/build.json +1 -1
- data/docs/AlpinePackageUpload.md +8 -1
- data/docs/BadgesApi.md +21 -8
- data/docs/ConanPackageUpload.md +8 -1
- data/docs/DistrosApi.md +3 -13
- data/docs/EntitlementUsageMetrics.md +8 -0
- data/docs/EntitlementsApi.md +17 -63
- data/docs/EntitlementsCreate.md +4 -0
- data/docs/EntitlementsPartialUpdate.md +4 -0
- data/docs/EntitlementsRefresh.md +4 -0
- data/docs/FilesApi.md +6 -31
- data/docs/FormatsApi.md +3 -13
- data/docs/MavenPackageUpload.md +8 -1
- data/docs/MetricsApi.md +94 -37
- data/docs/NamespacesApi.md +3 -13
- data/docs/OrgsApi.md +3 -13
- data/docs/Package.md +8 -1
- data/docs/PackageCopy.md +8 -1
- data/docs/PackageMove.md +8 -1
- data/docs/PackageUsageMetrics.md +8 -0
- data/docs/PackagesApi.md +112 -301
- data/docs/PackagesownerrepoFiles.md +1 -0
- data/docs/QuotaApi.md +38 -82
- data/docs/QuotaHistory.md +1 -1
- data/docs/QuotaHistoryHistory.md +13 -0
- data/docs/RatesApi.md +2 -7
- data/docs/RawPackageUpload.md +8 -1
- data/docs/ReposApi.md +7 -37
- data/docs/RepositoryToken.md +7 -0
- data/docs/RepositoryTokenRefresh.md +7 -0
- data/docs/RepositoryTokenSyncTokens.md +7 -0
- data/docs/StatusApi.md +1 -1
- data/docs/StorageregionsApi.md +3 -13
- data/docs/UserApi.md +3 -13
- data/docs/UsersApi.md +2 -7
- data/docs/VagrantPackageUpload.md +8 -1
- data/docs/VulnerabilitiesApi.md +264 -0
- data/docs/VulnerabilityScanResults.md +15 -0
- data/docs/VulnerabilityScanResultsList.md +14 -0
- data/docs/WebhooksApi.md +6 -31
- data/lib/cloudsmith-api.rb +6 -4
- data/lib/cloudsmith-api/api/badges_api.rb +28 -1
- data/lib/cloudsmith-api/api/distros_api.rb +2 -2
- data/lib/cloudsmith-api/api/entitlements_api.rb +13 -10
- data/lib/cloudsmith-api/api/files_api.rb +5 -5
- data/lib/cloudsmith-api/api/formats_api.rb +2 -2
- data/lib/cloudsmith-api/api/metrics_api.rb +106 -40
- data/lib/cloudsmith-api/api/namespaces_api.rb +2 -2
- data/lib/cloudsmith-api/api/orgs_api.rb +2 -2
- data/lib/cloudsmith-api/api/packages_api.rb +113 -50
- data/lib/cloudsmith-api/api/quota_api.rb +56 -80
- data/lib/cloudsmith-api/api/rates_api.rb +1 -1
- data/lib/cloudsmith-api/api/repos_api.rb +6 -6
- data/lib/cloudsmith-api/api/storageregions_api.rb +2 -2
- data/lib/cloudsmith-api/api/user_api.rb +2 -2
- data/lib/cloudsmith-api/api/users_api.rb +1 -1
- data/lib/cloudsmith-api/api/vulnerabilities_api.rb +281 -0
- data/lib/cloudsmith-api/api/webhooks_api.rb +5 -5
- data/lib/cloudsmith-api/configuration.rb +1 -8
- data/lib/cloudsmith-api/models/alpine_package_upload.rb +75 -5
- data/lib/cloudsmith-api/models/conan_package_upload.rb +75 -5
- data/lib/cloudsmith-api/models/entitlement_usage_metrics.rb +194 -0
- data/lib/cloudsmith-api/models/entitlements_create.rb +41 -1
- data/lib/cloudsmith-api/models/entitlements_partial_update.rb +41 -1
- data/lib/cloudsmith-api/models/entitlements_refresh.rb +41 -1
- data/lib/cloudsmith-api/models/maven_package_upload.rb +75 -5
- data/lib/cloudsmith-api/models/package.rb +75 -5
- data/lib/cloudsmith-api/models/package_copy.rb +75 -5
- data/lib/cloudsmith-api/models/package_move.rb +75 -5
- data/lib/cloudsmith-api/models/package_usage_metrics.rb +194 -0
- data/lib/cloudsmith-api/models/packagesownerrepo_files.rb +11 -1
- data/lib/cloudsmith-api/models/quota_history.rb +1 -1
- data/lib/cloudsmith-api/models/quota_history_history.rb +239 -0
- data/lib/cloudsmith-api/models/raw_package_upload.rb +75 -5
- data/lib/cloudsmith-api/models/repository_token.rb +71 -1
- data/lib/cloudsmith-api/models/repository_token_refresh.rb +71 -1
- data/lib/cloudsmith-api/models/repository_token_sync_tokens.rb +71 -1
- data/lib/cloudsmith-api/models/vagrant_package_upload.rb +75 -5
- data/lib/cloudsmith-api/models/vulnerability_scan_results.rb +279 -0
- data/lib/cloudsmith-api/models/vulnerability_scan_results_list.rb +264 -0
- data/lib/cloudsmith-api/version.rb +1 -1
- data/spec/api/badges_api_spec.rb +9 -0
- data/spec/api/entitlements_api_spec.rb +1 -0
- data/spec/api/metrics_api_spec.rb +31 -14
- data/spec/api/packages_api_spec.rb +14 -0
- data/spec/api/quota_api_spec.rb +18 -26
- data/spec/api/vulnerabilities_api_spec.rb +95 -0
- data/spec/configuration_spec.rb +3 -3
- data/spec/models/alpine_package_upload_spec.rb +42 -0
- data/spec/models/conan_package_upload_spec.rb +42 -0
- data/spec/models/entitlement_usage_metrics_spec.rb +42 -0
- data/spec/models/entitlements_create_spec.rb +24 -0
- data/spec/models/entitlements_partial_update_spec.rb +24 -0
- data/spec/models/entitlements_refresh_spec.rb +24 -0
- data/spec/models/maven_package_upload_spec.rb +42 -0
- data/spec/models/package_copy_spec.rb +42 -0
- data/spec/models/package_move_spec.rb +42 -0
- data/spec/models/package_spec.rb +42 -0
- data/spec/models/package_usage_metrics_spec.rb +42 -0
- data/spec/models/packagesownerrepo_files_spec.rb +6 -0
- data/spec/models/quota_history_history_spec.rb +72 -0
- data/spec/models/raw_package_upload_spec.rb +42 -0
- data/spec/models/repository_token_refresh_spec.rb +42 -0
- data/spec/models/repository_token_spec.rb +42 -0
- data/spec/models/repository_token_sync_tokens_spec.rb +42 -0
- data/spec/models/vagrant_package_upload_spec.rb +42 -0
- data/spec/models/vulnerability_scan_results_list_spec.rb +78 -0
- data/spec/models/vulnerability_scan_results_spec.rb +84 -0
- data/vendor/bundle/ruby/2.6.0/cache/autotest-fsevent-0.2.18.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/crack-0.4.5.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/ethon-0.14.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/ffi-1.15.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/json-2.5.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rexml-3.2.5.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-3.10.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-core-3.10.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-expectations-3.10.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-mocks-3.10.2.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-support-3.10.2.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/sys-uname-1.2.2.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.18}/gem.build_complete +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.2.18/gem_make.out +14 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.0/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{ffi-1.13.1 → ffi-1.15.0}/gem.build_complete +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.0/gem_make.out +42 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{ffi-1.13.1 → ffi-1.15.0}/mkmf.log +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{json-2.3.1 → json-2.5.1}/gem.build_complete +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.5.1/gem_make.out +13 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.5.1/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.5.1/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{json-2.3.1 → json-2.5.1}/mkmf.log +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.18/CHANGELOG.md +130 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.18}/LICENSE.txt +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.18}/README.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.18}/ext/fsevent/Makefile +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.18/ext/fsevent/extconf.rb +40 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.18}/ext/fsevent/fsevent.dll +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.18}/ext/fsevent/fsevent.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.18}/ext/fsevent/fsevent_sleep.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.18}/ext/fsevent/make +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.18}/ext/fsevent/nmake.bat +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.18}/lib/autotest-fsevent.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.18/lib/autotest-fsevent/version.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.18}/lib/autotest/fsevent.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.18}/post-install.txt +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.18}/prebuilt/fsevent_sleep +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{crack-0.4.3 → crack-0.4.5}/lib/crack.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.5/lib/crack/json.rb +98 -0
- data/vendor/bundle/ruby/2.6.0/gems/{crack-0.4.3 → crack-0.4.5}/lib/crack/util.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.5/lib/crack/version.rb +3 -0
- data/vendor/bundle/ruby/2.6.0/gems/{crack-0.4.3 → crack-0.4.5}/lib/crack/xml.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/.github/workflows/ruby.yml +41 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ethon-0.12.0 → ethon-0.14.0}/.gitignore +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ethon-0.12.0 → ethon-0.14.0}/.rspec +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/CHANGELOG.md +368 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/Gemfile +43 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/Guardfile +10 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ethon-0.12.0 → ethon-0.14.0}/LICENSE +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/README.md +95 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/Rakefile +40 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/ethon.gemspec +26 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon.rb +36 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/curl.rb +90 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/curls/classes.rb +55 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/curls/codes.rb +122 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/curls/constants.rb +63 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/curls/form_options.rb +37 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/curls/functions.rb +57 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/curls/infos.rb +151 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/curls/messages.rb +19 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/curls/options.rb +471 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/curls/settings.rb +10 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy.rb +315 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/callbacks.rb +148 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/debug_info.rb +47 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/features.rb +31 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/form.rb +107 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/header.rb +61 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/http.rb +68 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/http/actionable.rb +157 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/http/custom.rb +29 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/http/delete.rb +25 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/http/get.rb +24 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/http/head.rb +24 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/http/options.rb +24 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/http/patch.rb +24 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/http/post.rb +26 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/http/postable.rb +32 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/http/put.rb +27 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/http/putable.rb +25 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/informations.rb +95 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/mirror.rb +36 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/operations.rb +78 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/options.rb +50 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/params.rb +29 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/queryable.rb +154 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/response_callbacks.rb +131 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/easy/util.rb +28 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/errors.rb +17 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/errors/ethon_error.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/errors/global_init.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/errors/invalid_option.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/errors/invalid_value.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/errors/multi_add.rb +12 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/errors/multi_fdset.rb +12 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/errors/multi_remove.rb +12 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/errors/multi_timeout.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/errors/select.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/libc.rb +21 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/loggable.rb +59 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/multi.rb +104 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/multi/operations.rb +191 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/multi/options.rb +117 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/multi/stack.rb +49 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/lib/ethon/version.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/profile/benchmarks.rb +104 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/profile/memory_leaks.rb +114 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/profile/perf_spec_helper.rb +37 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/profile/support/memory_test_helpers.rb +76 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/profile/support/os_memory_leak_tracker.rb +48 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/profile/support/ruby_object_leak_tracker.rb +49 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/curl_spec.rb +38 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/callbacks_spec.rb +59 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/debug_info_spec.rb +54 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/features_spec.rb +24 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/form_spec.rb +104 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/header_spec.rb +79 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/http/custom_spec.rb +177 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/http/delete_spec.rb +21 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/http/get_spec.rb +126 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/http/head_spec.rb +80 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/http/options_spec.rb +51 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/http/patch_spec.rb +51 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/http/post_spec.rb +317 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/http/put_spec.rb +168 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/http_spec.rb +64 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/informations_spec.rb +98 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/mirror_spec.rb +46 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/operations_spec.rb +268 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/options_spec.rb +193 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/queryable_spec.rb +235 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/response_callbacks_spec.rb +152 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy/util_spec.rb +28 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/easy_spec.rb +203 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/libc_spec.rb +14 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/loggable_spec.rb +22 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/multi/operations_spec.rb +298 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/multi/options_spec.rb +69 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/multi/stack_spec.rb +80 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/ethon/multi_spec.rb +22 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/spec_helper.rb +28 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/support/localhost_server.rb +95 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.14.0/spec/support/server.rb +115 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/CHANGELOG.md +286 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/COPYING +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/Gemfile +14 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/LICENSE +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/LICENSE.SPECS +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/README.md +132 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/Rakefile +177 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/.sitearchdir.time +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/AbstractMemory.c +1104 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/AbstractMemory.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/AbstractMemory.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/ArrayType.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/ArrayType.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/ArrayType.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Buffer.c +360 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Buffer.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Call.c +487 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/Call.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Call.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/ClosurePool.c +333 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/ClosurePool.h +59 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/ClosurePool.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/DynamicLibrary.c +334 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/DynamicLibrary.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/DynamicLibrary.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Function.c +917 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Function.h +83 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Function.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/FunctionInfo.c +266 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/FunctionInfo.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/LastError.c +225 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/LastError.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/LastError.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/LongDouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/LongDouble.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/LongDouble.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Makefile +266 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/MappedType.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/MappedType.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/MappedType.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/MemoryPointer.c +192 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/MemoryPointer.h +49 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/MemoryPointer.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/MethodHandle.c +348 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/MethodHandle.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/MethodHandle.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Platform.c +78 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/Platform.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Platform.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Pointer.c +507 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Pointer.h +59 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Pointer.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Struct.c +822 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/Struct.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Struct.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/StructByValue.c +145 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/StructByValue.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/StructByValue.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/StructLayout.c +700 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/StructLayout.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Thread.c +129 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Thread.h +76 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Thread.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Type.c +379 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/Type.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Type.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Types.c +138 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Types.h +88 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Types.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Variadic.c +303 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/Variadic.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/compat.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/extconf.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/extconf.rb +95 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/ffi.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi.bsd.mk +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi.darwin.mk +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi.gnu.mk +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi.mk +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi.vc.mk +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi.vc64.mk +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/.appveyor.yml +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/.gitattributes +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/.github/issue_template.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/.gitignore +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/.travis.yml +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/.travis/ar-lib +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/.travis/bfin-sim.exp +58 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/.travis/build-in-container.sh +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/.travis/build.sh +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/.travis/compile +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/.travis/install.sh +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/.travis/m32r-sim.exp +58 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/.travis/moxie-sim.exp +60 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/.travis/or1k-sim.exp +58 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/.travis/powerpc-eabisim.exp +58 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/.travis/site.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/.travis/wine-sim.exp +55 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/ChangeLog.old +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/LICENSE +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/Makefile.am +150 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/README.md +486 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/acinclude.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/autogen.sh +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/config.guess +1687 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/config.sub +1851 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/configure.ac +415 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/configure.host +318 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/doc/Makefile.am +3 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/doc/libffi.texi +997 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/doc/version.texi +4 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +201 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/include/Makefile.am +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/include/ffi.h.in +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/include/ffi_cfi.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/include/ffi_common.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/libffi.map.in +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/libffi.pc.in +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/libtool-version +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/m4/asmcfi.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/m4/ax_append_flag.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/m4/ax_configure_args.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/m4/ax_require_defined.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/make_sunver.pl +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/man/Makefile.am +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/man/ffi.3 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/man/ffi_call.3 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/man/ffi_prep_cif.3 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/msvcc.sh +353 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/aarch64/ffi.c +1025 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/aarch64/ffitarget.h +97 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/aarch64/internal.h +68 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/aarch64/sysv.S +451 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/alpha/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/alpha/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/alpha/internal.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/alpha/osf.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/arc/arcompact.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/arc/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/arc/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/arm/ffi.c +876 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/arm/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/arm/internal.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/arm/sysv.S +385 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/avr32/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/avr32/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/avr32/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/bfin/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/bfin/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/bfin/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/closures.c +1021 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/cris/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/cris/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/cris/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/csky/ffi.c +395 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/csky/ffitarget.h +63 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/csky/sysv.S +371 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/debug.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/dlmalloc.c +5166 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/frv/eabi.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/frv/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/frv/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/ia64/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/ia64/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/ia64/ia64_flags.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/ia64/unix.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/java_raw_api.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/kvx/asm.h +5 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/kvx/ffi.c +273 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/kvx/ffitarget.h +75 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/kvx/sysv.S +127 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/m32r/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/m32r/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/m32r/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/m68k/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/m68k/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/m68k/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/m88k/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/m88k/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/m88k/obsd.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/metag/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/metag/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/metag/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/microblaze/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/microblaze/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/microblaze/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/mips/ffi.c +1134 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/mips/ffitarget.h +244 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/mips/n32.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/mips/o32.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/moxie/eabi.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/moxie/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/moxie/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/nios2/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/nios2/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/nios2/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/or1k/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/or1k/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/or1k/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/pa/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/pa/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/pa/hpux32.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/pa/linux.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/powerpc/aix.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/powerpc/aix_closure.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/powerpc/asm.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/powerpc/darwin.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/powerpc/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1452 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +105 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/powerpc/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/powerpc/linux64.S +291 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +564 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/powerpc/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/prep_cif.c +263 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/raw_api.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/riscv/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/riscv/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/riscv/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/s390/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/s390/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/s390/internal.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/s390/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/sh/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/sh/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/sh/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/sh64/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/sh64/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/sh64/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/sparc/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/sparc/ffi64.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/sparc/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/sparc/internal.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/sparc/v8.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/sparc/v9.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/tile/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/tile/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/tile/tile.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/types.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/vax/elfbsd.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/vax/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/vax/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/x86/asmnames.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/x86/ffi.c +770 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/x86/ffi64.c +895 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/x86/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/x86/ffiw64.c +318 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/x86/internal.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/x86/internal64.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/x86/sysv.S +1138 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/x86/sysv_intel.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/x86/unix64.S +621 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/x86/win64.S +241 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/src/x86/win64_intel.S +238 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/xtensa/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/xtensa/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/src/xtensa/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/stamp-h.in +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/Makefile.am +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/config/default.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/testsuite/lib/libffi.exp +660 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1745 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2885 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/many.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_args.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_float_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar_va.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort_va.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/err_bad_abi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +343 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/problem1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/rbffi.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/ext/ffi_c/rbffi_endian.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/ffi.gemspec +43 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi.rb +28 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi/abstract_memory.rb +44 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi/autopointer.rb +203 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/buffer.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/callback.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/data_converter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/enum.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/errno.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi/ffi.rb +47 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi/io.rb +62 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi/library.rb +592 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi/managedstruct.rb +84 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/memorypointer.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi/platform.rb +188 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1/lib/ffi/platform/x86_64-darwin → ffi-1.15.0/lib/ffi/platform/aarch64-darwin}/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/aarch64-freebsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/aarch64-freebsd12/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/aarch64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1/lib/ffi/platform/x86_64-openbsd → ffi-1.15.0/lib/ffi/platform/aarch64-openbsd}/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/arm-freebsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/arm-freebsd12/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/arm-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/i386-cygwin/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/i386-darwin/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/i386-freebsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/i386-freebsd12/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/i386-gnu/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/i386-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/i386-netbsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/i386-openbsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/i386-solaris/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/i386-windows/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/ia64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/mips-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/mips64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/mips64el-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/mipsel-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/mipsisa32r6-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/mipsisa32r6el-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/mipsisa64r6-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/mipsisa64r6el-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/powerpc-aix/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/powerpc-darwin/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/powerpc-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/powerpc-openbsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/powerpc64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi/platform/riscv64-linux/types.conf +104 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/s390-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/s390x-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/sparc-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/sparc-solaris/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/sparc64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/sparcv9-openbsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/sparcv9-solaris/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/x86_64-cygwin/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi/platform/x86_64-darwin/types.conf +130 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/x86_64-dragonflybsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/x86_64-freebsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/x86_64-freebsd12/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/x86_64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi/platform/x86_64-msys/types.conf +119 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/x86_64-netbsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/x86_64-solaris/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/platform/x86_64-windows/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi/pointer.rb +167 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/struct.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/struct_by_reference.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/struct_layout.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/struct_layout_builder.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/tools/const_generator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/tools/generator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/tools/generator_task.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/tools/struct_generator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/tools/types_generator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/types.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/lib/ffi/union.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi/variadic.rb +69 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi/version.rb +3 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/lib/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.0/rakelib/ffi_gem_helper.rb +65 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/samples/getlogin.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/samples/getpid.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/samples/gettimeofday.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/samples/hello.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/samples/inotify.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/samples/pty.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.0}/samples/qsort.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/CHANGES.md +446 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/Gemfile +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/LICENSE +56 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/README.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/VERSION +1 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/ext/json/Makefile +202 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/ext/json/ext/fbuffer/fbuffer.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/ext/json/ext/generator/.sitearchdir.-.json.-.ext.time +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/ext/json/ext/generator/Makefile +267 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/ext/json/ext/generator/depend +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/ext/json/ext/generator/extconf.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/ext/json/ext/generator/generator.c +1618 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/ext/json/ext/generator/generator.h +174 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/ext/json/ext/generator/generator.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/ext/json/ext/generator/generator.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/ext/json/ext/parser/.sitearchdir.-.json.-.ext.time +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/ext/json/ext/parser/Makefile +267 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/ext/json/ext/parser/depend +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/ext/json/ext/parser/extconf.rb +31 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/ext/json/ext/parser/parser.c +2179 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/ext/json/ext/parser/parser.h +92 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/ext/json/ext/parser/parser.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/ext/json/ext/parser/parser.rl +939 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/ext/json/ext/parser/parser.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/ext/json/extconf.rb +3 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/json.gemspec +73 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/lib/json.rb +583 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/lib/json/add/bigdecimal.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/lib/json/add/complex.rb +28 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/lib/json/add/core.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/lib/json/add/date.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/lib/json/add/date_time.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/lib/json/add/exception.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/lib/json/add/ostruct.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/lib/json/add/range.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/lib/json/add/rational.rb +27 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/lib/json/add/regexp.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/lib/json/add/set.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/lib/json/add/struct.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/lib/json/add/symbol.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/lib/json/add/time.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/lib/json/common.rb +703 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/lib/json/ext.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1/diagrams → json-2.5.1/lib/json/ext}/.keep +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/lib/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/lib/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/lib/json/generic_object.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/lib/json/pure.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/lib/json/pure/generator.rb +479 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/lib/json/pure/parser.rb +337 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/lib/json/version.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail10.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail11.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail12.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail13.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail14.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail18.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail19.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail2.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail20.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail21.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail22.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail23.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail24.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail25.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail27.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail28.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/tests/fixtures/fail29.json +1 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail3.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/tests/fixtures/fail30.json +1 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/tests/fixtures/fail31.json +1 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/tests/fixtures/fail32.json +1 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail4.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail5.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail6.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail7.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail8.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/fail9.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/obsolete_fail1.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/pass1.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/pass15.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/pass16.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/pass17.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/pass2.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/pass26.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/fixtures/pass3.json +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/tests/json_addition_test.rb +199 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/tests/json_common_interface_test.rb +169 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/json_encoding_test.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/json_ext_parser_test.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/tests/json_fixtures_test.rb +40 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/tests/json_generator_test.rb +399 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/json_generic_object_test.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/tests/json_parser_test.rb +497 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.5.1}/tests/json_string_matching_test.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/tests/lib/core_assertions.rb +763 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/tests/lib/envutil.rb +365 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/tests/lib/find_executable.rb +22 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/tests/lib/helper.rb +4 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/tests/ractor_test.rb +30 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.5.1/tests/test_helper.rb +17 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/LICENSE.txt +22 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/NEWS.md +178 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/README.md +48 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/context.rdoc +143 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/child.rdoc +87 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/document.rdoc +276 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/element.rdoc +602 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/node.rdoc +97 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/parent.rdoc +267 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/child_toc.rdoc +12 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/document_toc.rdoc +30 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/element_toc.rdoc +55 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/master_toc.rdoc +135 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/node_toc.rdoc +16 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/parent_toc.rdoc +25 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml.rb +3 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/attlistdecl.rb +63 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/attribute.rb +205 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/cdata.rb +68 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/child.rb +97 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/comment.rb +80 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/doctype.rb +311 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/document.rb +451 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/dtd/attlistdecl.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/dtd/dtd.rb +47 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/dtd/elementdecl.rb +18 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/dtd/entitydecl.rb +57 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/dtd/notationdecl.rb +40 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/element.rb +2599 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/encoding.rb +51 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/entity.rb +171 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/formatters/default.rb +116 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/formatters/pretty.rb +142 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/formatters/transitive.rb +58 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/functions.rb +447 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/instruction.rb +79 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/light/node.rb +188 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/namespace.rb +59 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/node.rb +76 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/output.rb +30 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parent.rb +166 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parseexception.rb +52 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parsers/baseparser.rb +694 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parsers/lightparser.rb +59 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parsers/pullparser.rb +197 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parsers/sax2parser.rb +273 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parsers/streamparser.rb +61 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parsers/treeparser.rb +101 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parsers/ultralightparser.rb +57 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parsers/xpathparser.rb +689 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/quickpath.rb +266 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/rexml.rb +37 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/sax2listener.rb +98 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/security.rb +28 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/source.rb +298 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/streamlistener.rb +93 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/text.rb +424 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/undefinednamespaceexception.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/validation/relaxng.rb +539 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/validation/validation.rb +144 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/validation/validationexception.rb +10 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/xmldecl.rb +130 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/xmltokens.rb +85 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/xpath.rb +81 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/xpath_parser.rb +974 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-3.9.0 → rspec-3.10.0}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-3.9.0 → rspec-3.10.0}/README.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-3.9.0 → rspec-3.10.0}/lib/rspec.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-3.10.0/lib/rspec/version.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/.document +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/.yardopts +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.10.1/Changelog.md +2327 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.10.1/README.md +384 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/exe/rspec +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/autorun.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/backtrace_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/bisect/coordinator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/bisect/example_minimizer.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/fork_runner.rb +138 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/bisect/server.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/bisect/shell_command.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/bisect/shell_runner.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/bisect/utilities.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.10.1/lib/rspec/core/configuration.rb +2372 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/configuration_options.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/did_you_mean.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.10.1/lib/rspec/core/drb.rb +120 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/dsl.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.10.1/lib/rspec/core/example.rb +663 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.10.1/lib/rspec/core/example_group.rb +901 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/example_status_persister.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/filter_manager.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/flat_map.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/base_bisect_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/base_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/base_text_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/bisect_drb_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/bisect_progress_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/console_codes.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/deprecation_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/documentation_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/exception_presenter.rb +521 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/failure_list_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/fallback_message_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/helpers.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/html_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/html_printer.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/html_snippet_extractor.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/json_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/profile_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/progress_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/protocol.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/snippet_extractor.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/formatters/syntax_highlighter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.10.1/lib/rspec/core/hooks.rb +646 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.10.1/lib/rspec/core/invocations.rb +87 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/memoized_helpers.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/metadata.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/metadata_filter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/minitest_assertions_adapter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/mocking_adapters/flexmock.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/mocking_adapters/mocha.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/mocking_adapters/null.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/mocking_adapters/rr.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/mocking_adapters/rspec.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/notifications.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.10.1/lib/rspec/core/option_parser.rb +324 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/ordering.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/output_wrapper.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/pending.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/profiler.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/project_initializer.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/project_initializer/.rspec +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/project_initializer/spec/spec_helper.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/rake_task.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/reporter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/ruby_project.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.10.1/lib/rspec/core/runner.rb +212 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/sandbox.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/set.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/shared_context.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/shared_example_group.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/shell_escape.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/test_unit_assertions_adapter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.10.1/lib/rspec/core/version.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.10.1}/lib/rspec/core/warnings.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.10.1/lib/rspec/core/world.rb +277 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/.document +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/.yardopts +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/Changelog.md +1240 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/README.md +320 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/expectations.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/expectations/block_snippet_extractor.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/configuration.rb +230 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/expectations/expectation_target.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/expectations/fail_with.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/failure_aggregator.rb +212 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/handler.rb +182 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/expectations/minitest_integration.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/expectations/syntax.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/version.rb +8 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers.rb +1041 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/aliased_matcher.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in.rb +53 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/all.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/base_matcher.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be.rb +191 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/be_between.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/be_instance_of.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/be_kind_of.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be_within.rb +72 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/change.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/compound.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/contain_exactly.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/count_expectation.rb +169 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/cover.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/eq.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/eql.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/equal.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/exist.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/has.rb +167 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/have_attributes.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/include.rb +206 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/match.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/operators.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/output.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/raise_error.rb +259 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/respond_to.rb +200 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/satisfy.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/start_or_end_with.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/built_in/throw_symbol.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/yield.rb +355 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/composable.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/dsl.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/english_phrasing.rb +58 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/fail_matchers.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/generated_descriptions.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/matcher_delegator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.10.1}/lib/rspec/matchers/matcher_protocol.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/.document +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/.yardopts +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.10.2/Changelog.md +1167 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.10.2/README.md +463 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks.rb +133 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/any_instance.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/any_instance/chain.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/any_instance/error_generator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/any_instance/expect_chain_chain.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/any_instance/expectation_chain.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/any_instance/message_chains.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/any_instance/proxy.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/recorder.rb +295 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/any_instance/stub_chain.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/any_instance/stub_chain_chain.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/argument_list_matcher.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/argument_matchers.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/configuration.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/error_generator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/example_methods.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/instance_method_stasher.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/marshal_extension.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/matchers/expectation_customization.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/matchers/have_received.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/matchers/receive.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/matchers/receive_message_chain.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/matchers/receive_messages.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/message_chain.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/message_expectation.rb +751 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/method_double.rb +288 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/method_reference.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/minitest_integration.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/mutate_const.rb +339 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/object_reference.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/order_group.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/proxy.rb +519 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/space.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/standalone.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/syntax.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/targets.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/test_double.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/verifying_double.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/verifying_message_expectation.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.10.2}/lib/rspec/mocks/verifying_proxy.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/version.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.10.2/Changelog.md +332 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.10.2/README.md +40 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.10.2/lib/rspec/support.rb +154 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.10.2/lib/rspec/support/caller_filter.rb +83 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.10.2/lib/rspec/support/comparable_version.rb +46 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/differ.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/directory_maker.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/encoded_string.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/fuzzy_matcher.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/hunk_generator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/matcher_definition.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.10.2/lib/rspec/support/method_signature_verifier.rb +438 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/mutex.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/object_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/recursive_const_methods.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/reentrant_mutex.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.10.2/lib/rspec/support/ruby_features.rb +191 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.10.2/lib/rspec/support/source.rb +85 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/source/location.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/source/node.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/source/token.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.10.2/lib/rspec/support/spec.rb +82 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/deprecation_helpers.rb +48 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/diff_helpers.rb +31 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/spec/formatting_support.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/in_sub_process.rb +67 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/spec/library_wide_checks.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/shell_out.rb +105 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/spec/stderr_splitter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/string_matcher.rb +45 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/spec/with_isolated_directory.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/spec/with_isolated_stderr.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.10.2/lib/rspec/support/version.rb +7 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/warnings.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.10.2}/lib/rspec/support/with_keywords_when_needed.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/CHANGES.md +230 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/Gemfile +7 -0
- data/vendor/bundle/ruby/2.6.0/gems/{sys-uname-1.2.1 → sys-uname-1.2.2}/LICENSE +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/MANIFEST.md +12 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/README.md +53 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/Rakefile +37 -0
- data/vendor/bundle/ruby/2.6.0/gems/{sys-uname-1.2.1 → sys-uname-1.2.2}/certs/djberg96_pub.pem +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/doc/uname.rdoc +127 -0
- data/vendor/bundle/ruby/2.6.0/gems/{sys-uname-1.2.1 → sys-uname-1.2.2}/examples/uname_test.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{sys-uname-1.2.1 → sys-uname-1.2.2}/lib/sys-uname.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{sys-uname-1.2.1 → sys-uname-1.2.2}/lib/sys/platform.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/lib/sys/uname.rb +19 -0
- data/vendor/bundle/ruby/2.6.0/gems/{sys-uname-1.2.1 → sys-uname-1.2.2}/lib/sys/unix/uname.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{sys-uname-1.2.1 → sys-uname-1.2.2}/lib/sys/windows/uname.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/spec/sys_platform_spec.rb +75 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/spec/sys_uname_spec.rb +445 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/sys-uname.gemspec +37 -0
- data/vendor/bundle/ruby/2.6.0/specifications/ZenTest-4.12.0.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/addressable-2.7.0.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/autotest-4.4.6.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/autotest-fsevent-0.2.18.gemspec +49 -0
- data/vendor/bundle/ruby/2.6.0/specifications/autotest-growl-0.2.16.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/autotest-rails-pure-4.1.2.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/crack-0.4.5.gemspec +32 -0
- data/vendor/bundle/ruby/2.6.0/specifications/diff-lcs-1.4.4.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/ethon-0.14.0.gemspec +32 -0
- data/vendor/bundle/ruby/2.6.0/specifications/ffi-1.15.0.gemspec +50 -0
- data/vendor/bundle/ruby/2.6.0/specifications/hashdiff-1.0.1.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/json-2.5.1.gemspec +0 -0
- data/vendor/bundle/ruby/2.6.0/specifications/public_suffix-4.0.6.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/rake-12.0.0.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/rexml-3.2.5.gemspec +42 -0
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-3.10.0.gemspec +43 -0
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-core-3.10.1.gemspec +63 -0
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-expectations-3.10.1.gemspec +51 -0
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-mocks-3.10.2.gemspec +51 -0
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-support-3.10.2.gemspec +39 -0
- data/vendor/bundle/ruby/2.6.0/specifications/sys-uname-1.2.2.gemspec +42 -0
- data/vendor/bundle/ruby/2.6.0/specifications/typhoeus-1.4.0.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/vcr-3.0.3.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/webmock-1.24.6.gemspec +2 -2
- metadata +1272 -1277
- data/docs/EntitlementTokenMetric.md +0 -9
- data/docs/MetricsownerrepopackagesusageActivePackages.md +0 -10
- data/docs/PackageUsageMetric.md +0 -11
- data/docs/QuotaownerhistoryHistory.md +0 -13
- data/lib/cloudsmith-api/models/entitlement_token_metric.rb +0 -209
- data/lib/cloudsmith-api/models/metricsownerrepopackagesusage_active_packages.rb +0 -209
- data/lib/cloudsmith-api/models/package_usage_metric.rb +0 -243
- data/lib/cloudsmith-api/models/quotaownerhistory_history.rb +0 -239
- data/spec/models/entitlement_token_metric_spec.rb +0 -48
- data/spec/models/metricsownerrepopackagesusage_active_packages_spec.rb +0 -54
- data/spec/models/package_usage_metric_spec.rb +0 -60
- data/spec/models/quotaownerhistory_history_spec.rb +0 -72
- data/vendor/bundle/ruby/2.6.0/bin/safe_yaml +0 -27
- data/vendor/bundle/ruby/2.6.0/cache/autotest-fsevent-0.2.17.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/crack-0.4.3.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/ethon-0.12.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/ffi-1.13.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/json-2.3.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-3.9.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-core-3.9.2.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-expectations-3.9.2.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-mocks-3.9.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-support-3.9.3.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/safe_yaml-1.0.5.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/sys-uname-1.2.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.2.17/gem_make.out +0 -14
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.13.1/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.13.1/gem_make.out +0 -42
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.3.1/gem_make.out +0 -13
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.3.1/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.3.1/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.17/CHANGELOG.md +0 -125
- data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.17/ext/fsevent/extconf.rb +0 -40
- data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.17/lib/autotest-fsevent/version.rb +0 -5
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/.gitignore +0 -8
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/.travis.yml +0 -14
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/Gemfile +0 -5
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/History +0 -25
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/LICENSE +0 -20
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/README.md +0 -46
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/crack.gemspec +0 -20
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/lib/crack/json.rb +0 -111
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/lib/crack/version.rb +0 -3
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/script/bootstrap +0 -21
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/script/release +0 -42
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/script/test +0 -25
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/data/large_dataset.json +0 -139988
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/data/twittersearch-firefox.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/data/twittersearch-ie.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/hash_test.rb +0 -26
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/json_test.rb +0 -91
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/parser_test.rb +0 -27
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/string_test.rb +0 -31
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/test_helper.rb +0 -3
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/xml_test.rb +0 -514
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/.travis.yml +0 -30
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/CHANGELOG.md +0 -365
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/Gemfile +0 -38
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/Guardfile +0 -9
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/README.md +0 -95
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/Rakefile +0 -39
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/ethon.gemspec +0 -25
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon.rb +0 -35
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curl.rb +0 -89
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/classes.rb +0 -54
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/codes.rb +0 -122
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/constants.rb +0 -62
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/form_options.rb +0 -36
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/functions.rb +0 -66
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/infos.rb +0 -150
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/messages.rb +0 -18
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/options.rb +0 -468
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/settings.rb +0 -9
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy.rb +0 -315
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/callbacks.rb +0 -147
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/debug_info.rb +0 -46
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/features.rb +0 -30
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/form.rb +0 -106
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/header.rb +0 -60
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http.rb +0 -67
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/actionable.rb +0 -156
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/custom.rb +0 -28
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/delete.rb +0 -24
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/get.rb +0 -23
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/head.rb +0 -23
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/options.rb +0 -23
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/patch.rb +0 -23
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/post.rb +0 -25
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/postable.rb +0 -31
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/put.rb +0 -26
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/putable.rb +0 -24
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/informations.rb +0 -94
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/mirror.rb +0 -35
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/operations.rb +0 -63
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/options.rb +0 -49
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/params.rb +0 -28
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/queryable.rb +0 -153
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/response_callbacks.rb +0 -130
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/util.rb +0 -27
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors.rb +0 -16
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/ethon_error.rb +0 -8
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/global_init.rb +0 -12
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/invalid_option.rb +0 -12
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/invalid_value.rb +0 -12
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/multi_add.rb +0 -11
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/multi_fdset.rb +0 -11
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/multi_remove.rb +0 -11
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/multi_timeout.rb +0 -12
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/select.rb +0 -12
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/libc.rb +0 -20
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/loggable.rb +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/multi.rb +0 -103
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/multi/operations.rb +0 -190
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/multi/options.rb +0 -116
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/multi/stack.rb +0 -48
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/version.rb +0 -5
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/profile/benchmarks.rb +0 -103
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/profile/memory_leaks.rb +0 -113
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/profile/perf_spec_helper.rb +0 -36
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/profile/support/memory_test_helpers.rb +0 -75
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/profile/support/os_memory_leak_tracker.rb +0 -47
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/profile/support/ruby_object_leak_tracker.rb +0 -48
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/curl_spec.rb +0 -37
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/callbacks_spec.rb +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/debug_info_spec.rb +0 -53
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/features_spec.rb +0 -23
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/form_spec.rb +0 -103
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/header_spec.rb +0 -78
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http/custom_spec.rb +0 -176
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http/delete_spec.rb +0 -20
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http/get_spec.rb +0 -125
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http/head_spec.rb +0 -79
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http/options_spec.rb +0 -50
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http/patch_spec.rb +0 -50
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http/post_spec.rb +0 -316
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http/put_spec.rb +0 -167
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http_spec.rb +0 -63
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/informations_spec.rb +0 -97
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/mirror_spec.rb +0 -45
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/operations_spec.rb +0 -267
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/options_spec.rb +0 -192
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/queryable_spec.rb +0 -234
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/response_callbacks_spec.rb +0 -151
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/util_spec.rb +0 -27
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy_spec.rb +0 -202
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/libc_spec.rb +0 -13
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/loggable_spec.rb +0 -21
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/multi/operations_spec.rb +0 -297
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/multi/options_spec.rb +0 -68
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/multi/stack_spec.rb +0 -79
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/multi_spec.rb +0 -21
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/spec_helper.rb +0 -27
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/support/localhost_server.rb +0 -94
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/support/server.rb +0 -114
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/.appveyor.yml +0 -30
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/.github/workflows/ci.yml +0 -64
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/.gitignore +0 -25
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/.gitmodules +0 -4
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/.travis.yml +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/.yardopts +0 -5
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/CHANGELOG.md +0 -222
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/Gemfile +0 -17
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/README.md +0 -124
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/Rakefile +0 -177
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/AbstractMemory.c +0 -1105
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Buffer.c +0 -365
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Call.c +0 -493
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/ClosurePool.c +0 -280
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/ClosurePool.h +0 -57
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/DynamicLibrary.c +0 -339
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Function.c +0 -902
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Function.h +0 -87
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/FunctionInfo.c +0 -270
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/LastError.c +0 -229
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Makefile +0 -266
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/MemoryPointer.c +0 -197
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/MemoryPointer.h +0 -53
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/MethodHandle.c +0 -352
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Platform.c +0 -83
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Pointer.c +0 -508
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Pointer.h +0 -63
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Struct.c +0 -825
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/StructByValue.c +0 -150
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/StructLayout.c +0 -704
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Thread.c +0 -134
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Thread.h +0 -81
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Type.c +0 -379
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Types.c +0 -139
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Types.h +0 -89
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Variadic.c +0 -298
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/extconf.rb +0 -82
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/.travis/bfin-sim.exp +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/.travis/m32r-sim.exp +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/.travis/moxie-sim.exp +0 -60
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/.travis/or1k-sim.exp +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/.travis/powerpc-eabisim.exp +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/.travis/wine-sim.exp +0 -55
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/Makefile.am +0 -160
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/README.md +0 -482
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/config.guess +0 -1466
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/config.sub +0 -1836
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/configure.ac +0 -410
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/configure.host +0 -306
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +0 -201
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/msvcc.sh +0 -353
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/aarch64/ffi.c +0 -1015
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/aarch64/ffitarget.h +0 -92
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/aarch64/internal.h +0 -67
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/aarch64/sysv.S +0 -451
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +0 -506
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/arm/ffi.c +0 -854
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/arm/sysv.S +0 -385
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/closures.c +0 -1004
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/dlmalloc.c +0 -5166
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/mips/ffi.c +0 -1130
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/mips/ffitarget.h +0 -244
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +0 -1440
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +0 -105
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/powerpc/linux64.S +0 -283
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +0 -552
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/prep_cif.c +0 -263
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/x86/ffi.c +0 -764
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/x86/ffi64.c +0 -888
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/x86/ffiw64.c +0 -313
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/x86/sysv.S +0 -1138
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/x86/unix64.S +0 -622
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/x86/win64.S +0 -240
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/x86/win64_intel.S +0 -237
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/testsuite/lib/libffi.exp +0 -640
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +0 -1745
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +0 -2885
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +0 -341
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/win32/stdbool.h +0 -8
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/win32/stdint.h +0 -201
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ffi.gemspec +0 -43
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi.rb +0 -28
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/autopointer.rb +0 -203
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/ffi.rb +0 -46
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/io.rb +0 -62
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/library.rb +0 -592
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/managedstruct.rb +0 -84
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/platform.rb +0 -179
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/pointer.rb +0 -167
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/variadic.rb +0 -78
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/version.rb +0 -3
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/.gitignore +0 -18
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/.travis.yml +0 -26
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/CHANGES.md +0 -424
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/README-json-jruby.md +0 -33
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/Rakefile +0 -334
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/VERSION +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/generator/generator.c +0 -1569
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/generator/generator.h +0 -171
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/generator/generator.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/parser/extconf.rb +0 -6
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/parser/parser.c +0 -2137
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/parser/parser.h +0 -91
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/parser/parser.rl +0 -897
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/parser/parser.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/extconf.rb +0 -2
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/install.rb +0 -23
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/ByteListTranscoder.java +0 -166
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/Generator.java +0 -466
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/GeneratorMethods.java +0 -231
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/GeneratorService.java +0 -42
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/GeneratorState.java +0 -490
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/OptionsReader.java +0 -113
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/Parser.java +0 -2362
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/Parser.rl +0 -893
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/ParserService.java +0 -34
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/RuntimeInfo.java +0 -116
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/StringDecoder.java +0 -166
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/StringEncoder.java +0 -111
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/Utils.java +0 -88
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/json-java.gemspec +0 -37
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/json.gemspec +0 -139
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/json_pure.gemspec +0 -33
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json.rb +0 -412
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/add/complex.rb +0 -29
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/add/rational.rb +0 -28
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/common.rb +0 -691
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/ext/.keep +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/pure/generator.rb +0 -459
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/pure/parser.rb +0 -319
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/version.rb +0 -9
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/references/rfc7159.txt +0 -899
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_addition_test.rb +0 -203
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_common_interface_test.rb +0 -126
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_fixtures_test.rb +0 -37
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_generator_test.rb +0 -421
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_parser_test.rb +0 -472
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/test_helper.rb +0 -17
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tools/diff.sh +0 -18
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tools/fuzz.rb +0 -131
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tools/server.rb +0 -62
- data/vendor/bundle/ruby/2.6.0/gems/rspec-3.9.0/lib/rspec/version.rb +0 -5
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/Changelog.md +0 -2291
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/README.md +0 -384
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/fork_runner.rb +0 -135
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/configuration.rb +0 -2363
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/drb.rb +0 -113
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/example.rb +0 -656
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/example_group.rb +0 -900
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/exception_presenter.rb +0 -511
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/hooks.rb +0 -641
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/invocations.rb +0 -87
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/option_parser.rb +0 -316
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/runner.rb +0 -204
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/version.rb +0 -9
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/world.rb +0 -276
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/Changelog.md +0 -1191
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/README.md +0 -320
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/configuration.rb +0 -215
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/failure_aggregator.rb +0 -194
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/handler.rb +0 -170
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/version.rb +0 -8
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers.rb +0 -1038
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in.rb +0 -52
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/be.rb +0 -288
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/be_within.rb +0 -72
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/has.rb +0 -103
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/include.rb +0 -149
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/raise_error.rb +0 -230
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/respond_to.rb +0 -199
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/yield.rb +0 -441
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/english_phrasing.rb +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/Changelog.md +0 -1133
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/README.md +0 -463
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks.rb +0 -130
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/recorder.rb +0 -294
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_expectation.rb +0 -751
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_double.rb +0 -287
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/mutate_const.rb +0 -339
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/proxy.rb +0 -503
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/version.rb +0 -9
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/Changelog.md +0 -302
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/README.md +0 -40
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support.rb +0 -149
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/caller_filter.rb +0 -83
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/comparable_version.rb +0 -46
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/method_signature_verifier.rb +0 -438
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/ruby_features.rb +0 -190
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/source.rb +0 -75
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec.rb +0 -81
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/deprecation_helpers.rb +0 -64
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/in_sub_process.rb +0 -69
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/shell_out.rb +0 -89
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/string_matcher.rb +0 -46
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/version.rb +0 -7
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/.gitignore +0 -3
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/.travis.yml +0 -48
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/CHANGES.md +0 -154
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/Gemfile +0 -11
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/LICENSE.txt +0 -22
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/README.md +0 -191
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/Rakefile +0 -26
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/bin/safe_yaml +0 -75
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/bundle_install_all_ruby_versions.sh +0 -11
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml.rb +0 -94
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/deep.rb +0 -34
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/libyaml_checker.rb +0 -36
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/load.rb +0 -181
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/parse/date.rb +0 -37
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/parse/hexadecimal.rb +0 -12
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/parse/sexagesimal.rb +0 -26
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/psych_handler.rb +0 -99
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/psych_resolver.rb +0 -52
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/resolver.rb +0 -94
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/safe_to_ruby_visitor.rb +0 -29
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/store.rb +0 -39
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/syck_hack.rb +0 -36
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/syck_node_monkeypatch.rb +0 -43
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/syck_resolver.rb +0 -38
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform.rb +0 -41
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_boolean.rb +0 -21
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_date.rb +0 -13
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_float.rb +0 -33
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_integer.rb +0 -26
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_nil.rb +0 -18
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_symbol.rb +0 -17
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/transformation_map.rb +0 -47
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/version.rb +0 -3
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/run_specs_all_ruby_versions.sh +0 -38
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/safe_yaml.gemspec +0 -19
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/exploit.1.9.2.yaml +0 -2
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/exploit.1.9.3.yaml +0 -2
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/issue48.txt +0 -20
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/issue49.yml +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/libyaml_checker_spec.rb +0 -69
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/psych_resolver_spec.rb +0 -10
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/resolver_specs.rb +0 -278
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/safe_yaml_spec.rb +0 -731
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/spec_helper.rb +0 -42
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/store_spec.rb +0 -57
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/support/exploitable_back_door.rb +0 -29
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/syck_resolver_spec.rb +0 -10
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/transform/base64_spec.rb +0 -11
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/transform/to_date_spec.rb +0 -60
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/transform/to_float_spec.rb +0 -42
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/transform/to_integer_spec.rb +0 -64
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/transform/to_symbol_spec.rb +0 -51
- data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/yaml_spec.rb +0 -15
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/CHANGES.rdoc +0 -224
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/MANIFEST.rdoc +0 -11
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/README.rdoc +0 -51
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/Rakefile +0 -37
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/doc/uname.rdoc +0 -127
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/lib/sys/uname.rb +0 -19
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/spec/sys_platform_spec.rb +0 -75
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/spec/sys_uname_spec.rb +0 -445
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/sys-uname.gemspec +0 -36
- data/vendor/bundle/ruby/2.6.0/specifications/autotest-fsevent-0.2.17.gemspec +0 -49
- data/vendor/bundle/ruby/2.6.0/specifications/crack-0.4.3.gemspec +0 -32
- data/vendor/bundle/ruby/2.6.0/specifications/ethon-0.12.0.gemspec +0 -32
- data/vendor/bundle/ruby/2.6.0/specifications/ffi-1.13.1.gemspec +0 -50
- data/vendor/bundle/ruby/2.6.0/specifications/json-2.3.1.gemspec +0 -0
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-3.9.0.gemspec +0 -43
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-core-3.9.2.gemspec +0 -63
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-expectations-3.9.2.gemspec +0 -51
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-mocks-3.9.1.gemspec +0 -51
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-support-3.9.3.gemspec +0 -39
- data/vendor/bundle/ruby/2.6.0/specifications/safe_yaml-1.0.5.gemspec +0 -23
- data/vendor/bundle/ruby/2.6.0/specifications/sys-uname-1.2.1.gemspec +0 -39
@@ -1,33 +0,0 @@
|
|
1
|
-
JSON-JRuby
|
2
|
-
==========
|
3
|
-
|
4
|
-
JSON-JRuby is a port of Florian Frank's native
|
5
|
-
[`json` library](http://json.rubyforge.org/) to JRuby.
|
6
|
-
It aims to be a perfect drop-in replacement for `json_pure`.
|
7
|
-
|
8
|
-
|
9
|
-
Development version
|
10
|
-
===================
|
11
|
-
|
12
|
-
The latest version is available from the
|
13
|
-
[Git repository](http://github.com/mernen/json-jruby/tree):
|
14
|
-
|
15
|
-
git clone git://github.com/mernen/json-jruby.git
|
16
|
-
|
17
|
-
|
18
|
-
Compiling
|
19
|
-
=========
|
20
|
-
|
21
|
-
You'll need JRuby version 1.2 or greater to build JSON-JRuby.
|
22
|
-
Its path must be set on the `jruby.dir` property of
|
23
|
-
`nbproject/project.properties` (defaults to `../jruby`).
|
24
|
-
|
25
|
-
Additionally, you'll need [Ant](http://ant.apache.org/), and
|
26
|
-
[Ragel](http://www.cs.queensu.ca/~thurston/ragel/) 6.4 or greater.
|
27
|
-
|
28
|
-
Then, from the folder where the sources are located, type:
|
29
|
-
|
30
|
-
ant clean jar
|
31
|
-
|
32
|
-
to clean any leftovers from previous builds and generate the `.jar` files.
|
33
|
-
To generate a RubyGem, specify the `gem` action rather than `jar`.
|
@@ -1,334 +0,0 @@
|
|
1
|
-
begin
|
2
|
-
require 'rubygems/package_task'
|
3
|
-
rescue LoadError
|
4
|
-
end
|
5
|
-
|
6
|
-
require 'rbconfig'
|
7
|
-
include\
|
8
|
-
begin
|
9
|
-
RbConfig
|
10
|
-
rescue NameError
|
11
|
-
Config
|
12
|
-
end
|
13
|
-
|
14
|
-
require 'rake/clean'
|
15
|
-
CLOBBER.include 'doc', 'Gemfile.lock'
|
16
|
-
CLEAN.include FileList['diagrams/*.*'], 'doc', 'coverage', 'tmp',
|
17
|
-
FileList["ext/**/{Makefile,mkmf.log}"], 'build', 'dist', FileList['**/*.rbc'],
|
18
|
-
FileList["{ext,lib}/**/*.{so,bundle,#{CONFIG['DLEXT']},o,obj,pdb,lib,manifest,exp,def,jar,class,dSYM}"],
|
19
|
-
FileList['java/src/**/*.class']
|
20
|
-
|
21
|
-
require 'rake/testtask'
|
22
|
-
class UndocumentedTestTask < Rake::TestTask
|
23
|
-
def desc(*) end
|
24
|
-
end
|
25
|
-
|
26
|
-
which = lambda { |c|
|
27
|
-
w = `which #{c}`
|
28
|
-
break w.chomp unless w.empty?
|
29
|
-
}
|
30
|
-
|
31
|
-
MAKE = ENV['MAKE'] || %w[gmake make].find(&which)
|
32
|
-
BUNDLE = ENV['BUNDLE'] || %w[bundle].find(&which)
|
33
|
-
PKG_NAME = 'json'
|
34
|
-
PKG_TITLE = 'JSON Implementation for Ruby'
|
35
|
-
PKG_VERSION = File.read('VERSION').chomp
|
36
|
-
PKG_FILES = FileList[`git ls-files`.split(/\n/)]
|
37
|
-
|
38
|
-
EXT_ROOT_DIR = 'ext/json/ext'
|
39
|
-
EXT_PARSER_DIR = "#{EXT_ROOT_DIR}/parser"
|
40
|
-
EXT_PARSER_DL = "#{EXT_PARSER_DIR}/parser.#{CONFIG['DLEXT']}"
|
41
|
-
RAGEL_PATH = "#{EXT_PARSER_DIR}/parser.rl"
|
42
|
-
EXT_PARSER_SRC = "#{EXT_PARSER_DIR}/parser.c"
|
43
|
-
EXT_GENERATOR_DIR = "#{EXT_ROOT_DIR}/generator"
|
44
|
-
EXT_GENERATOR_DL = "#{EXT_GENERATOR_DIR}/generator.#{CONFIG['DLEXT']}"
|
45
|
-
EXT_GENERATOR_SRC = "#{EXT_GENERATOR_DIR}/generator.c"
|
46
|
-
|
47
|
-
JAVA_DIR = "java/src/json/ext"
|
48
|
-
JAVA_RAGEL_PATH = "#{JAVA_DIR}/Parser.rl"
|
49
|
-
JAVA_PARSER_SRC = "#{JAVA_DIR}/Parser.java"
|
50
|
-
JAVA_SOURCES = FileList["#{JAVA_DIR}/*.java"]
|
51
|
-
JAVA_CLASSES = []
|
52
|
-
JRUBY_PARSER_JAR = File.expand_path("lib/json/ext/parser.jar")
|
53
|
-
JRUBY_GENERATOR_JAR = File.expand_path("lib/json/ext/generator.jar")
|
54
|
-
|
55
|
-
RAGEL_CODEGEN = %w[rlcodegen rlgen-cd ragel].find(&which)
|
56
|
-
RAGEL_DOTGEN = %w[rlgen-dot rlgen-cd ragel].find(&which)
|
57
|
-
|
58
|
-
desc "Installing library (pure)"
|
59
|
-
task :install_pure => :version do
|
60
|
-
ruby 'install.rb'
|
61
|
-
end
|
62
|
-
|
63
|
-
task :install_ext_really do
|
64
|
-
sitearchdir = CONFIG["sitearchdir"]
|
65
|
-
cd 'ext' do
|
66
|
-
for file in Dir["json/ext/*.#{CONFIG['DLEXT']}"]
|
67
|
-
d = File.join(sitearchdir, file)
|
68
|
-
mkdir_p File.dirname(d)
|
69
|
-
install(file, d)
|
70
|
-
end
|
71
|
-
warn " *** Installed EXT ruby library."
|
72
|
-
end
|
73
|
-
end
|
74
|
-
|
75
|
-
desc "Installing library (extension)"
|
76
|
-
task :install_ext => [ :compile, :install_pure, :install_ext_really ]
|
77
|
-
|
78
|
-
desc "Installing library (extension)"
|
79
|
-
task :install => :install_ext
|
80
|
-
|
81
|
-
desc m = "Writing version information for #{PKG_VERSION}"
|
82
|
-
task :version do
|
83
|
-
puts m
|
84
|
-
File.open(File.join('lib', 'json', 'version.rb'), 'w') do |v|
|
85
|
-
v.puts <<EOT
|
86
|
-
# frozen_string_literal: false
|
87
|
-
module JSON
|
88
|
-
# JSON version
|
89
|
-
VERSION = '#{PKG_VERSION}'
|
90
|
-
VERSION_ARRAY = VERSION.split(/\\./).map { |x| x.to_i } # :nodoc:
|
91
|
-
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
|
92
|
-
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
|
93
|
-
VERSION_BUILD = VERSION_ARRAY[2] # :nodoc:
|
94
|
-
end
|
95
|
-
EOT
|
96
|
-
end
|
97
|
-
end
|
98
|
-
|
99
|
-
task :check_env do
|
100
|
-
ENV.key?('JSON') or fail "JSON env var is required"
|
101
|
-
end
|
102
|
-
|
103
|
-
desc "Testing library (pure ruby)"
|
104
|
-
task :test_pure => [ :set_env_pure, :check_env, :do_test_pure ]
|
105
|
-
task(:set_env_pure) { ENV['JSON'] = 'pure' }
|
106
|
-
|
107
|
-
UndocumentedTestTask.new do |t|
|
108
|
-
t.name = 'do_test_pure'
|
109
|
-
t.libs << 'lib' << 'tests'
|
110
|
-
t.test_files = FileList['tests/*_test.rb']
|
111
|
-
t.verbose = true
|
112
|
-
t.options = '-v'
|
113
|
-
end
|
114
|
-
|
115
|
-
desc "Testing library (pure ruby and extension)"
|
116
|
-
task :test => [ :test_pure, :test_ext ]
|
117
|
-
|
118
|
-
namespace :gems do
|
119
|
-
desc 'Install all development gems'
|
120
|
-
task :install do
|
121
|
-
sh "#{BUNDLE}"
|
122
|
-
end
|
123
|
-
end
|
124
|
-
|
125
|
-
if defined?(RUBY_ENGINE) and RUBY_ENGINE == 'jruby'
|
126
|
-
ENV['JAVA_HOME'] ||= [
|
127
|
-
'/usr/local/java/jdk',
|
128
|
-
'/usr/lib/jvm/java-6-openjdk',
|
129
|
-
'/Library/Java/Home',
|
130
|
-
].find { |c| File.directory?(c) }
|
131
|
-
if ENV['JAVA_HOME']
|
132
|
-
warn " *** JAVA_HOME is set to #{ENV['JAVA_HOME'].inspect}"
|
133
|
-
ENV['PATH'] = ENV['PATH'].split(/:/).unshift(java_path = "#{ENV['JAVA_HOME']}/bin") * ':'
|
134
|
-
warn " *** java binaries are assumed to be in #{java_path.inspect}"
|
135
|
-
else
|
136
|
-
warn " *** JAVA_HOME was not set or could not be guessed!"
|
137
|
-
exit 1
|
138
|
-
end
|
139
|
-
|
140
|
-
file JAVA_PARSER_SRC => JAVA_RAGEL_PATH do
|
141
|
-
cd JAVA_DIR do
|
142
|
-
if RAGEL_CODEGEN == 'ragel'
|
143
|
-
sh "ragel Parser.rl -J -o Parser.java"
|
144
|
-
else
|
145
|
-
sh "ragel -x Parser.rl | #{RAGEL_CODEGEN} -J"
|
146
|
-
end
|
147
|
-
end
|
148
|
-
end
|
149
|
-
|
150
|
-
desc "Generate parser for java with ragel"
|
151
|
-
task :ragel => JAVA_PARSER_SRC
|
152
|
-
|
153
|
-
desc "Delete the ragel generated Java source"
|
154
|
-
task :ragel_clean do
|
155
|
-
rm_rf JAVA_PARSER_SRC
|
156
|
-
end
|
157
|
-
|
158
|
-
JRUBY_JAR = File.join(CONFIG["libdir"], "jruby.jar")
|
159
|
-
if File.exist?(JRUBY_JAR)
|
160
|
-
JAVA_SOURCES.each do |src|
|
161
|
-
classpath = (Dir['java/lib/*.jar'] << 'java/src' << JRUBY_JAR) * ':'
|
162
|
-
obj = src.sub(/\.java\Z/, '.class')
|
163
|
-
file obj => src do
|
164
|
-
sh 'javac', '-classpath', classpath, '-source', '1.6', '-target', '1.6', src
|
165
|
-
end
|
166
|
-
JAVA_CLASSES << obj
|
167
|
-
end
|
168
|
-
else
|
169
|
-
warn "WARNING: Cannot find jruby in path => Cannot build jruby extension!"
|
170
|
-
end
|
171
|
-
|
172
|
-
desc "Compiling jruby extension"
|
173
|
-
task :compile => JAVA_CLASSES
|
174
|
-
|
175
|
-
desc "Package the jruby gem"
|
176
|
-
task :jruby_gem => :create_jar do
|
177
|
-
sh 'gem build json-java.gemspec'
|
178
|
-
mkdir_p 'pkg'
|
179
|
-
mv "json-#{PKG_VERSION}-java.gem", 'pkg'
|
180
|
-
end
|
181
|
-
|
182
|
-
desc "Testing library (jruby)"
|
183
|
-
task :test_ext => [ :set_env_ext, :create_jar, :check_env, :do_test_ext ]
|
184
|
-
task(:set_env_ext) { ENV['JSON'] = 'ext' }
|
185
|
-
|
186
|
-
UndocumentedTestTask.new do |t|
|
187
|
-
t.name = 'do_test_ext'
|
188
|
-
t.libs << 'lib' << 'tests'
|
189
|
-
t.test_files = FileList['tests/*_test.rb']
|
190
|
-
t.verbose = true
|
191
|
-
t.options = '-v'
|
192
|
-
end
|
193
|
-
|
194
|
-
file JRUBY_PARSER_JAR => :compile do
|
195
|
-
cd 'java/src' do
|
196
|
-
parser_classes = FileList[
|
197
|
-
"json/ext/ByteListTranscoder*.class",
|
198
|
-
"json/ext/OptionsReader*.class",
|
199
|
-
"json/ext/Parser*.class",
|
200
|
-
"json/ext/RuntimeInfo*.class",
|
201
|
-
"json/ext/StringDecoder*.class",
|
202
|
-
"json/ext/Utils*.class"
|
203
|
-
]
|
204
|
-
sh 'jar', 'cf', File.basename(JRUBY_PARSER_JAR), *parser_classes
|
205
|
-
mv File.basename(JRUBY_PARSER_JAR), File.dirname(JRUBY_PARSER_JAR)
|
206
|
-
end
|
207
|
-
end
|
208
|
-
|
209
|
-
desc "Create parser jar"
|
210
|
-
task :create_parser_jar => JRUBY_PARSER_JAR
|
211
|
-
|
212
|
-
file JRUBY_GENERATOR_JAR => :compile do
|
213
|
-
cd 'java/src' do
|
214
|
-
generator_classes = FileList[
|
215
|
-
"json/ext/ByteListTranscoder*.class",
|
216
|
-
"json/ext/OptionsReader*.class",
|
217
|
-
"json/ext/Generator*.class",
|
218
|
-
"json/ext/RuntimeInfo*.class",
|
219
|
-
"json/ext/StringEncoder*.class",
|
220
|
-
"json/ext/Utils*.class"
|
221
|
-
]
|
222
|
-
sh 'jar', 'cf', File.basename(JRUBY_GENERATOR_JAR), *generator_classes
|
223
|
-
mv File.basename(JRUBY_GENERATOR_JAR), File.dirname(JRUBY_GENERATOR_JAR)
|
224
|
-
end
|
225
|
-
end
|
226
|
-
|
227
|
-
desc "Create generator jar"
|
228
|
-
task :create_generator_jar => JRUBY_GENERATOR_JAR
|
229
|
-
|
230
|
-
desc "Create parser and generator jars"
|
231
|
-
task :create_jar => [ :create_parser_jar, :create_generator_jar ]
|
232
|
-
|
233
|
-
desc "Build all gems and archives for a new release of the jruby extension."
|
234
|
-
task :build => [ :clean, :version, :jruby_gem ]
|
235
|
-
|
236
|
-
task :release => :build
|
237
|
-
else
|
238
|
-
desc "Compiling extension"
|
239
|
-
task :compile => [ EXT_PARSER_DL, EXT_GENERATOR_DL ]
|
240
|
-
|
241
|
-
file EXT_PARSER_DL => EXT_PARSER_SRC do
|
242
|
-
cd EXT_PARSER_DIR do
|
243
|
-
ruby 'extconf.rb'
|
244
|
-
sh MAKE
|
245
|
-
end
|
246
|
-
cp "#{EXT_PARSER_DIR}/parser.#{CONFIG['DLEXT']}", EXT_ROOT_DIR
|
247
|
-
end
|
248
|
-
|
249
|
-
file EXT_GENERATOR_DL => EXT_GENERATOR_SRC do
|
250
|
-
cd EXT_GENERATOR_DIR do
|
251
|
-
ruby 'extconf.rb'
|
252
|
-
sh MAKE
|
253
|
-
end
|
254
|
-
cp "#{EXT_GENERATOR_DIR}/generator.#{CONFIG['DLEXT']}", EXT_ROOT_DIR
|
255
|
-
end
|
256
|
-
|
257
|
-
desc "Testing library (extension)"
|
258
|
-
task :test_ext => [ :check_env, :compile, :do_test_ext ]
|
259
|
-
|
260
|
-
UndocumentedTestTask.new do |t|
|
261
|
-
t.name = 'do_test_ext'
|
262
|
-
t.libs << 'ext' << 'lib' << 'tests'
|
263
|
-
t.test_files = FileList['tests/*_test.rb']
|
264
|
-
t.verbose = true
|
265
|
-
t.options = '-v'
|
266
|
-
end
|
267
|
-
|
268
|
-
desc "Generate parser with ragel"
|
269
|
-
task :ragel => EXT_PARSER_SRC
|
270
|
-
|
271
|
-
desc "Delete the ragel generated C source"
|
272
|
-
task :ragel_clean do
|
273
|
-
rm_rf EXT_PARSER_SRC
|
274
|
-
end
|
275
|
-
|
276
|
-
desc "Update the tags file"
|
277
|
-
task :tags do
|
278
|
-
system 'ctags', *Dir['**/*.{rb,c,h,java}']
|
279
|
-
end
|
280
|
-
|
281
|
-
file EXT_PARSER_SRC => RAGEL_PATH do
|
282
|
-
cd EXT_PARSER_DIR do
|
283
|
-
if RAGEL_CODEGEN == 'ragel'
|
284
|
-
sh "ragel parser.rl -G2 -o parser.c"
|
285
|
-
else
|
286
|
-
sh "ragel -x parser.rl | #{RAGEL_CODEGEN} -G2"
|
287
|
-
end
|
288
|
-
src = File.read("parser.c").gsub(/[ \t]+$/, '')
|
289
|
-
src.gsub!(/^static const int (JSON_.*=.*);$/, 'enum {\1};')
|
290
|
-
src.gsub!(/0 <= \(\*p\) && \(\*p\) <= 31/, "0 <= (signed char)(*p) && (*p) <= 31")
|
291
|
-
src[0, 0] = "/* This file is automatically generated from parser.rl by using ragel */"
|
292
|
-
File.open("parser.c", "w") {|f| f.print src}
|
293
|
-
end
|
294
|
-
end
|
295
|
-
|
296
|
-
desc "Generate diagrams of ragel parser (ps)"
|
297
|
-
task :ragel_dot_ps do
|
298
|
-
root = 'diagrams'
|
299
|
-
specs = []
|
300
|
-
File.new(RAGEL_PATH).grep(/^\s*machine\s*(\S+);\s*$/) { specs << $1 }
|
301
|
-
for s in specs
|
302
|
-
if RAGEL_DOTGEN == 'ragel'
|
303
|
-
sh "ragel #{RAGEL_PATH} -S#{s} -p -V | dot -Tps -o#{root}/#{s}.ps"
|
304
|
-
else
|
305
|
-
sh "ragel -x #{RAGEL_PATH} -S#{s} | #{RAGEL_DOTGEN} -p|dot -Tps -o#{root}/#{s}.ps"
|
306
|
-
end
|
307
|
-
end
|
308
|
-
end
|
309
|
-
|
310
|
-
desc "Generate diagrams of ragel parser (png)"
|
311
|
-
task :ragel_dot_png do
|
312
|
-
root = 'diagrams'
|
313
|
-
specs = []
|
314
|
-
File.new(RAGEL_PATH).grep(/^\s*machine\s*(\S+);\s*$/) { specs << $1 }
|
315
|
-
for s in specs
|
316
|
-
if RAGEL_DOTGEN == 'ragel'
|
317
|
-
sh "ragel #{RAGEL_PATH} -S#{s} -p -V | dot -Tpng -o#{root}/#{s}.png"
|
318
|
-
else
|
319
|
-
sh "ragel -x #{RAGEL_PATH} -S#{s} | #{RAGEL_DOTGEN} -p|dot -Tpng -o#{root}/#{s}.png"
|
320
|
-
end
|
321
|
-
end
|
322
|
-
end
|
323
|
-
|
324
|
-
desc "Generate diagrams of ragel parser"
|
325
|
-
task :ragel_dot => [ :ragel_dot_png, :ragel_dot_ps ]
|
326
|
-
|
327
|
-
desc "Build all gems and archives for a new release of json and json_pure."
|
328
|
-
task :build => [ :clean, :gemspec, :package ]
|
329
|
-
|
330
|
-
task :release => :build
|
331
|
-
end
|
332
|
-
|
333
|
-
desc "Compile in the the source directory"
|
334
|
-
task :default => [ :clean, :test ]
|
@@ -1 +0,0 @@
|
|
1
|
-
2.3.1
|
@@ -1,1569 +0,0 @@
|
|
1
|
-
#include "../fbuffer/fbuffer.h"
|
2
|
-
#include "generator.h"
|
3
|
-
|
4
|
-
#ifdef HAVE_RUBY_ENCODING_H
|
5
|
-
static VALUE CEncoding_UTF_8;
|
6
|
-
static ID i_encoding, i_encode;
|
7
|
-
#endif
|
8
|
-
|
9
|
-
static VALUE mJSON, mExt, mGenerator, cState, mGeneratorMethods, mObject,
|
10
|
-
mHash, mArray,
|
11
|
-
#ifdef RUBY_INTEGER_UNIFICATION
|
12
|
-
mInteger,
|
13
|
-
#else
|
14
|
-
mFixnum, mBignum,
|
15
|
-
#endif
|
16
|
-
mFloat, mString, mString_Extend,
|
17
|
-
mTrueClass, mFalseClass, mNilClass, eGeneratorError,
|
18
|
-
eNestingError,
|
19
|
-
i_SAFE_STATE_PROTOTYPE;
|
20
|
-
|
21
|
-
static ID i_to_s, i_to_json, i_new, i_indent, i_space, i_space_before,
|
22
|
-
i_object_nl, i_array_nl, i_max_nesting, i_allow_nan, i_ascii_only,
|
23
|
-
i_pack, i_unpack, i_create_id, i_extend, i_key_p,
|
24
|
-
i_aref, i_send, i_respond_to_p, i_match, i_keys, i_depth,
|
25
|
-
i_buffer_initial_length, i_dup;
|
26
|
-
|
27
|
-
/*
|
28
|
-
* Copyright 2001-2004 Unicode, Inc.
|
29
|
-
*
|
30
|
-
* Disclaimer
|
31
|
-
*
|
32
|
-
* This source code is provided as is by Unicode, Inc. No claims are
|
33
|
-
* made as to fitness for any particular purpose. No warranties of any
|
34
|
-
* kind are expressed or implied. The recipient agrees to determine
|
35
|
-
* applicability of information provided. If this file has been
|
36
|
-
* purchased on magnetic or optical media from Unicode, Inc., the
|
37
|
-
* sole remedy for any claim will be exchange of defective media
|
38
|
-
* within 90 days of receipt.
|
39
|
-
*
|
40
|
-
* Limitations on Rights to Redistribute This Code
|
41
|
-
*
|
42
|
-
* Unicode, Inc. hereby grants the right to freely use the information
|
43
|
-
* supplied in this file in the creation of products supporting the
|
44
|
-
* Unicode Standard, and to make copies of this file in any form
|
45
|
-
* for internal or external distribution as long as this notice
|
46
|
-
* remains attached.
|
47
|
-
*/
|
48
|
-
|
49
|
-
/*
|
50
|
-
* Index into the table below with the first byte of a UTF-8 sequence to
|
51
|
-
* get the number of trailing bytes that are supposed to follow it.
|
52
|
-
* Note that *legal* UTF-8 values can't have 4 or 5-bytes. The table is
|
53
|
-
* left as-is for anyone who may want to do such conversion, which was
|
54
|
-
* allowed in earlier algorithms.
|
55
|
-
*/
|
56
|
-
static const char trailingBytesForUTF8[256] = {
|
57
|
-
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
58
|
-
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
59
|
-
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
60
|
-
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
61
|
-
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
62
|
-
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
63
|
-
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
|
64
|
-
2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, 3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5
|
65
|
-
};
|
66
|
-
|
67
|
-
/*
|
68
|
-
* Magic values subtracted from a buffer value during UTF8 conversion.
|
69
|
-
* This table contains as many values as there might be trailing bytes
|
70
|
-
* in a UTF-8 sequence.
|
71
|
-
*/
|
72
|
-
static const UTF32 offsetsFromUTF8[6] = { 0x00000000UL, 0x00003080UL, 0x000E2080UL,
|
73
|
-
0x03C82080UL, 0xFA082080UL, 0x82082080UL };
|
74
|
-
|
75
|
-
/*
|
76
|
-
* Utility routine to tell whether a sequence of bytes is legal UTF-8.
|
77
|
-
* This must be called with the length pre-determined by the first byte.
|
78
|
-
* If not calling this from ConvertUTF8to*, then the length can be set by:
|
79
|
-
* length = trailingBytesForUTF8[*source]+1;
|
80
|
-
* and the sequence is illegal right away if there aren't that many bytes
|
81
|
-
* available.
|
82
|
-
* If presented with a length > 4, this returns 0. The Unicode
|
83
|
-
* definition of UTF-8 goes up to 4-byte sequences.
|
84
|
-
*/
|
85
|
-
static unsigned char isLegalUTF8(const UTF8 *source, unsigned long length)
|
86
|
-
{
|
87
|
-
UTF8 a;
|
88
|
-
const UTF8 *srcptr = source+length;
|
89
|
-
switch (length) {
|
90
|
-
default: return 0;
|
91
|
-
/* Everything else falls through when "1"... */
|
92
|
-
case 4: if ((a = (*--srcptr)) < 0x80 || a > 0xBF) return 0;
|
93
|
-
case 3: if ((a = (*--srcptr)) < 0x80 || a > 0xBF) return 0;
|
94
|
-
case 2: if ((a = (*--srcptr)) > 0xBF) return 0;
|
95
|
-
|
96
|
-
switch (*source) {
|
97
|
-
/* no fall-through in this inner switch */
|
98
|
-
case 0xE0: if (a < 0xA0) return 0; break;
|
99
|
-
case 0xED: if (a > 0x9F) return 0; break;
|
100
|
-
case 0xF0: if (a < 0x90) return 0; break;
|
101
|
-
case 0xF4: if (a > 0x8F) return 0; break;
|
102
|
-
default: if (a < 0x80) return 0;
|
103
|
-
}
|
104
|
-
|
105
|
-
case 1: if (*source >= 0x80 && *source < 0xC2) return 0;
|
106
|
-
}
|
107
|
-
if (*source > 0xF4) return 0;
|
108
|
-
return 1;
|
109
|
-
}
|
110
|
-
|
111
|
-
/* Escapes the UTF16 character and stores the result in the buffer buf. */
|
112
|
-
static void unicode_escape(char *buf, UTF16 character)
|
113
|
-
{
|
114
|
-
const char *digits = "0123456789abcdef";
|
115
|
-
|
116
|
-
buf[2] = digits[character >> 12];
|
117
|
-
buf[3] = digits[(character >> 8) & 0xf];
|
118
|
-
buf[4] = digits[(character >> 4) & 0xf];
|
119
|
-
buf[5] = digits[character & 0xf];
|
120
|
-
}
|
121
|
-
|
122
|
-
/* Escapes the UTF16 character and stores the result in the buffer buf, then
|
123
|
-
* the buffer buf is appended to the FBuffer buffer. */
|
124
|
-
static void unicode_escape_to_buffer(FBuffer *buffer, char buf[6], UTF16
|
125
|
-
character)
|
126
|
-
{
|
127
|
-
unicode_escape(buf, character);
|
128
|
-
fbuffer_append(buffer, buf, 6);
|
129
|
-
}
|
130
|
-
|
131
|
-
/* Converts string to a JSON string in FBuffer buffer, where all but the ASCII
|
132
|
-
* and control characters are JSON escaped. */
|
133
|
-
static void convert_UTF8_to_JSON_ASCII(FBuffer *buffer, VALUE string)
|
134
|
-
{
|
135
|
-
const UTF8 *source = (UTF8 *) RSTRING_PTR(string);
|
136
|
-
const UTF8 *sourceEnd = source + RSTRING_LEN(string);
|
137
|
-
char buf[6] = { '\\', 'u' };
|
138
|
-
|
139
|
-
while (source < sourceEnd) {
|
140
|
-
UTF32 ch = 0;
|
141
|
-
unsigned short extraBytesToRead = trailingBytesForUTF8[*source];
|
142
|
-
if (source + extraBytesToRead >= sourceEnd) {
|
143
|
-
rb_raise(rb_path2class("JSON::GeneratorError"),
|
144
|
-
"partial character in source, but hit end");
|
145
|
-
}
|
146
|
-
if (!isLegalUTF8(source, extraBytesToRead+1)) {
|
147
|
-
rb_raise(rb_path2class("JSON::GeneratorError"),
|
148
|
-
"source sequence is illegal/malformed utf-8");
|
149
|
-
}
|
150
|
-
/*
|
151
|
-
* The cases all fall through. See "Note A" below.
|
152
|
-
*/
|
153
|
-
switch (extraBytesToRead) {
|
154
|
-
case 5: ch += *source++; ch <<= 6; /* remember, illegal UTF-8 */
|
155
|
-
case 4: ch += *source++; ch <<= 6; /* remember, illegal UTF-8 */
|
156
|
-
case 3: ch += *source++; ch <<= 6;
|
157
|
-
case 2: ch += *source++; ch <<= 6;
|
158
|
-
case 1: ch += *source++; ch <<= 6;
|
159
|
-
case 0: ch += *source++;
|
160
|
-
}
|
161
|
-
ch -= offsetsFromUTF8[extraBytesToRead];
|
162
|
-
|
163
|
-
if (ch <= UNI_MAX_BMP) { /* Target is a character <= 0xFFFF */
|
164
|
-
/* UTF-16 surrogate values are illegal in UTF-32 */
|
165
|
-
if (ch >= UNI_SUR_HIGH_START && ch <= UNI_SUR_LOW_END) {
|
166
|
-
#if UNI_STRICT_CONVERSION
|
167
|
-
source -= (extraBytesToRead+1); /* return to the illegal value itself */
|
168
|
-
rb_raise(rb_path2class("JSON::GeneratorError"),
|
169
|
-
"source sequence is illegal/malformed utf-8");
|
170
|
-
#else
|
171
|
-
unicode_escape_to_buffer(buffer, buf, UNI_REPLACEMENT_CHAR);
|
172
|
-
#endif
|
173
|
-
} else {
|
174
|
-
/* normal case */
|
175
|
-
if (ch >= 0x20 && ch <= 0x7f) {
|
176
|
-
switch (ch) {
|
177
|
-
case '\\':
|
178
|
-
fbuffer_append(buffer, "\\\\", 2);
|
179
|
-
break;
|
180
|
-
case '"':
|
181
|
-
fbuffer_append(buffer, "\\\"", 2);
|
182
|
-
break;
|
183
|
-
default:
|
184
|
-
fbuffer_append_char(buffer, (char)ch);
|
185
|
-
break;
|
186
|
-
}
|
187
|
-
} else {
|
188
|
-
switch (ch) {
|
189
|
-
case '\n':
|
190
|
-
fbuffer_append(buffer, "\\n", 2);
|
191
|
-
break;
|
192
|
-
case '\r':
|
193
|
-
fbuffer_append(buffer, "\\r", 2);
|
194
|
-
break;
|
195
|
-
case '\t':
|
196
|
-
fbuffer_append(buffer, "\\t", 2);
|
197
|
-
break;
|
198
|
-
case '\f':
|
199
|
-
fbuffer_append(buffer, "\\f", 2);
|
200
|
-
break;
|
201
|
-
case '\b':
|
202
|
-
fbuffer_append(buffer, "\\b", 2);
|
203
|
-
break;
|
204
|
-
default:
|
205
|
-
unicode_escape_to_buffer(buffer, buf, (UTF16) ch);
|
206
|
-
break;
|
207
|
-
}
|
208
|
-
}
|
209
|
-
}
|
210
|
-
} else if (ch > UNI_MAX_UTF16) {
|
211
|
-
#if UNI_STRICT_CONVERSION
|
212
|
-
source -= (extraBytesToRead+1); /* return to the start */
|
213
|
-
rb_raise(rb_path2class("JSON::GeneratorError"),
|
214
|
-
"source sequence is illegal/malformed utf8");
|
215
|
-
#else
|
216
|
-
unicode_escape_to_buffer(buffer, buf, UNI_REPLACEMENT_CHAR);
|
217
|
-
#endif
|
218
|
-
} else {
|
219
|
-
/* target is a character in range 0xFFFF - 0x10FFFF. */
|
220
|
-
ch -= halfBase;
|
221
|
-
unicode_escape_to_buffer(buffer, buf, (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START));
|
222
|
-
unicode_escape_to_buffer(buffer, buf, (UTF16)((ch & halfMask) + UNI_SUR_LOW_START));
|
223
|
-
}
|
224
|
-
}
|
225
|
-
RB_GC_GUARD(string);
|
226
|
-
}
|
227
|
-
|
228
|
-
/* Converts string to a JSON string in FBuffer buffer, where only the
|
229
|
-
* characters required by the JSON standard are JSON escaped. The remaining
|
230
|
-
* characters (should be UTF8) are just passed through and appended to the
|
231
|
-
* result. */
|
232
|
-
static void convert_UTF8_to_JSON(FBuffer *buffer, VALUE string)
|
233
|
-
{
|
234
|
-
const char *ptr = RSTRING_PTR(string), *p;
|
235
|
-
unsigned long len = RSTRING_LEN(string), start = 0, end = 0;
|
236
|
-
const char *escape = NULL;
|
237
|
-
int escape_len;
|
238
|
-
unsigned char c;
|
239
|
-
char buf[6] = { '\\', 'u' };
|
240
|
-
int ascii_only = rb_enc_str_asciionly_p(string);
|
241
|
-
|
242
|
-
for (start = 0, end = 0; end < len;) {
|
243
|
-
p = ptr + end;
|
244
|
-
c = (unsigned char) *p;
|
245
|
-
if (c < 0x20) {
|
246
|
-
switch (c) {
|
247
|
-
case '\n':
|
248
|
-
escape = "\\n";
|
249
|
-
escape_len = 2;
|
250
|
-
break;
|
251
|
-
case '\r':
|
252
|
-
escape = "\\r";
|
253
|
-
escape_len = 2;
|
254
|
-
break;
|
255
|
-
case '\t':
|
256
|
-
escape = "\\t";
|
257
|
-
escape_len = 2;
|
258
|
-
break;
|
259
|
-
case '\f':
|
260
|
-
escape = "\\f";
|
261
|
-
escape_len = 2;
|
262
|
-
break;
|
263
|
-
case '\b':
|
264
|
-
escape = "\\b";
|
265
|
-
escape_len = 2;
|
266
|
-
break;
|
267
|
-
default:
|
268
|
-
unicode_escape(buf, (UTF16) *p);
|
269
|
-
escape = buf;
|
270
|
-
escape_len = 6;
|
271
|
-
break;
|
272
|
-
}
|
273
|
-
} else {
|
274
|
-
switch (c) {
|
275
|
-
case '\\':
|
276
|
-
escape = "\\\\";
|
277
|
-
escape_len = 2;
|
278
|
-
break;
|
279
|
-
case '"':
|
280
|
-
escape = "\\\"";
|
281
|
-
escape_len = 2;
|
282
|
-
break;
|
283
|
-
default:
|
284
|
-
{
|
285
|
-
unsigned short clen = 1;
|
286
|
-
if (!ascii_only) {
|
287
|
-
clen += trailingBytesForUTF8[c];
|
288
|
-
if (end + clen > len) {
|
289
|
-
rb_raise(rb_path2class("JSON::GeneratorError"),
|
290
|
-
"partial character in source, but hit end");
|
291
|
-
}
|
292
|
-
if (!isLegalUTF8((UTF8 *) p, clen)) {
|
293
|
-
rb_raise(rb_path2class("JSON::GeneratorError"),
|
294
|
-
"source sequence is illegal/malformed utf-8");
|
295
|
-
}
|
296
|
-
}
|
297
|
-
end += clen;
|
298
|
-
}
|
299
|
-
continue;
|
300
|
-
break;
|
301
|
-
}
|
302
|
-
}
|
303
|
-
fbuffer_append(buffer, ptr + start, end - start);
|
304
|
-
fbuffer_append(buffer, escape, escape_len);
|
305
|
-
start = ++end;
|
306
|
-
escape = NULL;
|
307
|
-
}
|
308
|
-
fbuffer_append(buffer, ptr + start, end - start);
|
309
|
-
}
|
310
|
-
|
311
|
-
static char *fstrndup(const char *ptr, unsigned long len) {
|
312
|
-
char *result;
|
313
|
-
if (len <= 0) return NULL;
|
314
|
-
result = ALLOC_N(char, len);
|
315
|
-
memcpy(result, ptr, len);
|
316
|
-
return result;
|
317
|
-
}
|
318
|
-
|
319
|
-
/*
|
320
|
-
* Document-module: JSON::Ext::Generator
|
321
|
-
*
|
322
|
-
* This is the JSON generator implemented as a C extension. It can be
|
323
|
-
* configured to be used by setting
|
324
|
-
*
|
325
|
-
* JSON.generator = JSON::Ext::Generator
|
326
|
-
*
|
327
|
-
* with the method generator= in JSON.
|
328
|
-
*
|
329
|
-
*/
|
330
|
-
|
331
|
-
/* Explanation of the following: that's the only way to not pollute
|
332
|
-
* standard library's docs with GeneratorMethods::<ClassName> which
|
333
|
-
* are uninformative and take a large place in a list of classes
|
334
|
-
*/
|
335
|
-
|
336
|
-
/*
|
337
|
-
* Document-module: JSON::Ext::Generator::GeneratorMethods
|
338
|
-
* :nodoc:
|
339
|
-
*/
|
340
|
-
|
341
|
-
/*
|
342
|
-
* Document-module: JSON::Ext::Generator::GeneratorMethods::Array
|
343
|
-
* :nodoc:
|
344
|
-
*/
|
345
|
-
|
346
|
-
/*
|
347
|
-
* Document-module: JSON::Ext::Generator::GeneratorMethods::Bignum
|
348
|
-
* :nodoc:
|
349
|
-
*/
|
350
|
-
|
351
|
-
/*
|
352
|
-
* Document-module: JSON::Ext::Generator::GeneratorMethods::FalseClass
|
353
|
-
* :nodoc:
|
354
|
-
*/
|
355
|
-
|
356
|
-
/*
|
357
|
-
* Document-module: JSON::Ext::Generator::GeneratorMethods::Fixnum
|
358
|
-
* :nodoc:
|
359
|
-
*/
|
360
|
-
|
361
|
-
/*
|
362
|
-
* Document-module: JSON::Ext::Generator::GeneratorMethods::Float
|
363
|
-
* :nodoc:
|
364
|
-
*/
|
365
|
-
|
366
|
-
/*
|
367
|
-
* Document-module: JSON::Ext::Generator::GeneratorMethods::Hash
|
368
|
-
* :nodoc:
|
369
|
-
*/
|
370
|
-
|
371
|
-
/*
|
372
|
-
* Document-module: JSON::Ext::Generator::GeneratorMethods::Integer
|
373
|
-
* :nodoc:
|
374
|
-
*/
|
375
|
-
|
376
|
-
/*
|
377
|
-
* Document-module: JSON::Ext::Generator::GeneratorMethods::NilClass
|
378
|
-
* :nodoc:
|
379
|
-
*/
|
380
|
-
|
381
|
-
/*
|
382
|
-
* Document-module: JSON::Ext::Generator::GeneratorMethods::Object
|
383
|
-
* :nodoc:
|
384
|
-
*/
|
385
|
-
|
386
|
-
/*
|
387
|
-
* Document-module: JSON::Ext::Generator::GeneratorMethods::String
|
388
|
-
* :nodoc:
|
389
|
-
*/
|
390
|
-
|
391
|
-
/*
|
392
|
-
* Document-module: JSON::Ext::Generator::GeneratorMethods::String::Extend
|
393
|
-
* :nodoc:
|
394
|
-
*/
|
395
|
-
|
396
|
-
/*
|
397
|
-
* Document-module: JSON::Ext::Generator::GeneratorMethods::TrueClass
|
398
|
-
* :nodoc:
|
399
|
-
*/
|
400
|
-
|
401
|
-
/*
|
402
|
-
* call-seq: to_json(state = nil)
|
403
|
-
*
|
404
|
-
* Returns a JSON string containing a JSON object, that is generated from
|
405
|
-
* this Hash instance.
|
406
|
-
* _state_ is a JSON::State object, that can also be used to configure the
|
407
|
-
* produced JSON string output further.
|
408
|
-
*/
|
409
|
-
static VALUE mHash_to_json(int argc, VALUE *argv, VALUE self)
|
410
|
-
{
|
411
|
-
GENERATE_JSON(object);
|
412
|
-
}
|
413
|
-
|
414
|
-
/*
|
415
|
-
* call-seq: to_json(state = nil)
|
416
|
-
*
|
417
|
-
* Returns a JSON string containing a JSON array, that is generated from
|
418
|
-
* this Array instance.
|
419
|
-
* _state_ is a JSON::State object, that can also be used to configure the
|
420
|
-
* produced JSON string output further.
|
421
|
-
*/
|
422
|
-
static VALUE mArray_to_json(int argc, VALUE *argv, VALUE self) {
|
423
|
-
GENERATE_JSON(array);
|
424
|
-
}
|
425
|
-
|
426
|
-
#ifdef RUBY_INTEGER_UNIFICATION
|
427
|
-
/*
|
428
|
-
* call-seq: to_json(*)
|
429
|
-
*
|
430
|
-
* Returns a JSON string representation for this Integer number.
|
431
|
-
*/
|
432
|
-
static VALUE mInteger_to_json(int argc, VALUE *argv, VALUE self)
|
433
|
-
{
|
434
|
-
GENERATE_JSON(integer);
|
435
|
-
}
|
436
|
-
|
437
|
-
#else
|
438
|
-
/*
|
439
|
-
* call-seq: to_json(*)
|
440
|
-
*
|
441
|
-
* Returns a JSON string representation for this Integer number.
|
442
|
-
*/
|
443
|
-
static VALUE mFixnum_to_json(int argc, VALUE *argv, VALUE self)
|
444
|
-
{
|
445
|
-
GENERATE_JSON(fixnum);
|
446
|
-
}
|
447
|
-
|
448
|
-
/*
|
449
|
-
* call-seq: to_json(*)
|
450
|
-
*
|
451
|
-
* Returns a JSON string representation for this Integer number.
|
452
|
-
*/
|
453
|
-
static VALUE mBignum_to_json(int argc, VALUE *argv, VALUE self)
|
454
|
-
{
|
455
|
-
GENERATE_JSON(bignum);
|
456
|
-
}
|
457
|
-
#endif
|
458
|
-
|
459
|
-
/*
|
460
|
-
* call-seq: to_json(*)
|
461
|
-
*
|
462
|
-
* Returns a JSON string representation for this Float number.
|
463
|
-
*/
|
464
|
-
static VALUE mFloat_to_json(int argc, VALUE *argv, VALUE self)
|
465
|
-
{
|
466
|
-
GENERATE_JSON(float);
|
467
|
-
}
|
468
|
-
|
469
|
-
/*
|
470
|
-
* call-seq: String.included(modul)
|
471
|
-
*
|
472
|
-
* Extends _modul_ with the String::Extend module.
|
473
|
-
*/
|
474
|
-
static VALUE mString_included_s(VALUE self, VALUE modul) {
|
475
|
-
VALUE result = rb_funcall(modul, i_extend, 1, mString_Extend);
|
476
|
-
return result;
|
477
|
-
}
|
478
|
-
|
479
|
-
/*
|
480
|
-
* call-seq: to_json(*)
|
481
|
-
*
|
482
|
-
* This string should be encoded with UTF-8 A call to this method
|
483
|
-
* returns a JSON string encoded with UTF16 big endian characters as
|
484
|
-
* \u????.
|
485
|
-
*/
|
486
|
-
static VALUE mString_to_json(int argc, VALUE *argv, VALUE self)
|
487
|
-
{
|
488
|
-
GENERATE_JSON(string);
|
489
|
-
}
|
490
|
-
|
491
|
-
/*
|
492
|
-
* call-seq: to_json_raw_object()
|
493
|
-
*
|
494
|
-
* This method creates a raw object hash, that can be nested into
|
495
|
-
* other data structures and will be generated as a raw string. This
|
496
|
-
* method should be used, if you want to convert raw strings to JSON
|
497
|
-
* instead of UTF-8 strings, e. g. binary data.
|
498
|
-
*/
|
499
|
-
static VALUE mString_to_json_raw_object(VALUE self)
|
500
|
-
{
|
501
|
-
VALUE ary;
|
502
|
-
VALUE result = rb_hash_new();
|
503
|
-
rb_hash_aset(result, rb_funcall(mJSON, i_create_id, 0), rb_class_name(rb_obj_class(self)));
|
504
|
-
ary = rb_funcall(self, i_unpack, 1, rb_str_new2("C*"));
|
505
|
-
rb_hash_aset(result, rb_str_new2("raw"), ary);
|
506
|
-
return result;
|
507
|
-
}
|
508
|
-
|
509
|
-
/*
|
510
|
-
* call-seq: to_json_raw(*args)
|
511
|
-
*
|
512
|
-
* This method creates a JSON text from the result of a call to
|
513
|
-
* to_json_raw_object of this String.
|
514
|
-
*/
|
515
|
-
static VALUE mString_to_json_raw(int argc, VALUE *argv, VALUE self)
|
516
|
-
{
|
517
|
-
VALUE obj = mString_to_json_raw_object(self);
|
518
|
-
Check_Type(obj, T_HASH);
|
519
|
-
return mHash_to_json(argc, argv, obj);
|
520
|
-
}
|
521
|
-
|
522
|
-
/*
|
523
|
-
* call-seq: json_create(o)
|
524
|
-
*
|
525
|
-
* Raw Strings are JSON Objects (the raw bytes are stored in an array for the
|
526
|
-
* key "raw"). The Ruby String can be created by this module method.
|
527
|
-
*/
|
528
|
-
static VALUE mString_Extend_json_create(VALUE self, VALUE o)
|
529
|
-
{
|
530
|
-
VALUE ary;
|
531
|
-
Check_Type(o, T_HASH);
|
532
|
-
ary = rb_hash_aref(o, rb_str_new2("raw"));
|
533
|
-
return rb_funcall(ary, i_pack, 1, rb_str_new2("C*"));
|
534
|
-
}
|
535
|
-
|
536
|
-
/*
|
537
|
-
* call-seq: to_json(*)
|
538
|
-
*
|
539
|
-
* Returns a JSON string for true: 'true'.
|
540
|
-
*/
|
541
|
-
static VALUE mTrueClass_to_json(int argc, VALUE *argv, VALUE self)
|
542
|
-
{
|
543
|
-
GENERATE_JSON(true);
|
544
|
-
}
|
545
|
-
|
546
|
-
/*
|
547
|
-
* call-seq: to_json(*)
|
548
|
-
*
|
549
|
-
* Returns a JSON string for false: 'false'.
|
550
|
-
*/
|
551
|
-
static VALUE mFalseClass_to_json(int argc, VALUE *argv, VALUE self)
|
552
|
-
{
|
553
|
-
GENERATE_JSON(false);
|
554
|
-
}
|
555
|
-
|
556
|
-
/*
|
557
|
-
* call-seq: to_json(*)
|
558
|
-
*
|
559
|
-
* Returns a JSON string for nil: 'null'.
|
560
|
-
*/
|
561
|
-
static VALUE mNilClass_to_json(int argc, VALUE *argv, VALUE self)
|
562
|
-
{
|
563
|
-
GENERATE_JSON(null);
|
564
|
-
}
|
565
|
-
|
566
|
-
/*
|
567
|
-
* call-seq: to_json(*)
|
568
|
-
*
|
569
|
-
* Converts this object to a string (calling #to_s), converts
|
570
|
-
* it to a JSON string, and returns the result. This is a fallback, if no
|
571
|
-
* special method #to_json was defined for some object.
|
572
|
-
*/
|
573
|
-
static VALUE mObject_to_json(int argc, VALUE *argv, VALUE self)
|
574
|
-
{
|
575
|
-
VALUE state;
|
576
|
-
VALUE string = rb_funcall(self, i_to_s, 0);
|
577
|
-
rb_scan_args(argc, argv, "01", &state);
|
578
|
-
Check_Type(string, T_STRING);
|
579
|
-
state = cState_from_state_s(cState, state);
|
580
|
-
return cState_partial_generate(state, string);
|
581
|
-
}
|
582
|
-
|
583
|
-
static void State_free(void *ptr)
|
584
|
-
{
|
585
|
-
JSON_Generator_State *state = ptr;
|
586
|
-
if (state->indent) ruby_xfree(state->indent);
|
587
|
-
if (state->space) ruby_xfree(state->space);
|
588
|
-
if (state->space_before) ruby_xfree(state->space_before);
|
589
|
-
if (state->object_nl) ruby_xfree(state->object_nl);
|
590
|
-
if (state->array_nl) ruby_xfree(state->array_nl);
|
591
|
-
if (state->array_delim) fbuffer_free(state->array_delim);
|
592
|
-
if (state->object_delim) fbuffer_free(state->object_delim);
|
593
|
-
if (state->object_delim2) fbuffer_free(state->object_delim2);
|
594
|
-
ruby_xfree(state);
|
595
|
-
}
|
596
|
-
|
597
|
-
static size_t State_memsize(const void *ptr)
|
598
|
-
{
|
599
|
-
const JSON_Generator_State *state = ptr;
|
600
|
-
size_t size = sizeof(*state);
|
601
|
-
if (state->indent) size += state->indent_len + 1;
|
602
|
-
if (state->space) size += state->space_len + 1;
|
603
|
-
if (state->space_before) size += state->space_before_len + 1;
|
604
|
-
if (state->object_nl) size += state->object_nl_len + 1;
|
605
|
-
if (state->array_nl) size += state->array_nl_len + 1;
|
606
|
-
if (state->array_delim) size += FBUFFER_CAPA(state->array_delim);
|
607
|
-
if (state->object_delim) size += FBUFFER_CAPA(state->object_delim);
|
608
|
-
if (state->object_delim2) size += FBUFFER_CAPA(state->object_delim2);
|
609
|
-
return size;
|
610
|
-
}
|
611
|
-
|
612
|
-
#ifdef NEW_TYPEDDATA_WRAPPER
|
613
|
-
static const rb_data_type_t JSON_Generator_State_type = {
|
614
|
-
"JSON/Generator/State",
|
615
|
-
{NULL, State_free, State_memsize,},
|
616
|
-
#ifdef RUBY_TYPED_FREE_IMMEDIATELY
|
617
|
-
0, 0,
|
618
|
-
RUBY_TYPED_FREE_IMMEDIATELY,
|
619
|
-
#endif
|
620
|
-
};
|
621
|
-
#endif
|
622
|
-
|
623
|
-
static VALUE cState_s_allocate(VALUE klass)
|
624
|
-
{
|
625
|
-
JSON_Generator_State *state;
|
626
|
-
return TypedData_Make_Struct(klass, JSON_Generator_State,
|
627
|
-
&JSON_Generator_State_type, state);
|
628
|
-
}
|
629
|
-
|
630
|
-
/*
|
631
|
-
* call-seq: configure(opts)
|
632
|
-
*
|
633
|
-
* Configure this State instance with the Hash _opts_, and return
|
634
|
-
* itself.
|
635
|
-
*/
|
636
|
-
static VALUE cState_configure(VALUE self, VALUE opts)
|
637
|
-
{
|
638
|
-
VALUE tmp;
|
639
|
-
GET_STATE(self);
|
640
|
-
tmp = rb_check_convert_type(opts, T_HASH, "Hash", "to_hash");
|
641
|
-
if (NIL_P(tmp)) tmp = rb_convert_type(opts, T_HASH, "Hash", "to_h");
|
642
|
-
opts = tmp;
|
643
|
-
tmp = rb_hash_aref(opts, ID2SYM(i_indent));
|
644
|
-
if (RTEST(tmp)) {
|
645
|
-
unsigned long len;
|
646
|
-
Check_Type(tmp, T_STRING);
|
647
|
-
len = RSTRING_LEN(tmp);
|
648
|
-
state->indent = fstrndup(RSTRING_PTR(tmp), len + 1);
|
649
|
-
state->indent_len = len;
|
650
|
-
}
|
651
|
-
tmp = rb_hash_aref(opts, ID2SYM(i_space));
|
652
|
-
if (RTEST(tmp)) {
|
653
|
-
unsigned long len;
|
654
|
-
Check_Type(tmp, T_STRING);
|
655
|
-
len = RSTRING_LEN(tmp);
|
656
|
-
state->space = fstrndup(RSTRING_PTR(tmp), len + 1);
|
657
|
-
state->space_len = len;
|
658
|
-
}
|
659
|
-
tmp = rb_hash_aref(opts, ID2SYM(i_space_before));
|
660
|
-
if (RTEST(tmp)) {
|
661
|
-
unsigned long len;
|
662
|
-
Check_Type(tmp, T_STRING);
|
663
|
-
len = RSTRING_LEN(tmp);
|
664
|
-
state->space_before = fstrndup(RSTRING_PTR(tmp), len + 1);
|
665
|
-
state->space_before_len = len;
|
666
|
-
}
|
667
|
-
tmp = rb_hash_aref(opts, ID2SYM(i_array_nl));
|
668
|
-
if (RTEST(tmp)) {
|
669
|
-
unsigned long len;
|
670
|
-
Check_Type(tmp, T_STRING);
|
671
|
-
len = RSTRING_LEN(tmp);
|
672
|
-
state->array_nl = fstrndup(RSTRING_PTR(tmp), len + 1);
|
673
|
-
state->array_nl_len = len;
|
674
|
-
}
|
675
|
-
tmp = rb_hash_aref(opts, ID2SYM(i_object_nl));
|
676
|
-
if (RTEST(tmp)) {
|
677
|
-
unsigned long len;
|
678
|
-
Check_Type(tmp, T_STRING);
|
679
|
-
len = RSTRING_LEN(tmp);
|
680
|
-
state->object_nl = fstrndup(RSTRING_PTR(tmp), len + 1);
|
681
|
-
state->object_nl_len = len;
|
682
|
-
}
|
683
|
-
tmp = ID2SYM(i_max_nesting);
|
684
|
-
state->max_nesting = 100;
|
685
|
-
if (option_given_p(opts, tmp)) {
|
686
|
-
VALUE max_nesting = rb_hash_aref(opts, tmp);
|
687
|
-
if (RTEST(max_nesting)) {
|
688
|
-
Check_Type(max_nesting, T_FIXNUM);
|
689
|
-
state->max_nesting = FIX2LONG(max_nesting);
|
690
|
-
} else {
|
691
|
-
state->max_nesting = 0;
|
692
|
-
}
|
693
|
-
}
|
694
|
-
tmp = ID2SYM(i_depth);
|
695
|
-
state->depth = 0;
|
696
|
-
if (option_given_p(opts, tmp)) {
|
697
|
-
VALUE depth = rb_hash_aref(opts, tmp);
|
698
|
-
if (RTEST(depth)) {
|
699
|
-
Check_Type(depth, T_FIXNUM);
|
700
|
-
state->depth = FIX2LONG(depth);
|
701
|
-
} else {
|
702
|
-
state->depth = 0;
|
703
|
-
}
|
704
|
-
}
|
705
|
-
tmp = ID2SYM(i_buffer_initial_length);
|
706
|
-
if (option_given_p(opts, tmp)) {
|
707
|
-
VALUE buffer_initial_length = rb_hash_aref(opts, tmp);
|
708
|
-
if (RTEST(buffer_initial_length)) {
|
709
|
-
long initial_length;
|
710
|
-
Check_Type(buffer_initial_length, T_FIXNUM);
|
711
|
-
initial_length = FIX2LONG(buffer_initial_length);
|
712
|
-
if (initial_length > 0) state->buffer_initial_length = initial_length;
|
713
|
-
}
|
714
|
-
}
|
715
|
-
tmp = rb_hash_aref(opts, ID2SYM(i_allow_nan));
|
716
|
-
state->allow_nan = RTEST(tmp);
|
717
|
-
tmp = rb_hash_aref(opts, ID2SYM(i_ascii_only));
|
718
|
-
state->ascii_only = RTEST(tmp);
|
719
|
-
return self;
|
720
|
-
}
|
721
|
-
|
722
|
-
static void set_state_ivars(VALUE hash, VALUE state)
|
723
|
-
{
|
724
|
-
VALUE ivars = rb_obj_instance_variables(state);
|
725
|
-
int i = 0;
|
726
|
-
for (i = 0; i < RARRAY_LEN(ivars); i++) {
|
727
|
-
VALUE key = rb_funcall(rb_ary_entry(ivars, i), i_to_s, 0);
|
728
|
-
long key_len = RSTRING_LEN(key);
|
729
|
-
VALUE value = rb_iv_get(state, StringValueCStr(key));
|
730
|
-
rb_hash_aset(hash, rb_str_intern(rb_str_substr(key, 1, key_len - 1)), value);
|
731
|
-
}
|
732
|
-
}
|
733
|
-
|
734
|
-
/*
|
735
|
-
* call-seq: to_h
|
736
|
-
*
|
737
|
-
* Returns the configuration instance variables as a hash, that can be
|
738
|
-
* passed to the configure method.
|
739
|
-
*/
|
740
|
-
static VALUE cState_to_h(VALUE self)
|
741
|
-
{
|
742
|
-
VALUE result = rb_hash_new();
|
743
|
-
GET_STATE(self);
|
744
|
-
set_state_ivars(result, self);
|
745
|
-
rb_hash_aset(result, ID2SYM(i_indent), rb_str_new(state->indent, state->indent_len));
|
746
|
-
rb_hash_aset(result, ID2SYM(i_space), rb_str_new(state->space, state->space_len));
|
747
|
-
rb_hash_aset(result, ID2SYM(i_space_before), rb_str_new(state->space_before, state->space_before_len));
|
748
|
-
rb_hash_aset(result, ID2SYM(i_object_nl), rb_str_new(state->object_nl, state->object_nl_len));
|
749
|
-
rb_hash_aset(result, ID2SYM(i_array_nl), rb_str_new(state->array_nl, state->array_nl_len));
|
750
|
-
rb_hash_aset(result, ID2SYM(i_allow_nan), state->allow_nan ? Qtrue : Qfalse);
|
751
|
-
rb_hash_aset(result, ID2SYM(i_ascii_only), state->ascii_only ? Qtrue : Qfalse);
|
752
|
-
rb_hash_aset(result, ID2SYM(i_max_nesting), LONG2FIX(state->max_nesting));
|
753
|
-
rb_hash_aset(result, ID2SYM(i_depth), LONG2FIX(state->depth));
|
754
|
-
rb_hash_aset(result, ID2SYM(i_buffer_initial_length), LONG2FIX(state->buffer_initial_length));
|
755
|
-
return result;
|
756
|
-
}
|
757
|
-
|
758
|
-
/*
|
759
|
-
* call-seq: [](name)
|
760
|
-
*
|
761
|
-
* Returns the value returned by method +name+.
|
762
|
-
*/
|
763
|
-
static VALUE cState_aref(VALUE self, VALUE name)
|
764
|
-
{
|
765
|
-
name = rb_funcall(name, i_to_s, 0);
|
766
|
-
if (RTEST(rb_funcall(self, i_respond_to_p, 1, name))) {
|
767
|
-
return rb_funcall(self, i_send, 1, name);
|
768
|
-
} else {
|
769
|
-
return rb_attr_get(self, rb_intern_str(rb_str_concat(rb_str_new2("@"), name)));
|
770
|
-
}
|
771
|
-
}
|
772
|
-
|
773
|
-
/*
|
774
|
-
* call-seq: []=(name, value)
|
775
|
-
*
|
776
|
-
* Sets the attribute name to value.
|
777
|
-
*/
|
778
|
-
static VALUE cState_aset(VALUE self, VALUE name, VALUE value)
|
779
|
-
{
|
780
|
-
VALUE name_writer;
|
781
|
-
|
782
|
-
name = rb_funcall(name, i_to_s, 0);
|
783
|
-
name_writer = rb_str_cat2(rb_str_dup(name), "=");
|
784
|
-
if (RTEST(rb_funcall(self, i_respond_to_p, 1, name_writer))) {
|
785
|
-
return rb_funcall(self, i_send, 2, name_writer, value);
|
786
|
-
} else {
|
787
|
-
rb_ivar_set(self, rb_intern_str(rb_str_concat(rb_str_new2("@"), name)), value);
|
788
|
-
}
|
789
|
-
return Qnil;
|
790
|
-
}
|
791
|
-
|
792
|
-
struct hash_foreach_arg {
|
793
|
-
FBuffer *buffer;
|
794
|
-
JSON_Generator_State *state;
|
795
|
-
VALUE Vstate;
|
796
|
-
int iter;
|
797
|
-
};
|
798
|
-
|
799
|
-
static int
|
800
|
-
json_object_i(VALUE key, VALUE val, VALUE _arg)
|
801
|
-
{
|
802
|
-
struct hash_foreach_arg *arg = (struct hash_foreach_arg *)_arg;
|
803
|
-
FBuffer *buffer = arg->buffer;
|
804
|
-
JSON_Generator_State *state = arg->state;
|
805
|
-
VALUE Vstate = arg->Vstate;
|
806
|
-
|
807
|
-
char *object_nl = state->object_nl;
|
808
|
-
long object_nl_len = state->object_nl_len;
|
809
|
-
char *indent = state->indent;
|
810
|
-
long indent_len = state->indent_len;
|
811
|
-
char *delim = FBUFFER_PTR(state->object_delim);
|
812
|
-
long delim_len = FBUFFER_LEN(state->object_delim);
|
813
|
-
char *delim2 = FBUFFER_PTR(state->object_delim2);
|
814
|
-
long delim2_len = FBUFFER_LEN(state->object_delim2);
|
815
|
-
long depth = state->depth;
|
816
|
-
int j;
|
817
|
-
VALUE klass, key_to_s;
|
818
|
-
|
819
|
-
if (arg->iter > 0) fbuffer_append(buffer, delim, delim_len);
|
820
|
-
if (object_nl) {
|
821
|
-
fbuffer_append(buffer, object_nl, object_nl_len);
|
822
|
-
}
|
823
|
-
if (indent) {
|
824
|
-
for (j = 0; j < depth; j++) {
|
825
|
-
fbuffer_append(buffer, indent, indent_len);
|
826
|
-
}
|
827
|
-
}
|
828
|
-
|
829
|
-
klass = CLASS_OF(key);
|
830
|
-
if (klass == rb_cString) {
|
831
|
-
key_to_s = key;
|
832
|
-
} else if (klass == rb_cSymbol) {
|
833
|
-
key_to_s = rb_id2str(SYM2ID(key));
|
834
|
-
} else {
|
835
|
-
key_to_s = rb_funcall(key, i_to_s, 0);
|
836
|
-
}
|
837
|
-
Check_Type(key_to_s, T_STRING);
|
838
|
-
generate_json(buffer, Vstate, state, key_to_s);
|
839
|
-
fbuffer_append(buffer, delim2, delim2_len);
|
840
|
-
generate_json(buffer, Vstate, state, val);
|
841
|
-
|
842
|
-
arg->iter++;
|
843
|
-
return ST_CONTINUE;
|
844
|
-
}
|
845
|
-
|
846
|
-
static void generate_json_object(FBuffer *buffer, VALUE Vstate, JSON_Generator_State *state, VALUE obj)
|
847
|
-
{
|
848
|
-
char *object_nl = state->object_nl;
|
849
|
-
long object_nl_len = state->object_nl_len;
|
850
|
-
char *indent = state->indent;
|
851
|
-
long indent_len = state->indent_len;
|
852
|
-
long max_nesting = state->max_nesting;
|
853
|
-
long depth = ++state->depth;
|
854
|
-
int j;
|
855
|
-
struct hash_foreach_arg arg;
|
856
|
-
|
857
|
-
if (max_nesting != 0 && depth > max_nesting) {
|
858
|
-
fbuffer_free(buffer);
|
859
|
-
rb_raise(eNestingError, "nesting of %ld is too deep", --state->depth);
|
860
|
-
}
|
861
|
-
fbuffer_append_char(buffer, '{');
|
862
|
-
|
863
|
-
arg.buffer = buffer;
|
864
|
-
arg.state = state;
|
865
|
-
arg.Vstate = Vstate;
|
866
|
-
arg.iter = 0;
|
867
|
-
rb_hash_foreach(obj, json_object_i, (VALUE)&arg);
|
868
|
-
|
869
|
-
depth = --state->depth;
|
870
|
-
if (object_nl) {
|
871
|
-
fbuffer_append(buffer, object_nl, object_nl_len);
|
872
|
-
if (indent) {
|
873
|
-
for (j = 0; j < depth; j++) {
|
874
|
-
fbuffer_append(buffer, indent, indent_len);
|
875
|
-
}
|
876
|
-
}
|
877
|
-
}
|
878
|
-
fbuffer_append_char(buffer, '}');
|
879
|
-
}
|
880
|
-
|
881
|
-
static void generate_json_array(FBuffer *buffer, VALUE Vstate, JSON_Generator_State *state, VALUE obj)
|
882
|
-
{
|
883
|
-
char *array_nl = state->array_nl;
|
884
|
-
long array_nl_len = state->array_nl_len;
|
885
|
-
char *indent = state->indent;
|
886
|
-
long indent_len = state->indent_len;
|
887
|
-
long max_nesting = state->max_nesting;
|
888
|
-
char *delim = FBUFFER_PTR(state->array_delim);
|
889
|
-
long delim_len = FBUFFER_LEN(state->array_delim);
|
890
|
-
long depth = ++state->depth;
|
891
|
-
int i, j;
|
892
|
-
if (max_nesting != 0 && depth > max_nesting) {
|
893
|
-
fbuffer_free(buffer);
|
894
|
-
rb_raise(eNestingError, "nesting of %ld is too deep", --state->depth);
|
895
|
-
}
|
896
|
-
fbuffer_append_char(buffer, '[');
|
897
|
-
if (array_nl) fbuffer_append(buffer, array_nl, array_nl_len);
|
898
|
-
for(i = 0; i < RARRAY_LEN(obj); i++) {
|
899
|
-
if (i > 0) fbuffer_append(buffer, delim, delim_len);
|
900
|
-
if (indent) {
|
901
|
-
for (j = 0; j < depth; j++) {
|
902
|
-
fbuffer_append(buffer, indent, indent_len);
|
903
|
-
}
|
904
|
-
}
|
905
|
-
generate_json(buffer, Vstate, state, rb_ary_entry(obj, i));
|
906
|
-
}
|
907
|
-
state->depth = --depth;
|
908
|
-
if (array_nl) {
|
909
|
-
fbuffer_append(buffer, array_nl, array_nl_len);
|
910
|
-
if (indent) {
|
911
|
-
for (j = 0; j < depth; j++) {
|
912
|
-
fbuffer_append(buffer, indent, indent_len);
|
913
|
-
}
|
914
|
-
}
|
915
|
-
}
|
916
|
-
fbuffer_append_char(buffer, ']');
|
917
|
-
}
|
918
|
-
|
919
|
-
#ifdef HAVE_RUBY_ENCODING_H
|
920
|
-
static int enc_utf8_compatible_p(rb_encoding *enc)
|
921
|
-
{
|
922
|
-
if (enc == rb_usascii_encoding()) return 1;
|
923
|
-
if (enc == rb_utf8_encoding()) return 1;
|
924
|
-
return 0;
|
925
|
-
}
|
926
|
-
#endif
|
927
|
-
|
928
|
-
static void generate_json_string(FBuffer *buffer, VALUE Vstate, JSON_Generator_State *state, VALUE obj)
|
929
|
-
{
|
930
|
-
fbuffer_append_char(buffer, '"');
|
931
|
-
#ifdef HAVE_RUBY_ENCODING_H
|
932
|
-
if (!enc_utf8_compatible_p(rb_enc_get(obj))) {
|
933
|
-
obj = rb_str_encode(obj, CEncoding_UTF_8, 0, Qnil);
|
934
|
-
}
|
935
|
-
#endif
|
936
|
-
if (state->ascii_only) {
|
937
|
-
convert_UTF8_to_JSON_ASCII(buffer, obj);
|
938
|
-
} else {
|
939
|
-
convert_UTF8_to_JSON(buffer, obj);
|
940
|
-
}
|
941
|
-
fbuffer_append_char(buffer, '"');
|
942
|
-
}
|
943
|
-
|
944
|
-
static void generate_json_null(FBuffer *buffer, VALUE Vstate, JSON_Generator_State *state, VALUE obj)
|
945
|
-
{
|
946
|
-
fbuffer_append(buffer, "null", 4);
|
947
|
-
}
|
948
|
-
|
949
|
-
static void generate_json_false(FBuffer *buffer, VALUE Vstate, JSON_Generator_State *state, VALUE obj)
|
950
|
-
{
|
951
|
-
fbuffer_append(buffer, "false", 5);
|
952
|
-
}
|
953
|
-
|
954
|
-
static void generate_json_true(FBuffer *buffer, VALUE Vstate, JSON_Generator_State *state, VALUE obj)
|
955
|
-
{
|
956
|
-
fbuffer_append(buffer, "true", 4);
|
957
|
-
}
|
958
|
-
|
959
|
-
static void generate_json_fixnum(FBuffer *buffer, VALUE Vstate, JSON_Generator_State *state, VALUE obj)
|
960
|
-
{
|
961
|
-
fbuffer_append_long(buffer, FIX2LONG(obj));
|
962
|
-
}
|
963
|
-
|
964
|
-
static void generate_json_bignum(FBuffer *buffer, VALUE Vstate, JSON_Generator_State *state, VALUE obj)
|
965
|
-
{
|
966
|
-
VALUE tmp = rb_funcall(obj, i_to_s, 0);
|
967
|
-
fbuffer_append_str(buffer, tmp);
|
968
|
-
}
|
969
|
-
|
970
|
-
#ifdef RUBY_INTEGER_UNIFICATION
|
971
|
-
static void generate_json_integer(FBuffer *buffer, VALUE Vstate, JSON_Generator_State *state, VALUE obj)
|
972
|
-
{
|
973
|
-
if (FIXNUM_P(obj))
|
974
|
-
generate_json_fixnum(buffer, Vstate, state, obj);
|
975
|
-
else
|
976
|
-
generate_json_bignum(buffer, Vstate, state, obj);
|
977
|
-
}
|
978
|
-
#endif
|
979
|
-
static void generate_json_float(FBuffer *buffer, VALUE Vstate, JSON_Generator_State *state, VALUE obj)
|
980
|
-
{
|
981
|
-
double value = RFLOAT_VALUE(obj);
|
982
|
-
char allow_nan = state->allow_nan;
|
983
|
-
VALUE tmp = rb_funcall(obj, i_to_s, 0);
|
984
|
-
if (!allow_nan) {
|
985
|
-
if (isinf(value)) {
|
986
|
-
fbuffer_free(buffer);
|
987
|
-
rb_raise(eGeneratorError, "%u: %"PRIsVALUE" not allowed in JSON", __LINE__, RB_OBJ_STRING(tmp));
|
988
|
-
} else if (isnan(value)) {
|
989
|
-
fbuffer_free(buffer);
|
990
|
-
rb_raise(eGeneratorError, "%u: %"PRIsVALUE" not allowed in JSON", __LINE__, RB_OBJ_STRING(tmp));
|
991
|
-
}
|
992
|
-
}
|
993
|
-
fbuffer_append_str(buffer, tmp);
|
994
|
-
}
|
995
|
-
|
996
|
-
static void generate_json(FBuffer *buffer, VALUE Vstate, JSON_Generator_State *state, VALUE obj)
|
997
|
-
{
|
998
|
-
VALUE tmp;
|
999
|
-
VALUE klass = CLASS_OF(obj);
|
1000
|
-
if (klass == rb_cHash) {
|
1001
|
-
generate_json_object(buffer, Vstate, state, obj);
|
1002
|
-
} else if (klass == rb_cArray) {
|
1003
|
-
generate_json_array(buffer, Vstate, state, obj);
|
1004
|
-
} else if (klass == rb_cString) {
|
1005
|
-
generate_json_string(buffer, Vstate, state, obj);
|
1006
|
-
} else if (obj == Qnil) {
|
1007
|
-
generate_json_null(buffer, Vstate, state, obj);
|
1008
|
-
} else if (obj == Qfalse) {
|
1009
|
-
generate_json_false(buffer, Vstate, state, obj);
|
1010
|
-
} else if (obj == Qtrue) {
|
1011
|
-
generate_json_true(buffer, Vstate, state, obj);
|
1012
|
-
} else if (FIXNUM_P(obj)) {
|
1013
|
-
generate_json_fixnum(buffer, Vstate, state, obj);
|
1014
|
-
} else if (RB_TYPE_P(obj, T_BIGNUM)) {
|
1015
|
-
generate_json_bignum(buffer, Vstate, state, obj);
|
1016
|
-
} else if (klass == rb_cFloat) {
|
1017
|
-
generate_json_float(buffer, Vstate, state, obj);
|
1018
|
-
} else if (rb_respond_to(obj, i_to_json)) {
|
1019
|
-
tmp = rb_funcall(obj, i_to_json, 1, Vstate);
|
1020
|
-
Check_Type(tmp, T_STRING);
|
1021
|
-
fbuffer_append_str(buffer, tmp);
|
1022
|
-
} else {
|
1023
|
-
tmp = rb_funcall(obj, i_to_s, 0);
|
1024
|
-
Check_Type(tmp, T_STRING);
|
1025
|
-
generate_json_string(buffer, Vstate, state, tmp);
|
1026
|
-
}
|
1027
|
-
}
|
1028
|
-
|
1029
|
-
static FBuffer *cState_prepare_buffer(VALUE self)
|
1030
|
-
{
|
1031
|
-
FBuffer *buffer;
|
1032
|
-
GET_STATE(self);
|
1033
|
-
buffer = fbuffer_alloc(state->buffer_initial_length);
|
1034
|
-
|
1035
|
-
if (state->object_delim) {
|
1036
|
-
fbuffer_clear(state->object_delim);
|
1037
|
-
} else {
|
1038
|
-
state->object_delim = fbuffer_alloc(16);
|
1039
|
-
}
|
1040
|
-
fbuffer_append_char(state->object_delim, ',');
|
1041
|
-
if (state->object_delim2) {
|
1042
|
-
fbuffer_clear(state->object_delim2);
|
1043
|
-
} else {
|
1044
|
-
state->object_delim2 = fbuffer_alloc(16);
|
1045
|
-
}
|
1046
|
-
if (state->space_before) fbuffer_append(state->object_delim2, state->space_before, state->space_before_len);
|
1047
|
-
fbuffer_append_char(state->object_delim2, ':');
|
1048
|
-
if (state->space) fbuffer_append(state->object_delim2, state->space, state->space_len);
|
1049
|
-
|
1050
|
-
if (state->array_delim) {
|
1051
|
-
fbuffer_clear(state->array_delim);
|
1052
|
-
} else {
|
1053
|
-
state->array_delim = fbuffer_alloc(16);
|
1054
|
-
}
|
1055
|
-
fbuffer_append_char(state->array_delim, ',');
|
1056
|
-
if (state->array_nl) fbuffer_append(state->array_delim, state->array_nl, state->array_nl_len);
|
1057
|
-
return buffer;
|
1058
|
-
}
|
1059
|
-
|
1060
|
-
static VALUE cState_partial_generate(VALUE self, VALUE obj)
|
1061
|
-
{
|
1062
|
-
FBuffer *buffer = cState_prepare_buffer(self);
|
1063
|
-
GET_STATE(self);
|
1064
|
-
generate_json(buffer, self, state, obj);
|
1065
|
-
return fbuffer_to_s(buffer);
|
1066
|
-
}
|
1067
|
-
|
1068
|
-
/*
|
1069
|
-
* call-seq: generate(obj)
|
1070
|
-
*
|
1071
|
-
* Generates a valid JSON document from object +obj+ and returns the
|
1072
|
-
* result. If no valid JSON document can be created this method raises a
|
1073
|
-
* GeneratorError exception.
|
1074
|
-
*/
|
1075
|
-
static VALUE cState_generate(VALUE self, VALUE obj)
|
1076
|
-
{
|
1077
|
-
VALUE result = cState_partial_generate(self, obj);
|
1078
|
-
GET_STATE(self);
|
1079
|
-
(void)state;
|
1080
|
-
return result;
|
1081
|
-
}
|
1082
|
-
|
1083
|
-
/*
|
1084
|
-
* call-seq: new(opts = {})
|
1085
|
-
*
|
1086
|
-
* Instantiates a new State object, configured by _opts_.
|
1087
|
-
*
|
1088
|
-
* _opts_ can have the following keys:
|
1089
|
-
*
|
1090
|
-
* * *indent*: a string used to indent levels (default: ''),
|
1091
|
-
* * *space*: a string that is put after, a : or , delimiter (default: ''),
|
1092
|
-
* * *space_before*: a string that is put before a : pair delimiter (default: ''),
|
1093
|
-
* * *object_nl*: a string that is put at the end of a JSON object (default: ''),
|
1094
|
-
* * *array_nl*: a string that is put at the end of a JSON array (default: ''),
|
1095
|
-
* * *allow_nan*: true if NaN, Infinity, and -Infinity should be
|
1096
|
-
* generated, otherwise an exception is thrown, if these values are
|
1097
|
-
* encountered. This options defaults to false.
|
1098
|
-
* * *ascii_only*: true if only ASCII characters should be generated. This
|
1099
|
-
* option defaults to false.
|
1100
|
-
* * *buffer_initial_length*: sets the initial length of the generator's
|
1101
|
-
* internal buffer.
|
1102
|
-
*/
|
1103
|
-
static VALUE cState_initialize(int argc, VALUE *argv, VALUE self)
|
1104
|
-
{
|
1105
|
-
VALUE opts;
|
1106
|
-
GET_STATE(self);
|
1107
|
-
state->max_nesting = 100;
|
1108
|
-
state->buffer_initial_length = FBUFFER_INITIAL_LENGTH_DEFAULT;
|
1109
|
-
rb_scan_args(argc, argv, "01", &opts);
|
1110
|
-
if (!NIL_P(opts)) cState_configure(self, opts);
|
1111
|
-
return self;
|
1112
|
-
}
|
1113
|
-
|
1114
|
-
/*
|
1115
|
-
* call-seq: initialize_copy(orig)
|
1116
|
-
*
|
1117
|
-
* Initializes this object from orig if it can be duplicated/cloned and returns
|
1118
|
-
* it.
|
1119
|
-
*/
|
1120
|
-
static VALUE cState_init_copy(VALUE obj, VALUE orig)
|
1121
|
-
{
|
1122
|
-
JSON_Generator_State *objState, *origState;
|
1123
|
-
|
1124
|
-
if (obj == orig) return obj;
|
1125
|
-
GET_STATE_TO(obj, objState);
|
1126
|
-
GET_STATE_TO(orig, origState);
|
1127
|
-
if (!objState) rb_raise(rb_eArgError, "unallocated JSON::State");
|
1128
|
-
|
1129
|
-
MEMCPY(objState, origState, JSON_Generator_State, 1);
|
1130
|
-
objState->indent = fstrndup(origState->indent, origState->indent_len);
|
1131
|
-
objState->space = fstrndup(origState->space, origState->space_len);
|
1132
|
-
objState->space_before = fstrndup(origState->space_before, origState->space_before_len);
|
1133
|
-
objState->object_nl = fstrndup(origState->object_nl, origState->object_nl_len);
|
1134
|
-
objState->array_nl = fstrndup(origState->array_nl, origState->array_nl_len);
|
1135
|
-
if (origState->array_delim) objState->array_delim = fbuffer_dup(origState->array_delim);
|
1136
|
-
if (origState->object_delim) objState->object_delim = fbuffer_dup(origState->object_delim);
|
1137
|
-
if (origState->object_delim2) objState->object_delim2 = fbuffer_dup(origState->object_delim2);
|
1138
|
-
return obj;
|
1139
|
-
}
|
1140
|
-
|
1141
|
-
/*
|
1142
|
-
* call-seq: from_state(opts)
|
1143
|
-
*
|
1144
|
-
* Creates a State object from _opts_, which ought to be Hash to create a
|
1145
|
-
* new State instance configured by _opts_, something else to create an
|
1146
|
-
* unconfigured instance. If _opts_ is a State object, it is just returned.
|
1147
|
-
*/
|
1148
|
-
static VALUE cState_from_state_s(VALUE self, VALUE opts)
|
1149
|
-
{
|
1150
|
-
if (rb_obj_is_kind_of(opts, self)) {
|
1151
|
-
return opts;
|
1152
|
-
} else if (rb_obj_is_kind_of(opts, rb_cHash)) {
|
1153
|
-
return rb_funcall(self, i_new, 1, opts);
|
1154
|
-
} else {
|
1155
|
-
VALUE prototype = rb_const_get(mJSON, i_SAFE_STATE_PROTOTYPE);
|
1156
|
-
return rb_funcall(prototype, i_dup, 0);
|
1157
|
-
}
|
1158
|
-
}
|
1159
|
-
|
1160
|
-
/*
|
1161
|
-
* call-seq: indent()
|
1162
|
-
*
|
1163
|
-
* Returns the string that is used to indent levels in the JSON text.
|
1164
|
-
*/
|
1165
|
-
static VALUE cState_indent(VALUE self)
|
1166
|
-
{
|
1167
|
-
GET_STATE(self);
|
1168
|
-
return state->indent ? rb_str_new(state->indent, state->indent_len) : rb_str_new2("");
|
1169
|
-
}
|
1170
|
-
|
1171
|
-
/*
|
1172
|
-
* call-seq: indent=(indent)
|
1173
|
-
*
|
1174
|
-
* Sets the string that is used to indent levels in the JSON text.
|
1175
|
-
*/
|
1176
|
-
static VALUE cState_indent_set(VALUE self, VALUE indent)
|
1177
|
-
{
|
1178
|
-
unsigned long len;
|
1179
|
-
GET_STATE(self);
|
1180
|
-
Check_Type(indent, T_STRING);
|
1181
|
-
len = RSTRING_LEN(indent);
|
1182
|
-
if (len == 0) {
|
1183
|
-
if (state->indent) {
|
1184
|
-
ruby_xfree(state->indent);
|
1185
|
-
state->indent = NULL;
|
1186
|
-
state->indent_len = 0;
|
1187
|
-
}
|
1188
|
-
} else {
|
1189
|
-
if (state->indent) ruby_xfree(state->indent);
|
1190
|
-
state->indent = fstrndup(RSTRING_PTR(indent), len);
|
1191
|
-
state->indent_len = len;
|
1192
|
-
}
|
1193
|
-
return Qnil;
|
1194
|
-
}
|
1195
|
-
|
1196
|
-
/*
|
1197
|
-
* call-seq: space()
|
1198
|
-
*
|
1199
|
-
* Returns the string that is used to insert a space between the tokens in a JSON
|
1200
|
-
* string.
|
1201
|
-
*/
|
1202
|
-
static VALUE cState_space(VALUE self)
|
1203
|
-
{
|
1204
|
-
GET_STATE(self);
|
1205
|
-
return state->space ? rb_str_new(state->space, state->space_len) : rb_str_new2("");
|
1206
|
-
}
|
1207
|
-
|
1208
|
-
/*
|
1209
|
-
* call-seq: space=(space)
|
1210
|
-
*
|
1211
|
-
* Sets _space_ to the string that is used to insert a space between the tokens in a JSON
|
1212
|
-
* string.
|
1213
|
-
*/
|
1214
|
-
static VALUE cState_space_set(VALUE self, VALUE space)
|
1215
|
-
{
|
1216
|
-
unsigned long len;
|
1217
|
-
GET_STATE(self);
|
1218
|
-
Check_Type(space, T_STRING);
|
1219
|
-
len = RSTRING_LEN(space);
|
1220
|
-
if (len == 0) {
|
1221
|
-
if (state->space) {
|
1222
|
-
ruby_xfree(state->space);
|
1223
|
-
state->space = NULL;
|
1224
|
-
state->space_len = 0;
|
1225
|
-
}
|
1226
|
-
} else {
|
1227
|
-
if (state->space) ruby_xfree(state->space);
|
1228
|
-
state->space = fstrndup(RSTRING_PTR(space), len);
|
1229
|
-
state->space_len = len;
|
1230
|
-
}
|
1231
|
-
return Qnil;
|
1232
|
-
}
|
1233
|
-
|
1234
|
-
/*
|
1235
|
-
* call-seq: space_before()
|
1236
|
-
*
|
1237
|
-
* Returns the string that is used to insert a space before the ':' in JSON objects.
|
1238
|
-
*/
|
1239
|
-
static VALUE cState_space_before(VALUE self)
|
1240
|
-
{
|
1241
|
-
GET_STATE(self);
|
1242
|
-
return state->space_before ? rb_str_new(state->space_before, state->space_before_len) : rb_str_new2("");
|
1243
|
-
}
|
1244
|
-
|
1245
|
-
/*
|
1246
|
-
* call-seq: space_before=(space_before)
|
1247
|
-
*
|
1248
|
-
* Sets the string that is used to insert a space before the ':' in JSON objects.
|
1249
|
-
*/
|
1250
|
-
static VALUE cState_space_before_set(VALUE self, VALUE space_before)
|
1251
|
-
{
|
1252
|
-
unsigned long len;
|
1253
|
-
GET_STATE(self);
|
1254
|
-
Check_Type(space_before, T_STRING);
|
1255
|
-
len = RSTRING_LEN(space_before);
|
1256
|
-
if (len == 0) {
|
1257
|
-
if (state->space_before) {
|
1258
|
-
ruby_xfree(state->space_before);
|
1259
|
-
state->space_before = NULL;
|
1260
|
-
state->space_before_len = 0;
|
1261
|
-
}
|
1262
|
-
} else {
|
1263
|
-
if (state->space_before) ruby_xfree(state->space_before);
|
1264
|
-
state->space_before = fstrndup(RSTRING_PTR(space_before), len);
|
1265
|
-
state->space_before_len = len;
|
1266
|
-
}
|
1267
|
-
return Qnil;
|
1268
|
-
}
|
1269
|
-
|
1270
|
-
/*
|
1271
|
-
* call-seq: object_nl()
|
1272
|
-
*
|
1273
|
-
* This string is put at the end of a line that holds a JSON object (or
|
1274
|
-
* Hash).
|
1275
|
-
*/
|
1276
|
-
static VALUE cState_object_nl(VALUE self)
|
1277
|
-
{
|
1278
|
-
GET_STATE(self);
|
1279
|
-
return state->object_nl ? rb_str_new(state->object_nl, state->object_nl_len) : rb_str_new2("");
|
1280
|
-
}
|
1281
|
-
|
1282
|
-
/*
|
1283
|
-
* call-seq: object_nl=(object_nl)
|
1284
|
-
*
|
1285
|
-
* This string is put at the end of a line that holds a JSON object (or
|
1286
|
-
* Hash).
|
1287
|
-
*/
|
1288
|
-
static VALUE cState_object_nl_set(VALUE self, VALUE object_nl)
|
1289
|
-
{
|
1290
|
-
unsigned long len;
|
1291
|
-
GET_STATE(self);
|
1292
|
-
Check_Type(object_nl, T_STRING);
|
1293
|
-
len = RSTRING_LEN(object_nl);
|
1294
|
-
if (len == 0) {
|
1295
|
-
if (state->object_nl) {
|
1296
|
-
ruby_xfree(state->object_nl);
|
1297
|
-
state->object_nl = NULL;
|
1298
|
-
}
|
1299
|
-
} else {
|
1300
|
-
if (state->object_nl) ruby_xfree(state->object_nl);
|
1301
|
-
state->object_nl = fstrndup(RSTRING_PTR(object_nl), len);
|
1302
|
-
state->object_nl_len = len;
|
1303
|
-
}
|
1304
|
-
return Qnil;
|
1305
|
-
}
|
1306
|
-
|
1307
|
-
/*
|
1308
|
-
* call-seq: array_nl()
|
1309
|
-
*
|
1310
|
-
* This string is put at the end of a line that holds a JSON array.
|
1311
|
-
*/
|
1312
|
-
static VALUE cState_array_nl(VALUE self)
|
1313
|
-
{
|
1314
|
-
GET_STATE(self);
|
1315
|
-
return state->array_nl ? rb_str_new(state->array_nl, state->array_nl_len) : rb_str_new2("");
|
1316
|
-
}
|
1317
|
-
|
1318
|
-
/*
|
1319
|
-
* call-seq: array_nl=(array_nl)
|
1320
|
-
*
|
1321
|
-
* This string is put at the end of a line that holds a JSON array.
|
1322
|
-
*/
|
1323
|
-
static VALUE cState_array_nl_set(VALUE self, VALUE array_nl)
|
1324
|
-
{
|
1325
|
-
unsigned long len;
|
1326
|
-
GET_STATE(self);
|
1327
|
-
Check_Type(array_nl, T_STRING);
|
1328
|
-
len = RSTRING_LEN(array_nl);
|
1329
|
-
if (len == 0) {
|
1330
|
-
if (state->array_nl) {
|
1331
|
-
ruby_xfree(state->array_nl);
|
1332
|
-
state->array_nl = NULL;
|
1333
|
-
}
|
1334
|
-
} else {
|
1335
|
-
if (state->array_nl) ruby_xfree(state->array_nl);
|
1336
|
-
state->array_nl = fstrndup(RSTRING_PTR(array_nl), len);
|
1337
|
-
state->array_nl_len = len;
|
1338
|
-
}
|
1339
|
-
return Qnil;
|
1340
|
-
}
|
1341
|
-
|
1342
|
-
|
1343
|
-
/*
|
1344
|
-
* call-seq: check_circular?
|
1345
|
-
*
|
1346
|
-
* Returns true, if circular data structures should be checked,
|
1347
|
-
* otherwise returns false.
|
1348
|
-
*/
|
1349
|
-
static VALUE cState_check_circular_p(VALUE self)
|
1350
|
-
{
|
1351
|
-
GET_STATE(self);
|
1352
|
-
return state->max_nesting ? Qtrue : Qfalse;
|
1353
|
-
}
|
1354
|
-
|
1355
|
-
/*
|
1356
|
-
* call-seq: max_nesting
|
1357
|
-
*
|
1358
|
-
* This integer returns the maximum level of data structure nesting in
|
1359
|
-
* the generated JSON, max_nesting = 0 if no maximum is checked.
|
1360
|
-
*/
|
1361
|
-
static VALUE cState_max_nesting(VALUE self)
|
1362
|
-
{
|
1363
|
-
GET_STATE(self);
|
1364
|
-
return LONG2FIX(state->max_nesting);
|
1365
|
-
}
|
1366
|
-
|
1367
|
-
/*
|
1368
|
-
* call-seq: max_nesting=(depth)
|
1369
|
-
*
|
1370
|
-
* This sets the maximum level of data structure nesting in the generated JSON
|
1371
|
-
* to the integer depth, max_nesting = 0 if no maximum should be checked.
|
1372
|
-
*/
|
1373
|
-
static VALUE cState_max_nesting_set(VALUE self, VALUE depth)
|
1374
|
-
{
|
1375
|
-
GET_STATE(self);
|
1376
|
-
Check_Type(depth, T_FIXNUM);
|
1377
|
-
return state->max_nesting = FIX2LONG(depth);
|
1378
|
-
}
|
1379
|
-
|
1380
|
-
/*
|
1381
|
-
* call-seq: allow_nan?
|
1382
|
-
*
|
1383
|
-
* Returns true, if NaN, Infinity, and -Infinity should be generated, otherwise
|
1384
|
-
* returns false.
|
1385
|
-
*/
|
1386
|
-
static VALUE cState_allow_nan_p(VALUE self)
|
1387
|
-
{
|
1388
|
-
GET_STATE(self);
|
1389
|
-
return state->allow_nan ? Qtrue : Qfalse;
|
1390
|
-
}
|
1391
|
-
|
1392
|
-
/*
|
1393
|
-
* call-seq: ascii_only?
|
1394
|
-
*
|
1395
|
-
* Returns true, if only ASCII characters should be generated. Otherwise
|
1396
|
-
* returns false.
|
1397
|
-
*/
|
1398
|
-
static VALUE cState_ascii_only_p(VALUE self)
|
1399
|
-
{
|
1400
|
-
GET_STATE(self);
|
1401
|
-
return state->ascii_only ? Qtrue : Qfalse;
|
1402
|
-
}
|
1403
|
-
|
1404
|
-
/*
|
1405
|
-
* call-seq: depth
|
1406
|
-
*
|
1407
|
-
* This integer returns the current depth of data structure nesting.
|
1408
|
-
*/
|
1409
|
-
static VALUE cState_depth(VALUE self)
|
1410
|
-
{
|
1411
|
-
GET_STATE(self);
|
1412
|
-
return LONG2FIX(state->depth);
|
1413
|
-
}
|
1414
|
-
|
1415
|
-
/*
|
1416
|
-
* call-seq: depth=(depth)
|
1417
|
-
*
|
1418
|
-
* This sets the maximum level of data structure nesting in the generated JSON
|
1419
|
-
* to the integer depth, max_nesting = 0 if no maximum should be checked.
|
1420
|
-
*/
|
1421
|
-
static VALUE cState_depth_set(VALUE self, VALUE depth)
|
1422
|
-
{
|
1423
|
-
GET_STATE(self);
|
1424
|
-
Check_Type(depth, T_FIXNUM);
|
1425
|
-
state->depth = FIX2LONG(depth);
|
1426
|
-
return Qnil;
|
1427
|
-
}
|
1428
|
-
|
1429
|
-
/*
|
1430
|
-
* call-seq: buffer_initial_length
|
1431
|
-
*
|
1432
|
-
* This integer returns the current initial length of the buffer.
|
1433
|
-
*/
|
1434
|
-
static VALUE cState_buffer_initial_length(VALUE self)
|
1435
|
-
{
|
1436
|
-
GET_STATE(self);
|
1437
|
-
return LONG2FIX(state->buffer_initial_length);
|
1438
|
-
}
|
1439
|
-
|
1440
|
-
/*
|
1441
|
-
* call-seq: buffer_initial_length=(length)
|
1442
|
-
*
|
1443
|
-
* This sets the initial length of the buffer to +length+, if +length+ > 0,
|
1444
|
-
* otherwise its value isn't changed.
|
1445
|
-
*/
|
1446
|
-
static VALUE cState_buffer_initial_length_set(VALUE self, VALUE buffer_initial_length)
|
1447
|
-
{
|
1448
|
-
long initial_length;
|
1449
|
-
GET_STATE(self);
|
1450
|
-
Check_Type(buffer_initial_length, T_FIXNUM);
|
1451
|
-
initial_length = FIX2LONG(buffer_initial_length);
|
1452
|
-
if (initial_length > 0) {
|
1453
|
-
state->buffer_initial_length = initial_length;
|
1454
|
-
}
|
1455
|
-
return Qnil;
|
1456
|
-
}
|
1457
|
-
|
1458
|
-
/*
|
1459
|
-
*
|
1460
|
-
*/
|
1461
|
-
void Init_generator(void)
|
1462
|
-
{
|
1463
|
-
#undef rb_intern
|
1464
|
-
rb_require("json/common");
|
1465
|
-
|
1466
|
-
mJSON = rb_define_module("JSON");
|
1467
|
-
mExt = rb_define_module_under(mJSON, "Ext");
|
1468
|
-
mGenerator = rb_define_module_under(mExt, "Generator");
|
1469
|
-
|
1470
|
-
eGeneratorError = rb_path2class("JSON::GeneratorError");
|
1471
|
-
eNestingError = rb_path2class("JSON::NestingError");
|
1472
|
-
rb_gc_register_mark_object(eGeneratorError);
|
1473
|
-
rb_gc_register_mark_object(eNestingError);
|
1474
|
-
|
1475
|
-
cState = rb_define_class_under(mGenerator, "State", rb_cObject);
|
1476
|
-
rb_define_alloc_func(cState, cState_s_allocate);
|
1477
|
-
rb_define_singleton_method(cState, "from_state", cState_from_state_s, 1);
|
1478
|
-
rb_define_method(cState, "initialize", cState_initialize, -1);
|
1479
|
-
rb_define_method(cState, "initialize_copy", cState_init_copy, 1);
|
1480
|
-
rb_define_method(cState, "indent", cState_indent, 0);
|
1481
|
-
rb_define_method(cState, "indent=", cState_indent_set, 1);
|
1482
|
-
rb_define_method(cState, "space", cState_space, 0);
|
1483
|
-
rb_define_method(cState, "space=", cState_space_set, 1);
|
1484
|
-
rb_define_method(cState, "space_before", cState_space_before, 0);
|
1485
|
-
rb_define_method(cState, "space_before=", cState_space_before_set, 1);
|
1486
|
-
rb_define_method(cState, "object_nl", cState_object_nl, 0);
|
1487
|
-
rb_define_method(cState, "object_nl=", cState_object_nl_set, 1);
|
1488
|
-
rb_define_method(cState, "array_nl", cState_array_nl, 0);
|
1489
|
-
rb_define_method(cState, "array_nl=", cState_array_nl_set, 1);
|
1490
|
-
rb_define_method(cState, "max_nesting", cState_max_nesting, 0);
|
1491
|
-
rb_define_method(cState, "max_nesting=", cState_max_nesting_set, 1);
|
1492
|
-
rb_define_method(cState, "check_circular?", cState_check_circular_p, 0);
|
1493
|
-
rb_define_method(cState, "allow_nan?", cState_allow_nan_p, 0);
|
1494
|
-
rb_define_method(cState, "ascii_only?", cState_ascii_only_p, 0);
|
1495
|
-
rb_define_method(cState, "depth", cState_depth, 0);
|
1496
|
-
rb_define_method(cState, "depth=", cState_depth_set, 1);
|
1497
|
-
rb_define_method(cState, "buffer_initial_length", cState_buffer_initial_length, 0);
|
1498
|
-
rb_define_method(cState, "buffer_initial_length=", cState_buffer_initial_length_set, 1);
|
1499
|
-
rb_define_method(cState, "configure", cState_configure, 1);
|
1500
|
-
rb_define_alias(cState, "merge", "configure");
|
1501
|
-
rb_define_method(cState, "to_h", cState_to_h, 0);
|
1502
|
-
rb_define_alias(cState, "to_hash", "to_h");
|
1503
|
-
rb_define_method(cState, "[]", cState_aref, 1);
|
1504
|
-
rb_define_method(cState, "[]=", cState_aset, 2);
|
1505
|
-
rb_define_method(cState, "generate", cState_generate, 1);
|
1506
|
-
|
1507
|
-
mGeneratorMethods = rb_define_module_under(mGenerator, "GeneratorMethods");
|
1508
|
-
mObject = rb_define_module_under(mGeneratorMethods, "Object");
|
1509
|
-
rb_define_method(mObject, "to_json", mObject_to_json, -1);
|
1510
|
-
mHash = rb_define_module_under(mGeneratorMethods, "Hash");
|
1511
|
-
rb_define_method(mHash, "to_json", mHash_to_json, -1);
|
1512
|
-
mArray = rb_define_module_under(mGeneratorMethods, "Array");
|
1513
|
-
rb_define_method(mArray, "to_json", mArray_to_json, -1);
|
1514
|
-
#ifdef RUBY_INTEGER_UNIFICATION
|
1515
|
-
mInteger = rb_define_module_under(mGeneratorMethods, "Integer");
|
1516
|
-
rb_define_method(mInteger, "to_json", mInteger_to_json, -1);
|
1517
|
-
#else
|
1518
|
-
mFixnum = rb_define_module_under(mGeneratorMethods, "Fixnum");
|
1519
|
-
rb_define_method(mFixnum, "to_json", mFixnum_to_json, -1);
|
1520
|
-
mBignum = rb_define_module_under(mGeneratorMethods, "Bignum");
|
1521
|
-
rb_define_method(mBignum, "to_json", mBignum_to_json, -1);
|
1522
|
-
#endif
|
1523
|
-
mFloat = rb_define_module_under(mGeneratorMethods, "Float");
|
1524
|
-
rb_define_method(mFloat, "to_json", mFloat_to_json, -1);
|
1525
|
-
mString = rb_define_module_under(mGeneratorMethods, "String");
|
1526
|
-
rb_define_singleton_method(mString, "included", mString_included_s, 1);
|
1527
|
-
rb_define_method(mString, "to_json", mString_to_json, -1);
|
1528
|
-
rb_define_method(mString, "to_json_raw", mString_to_json_raw, -1);
|
1529
|
-
rb_define_method(mString, "to_json_raw_object", mString_to_json_raw_object, 0);
|
1530
|
-
mString_Extend = rb_define_module_under(mString, "Extend");
|
1531
|
-
rb_define_method(mString_Extend, "json_create", mString_Extend_json_create, 1);
|
1532
|
-
mTrueClass = rb_define_module_under(mGeneratorMethods, "TrueClass");
|
1533
|
-
rb_define_method(mTrueClass, "to_json", mTrueClass_to_json, -1);
|
1534
|
-
mFalseClass = rb_define_module_under(mGeneratorMethods, "FalseClass");
|
1535
|
-
rb_define_method(mFalseClass, "to_json", mFalseClass_to_json, -1);
|
1536
|
-
mNilClass = rb_define_module_under(mGeneratorMethods, "NilClass");
|
1537
|
-
rb_define_method(mNilClass, "to_json", mNilClass_to_json, -1);
|
1538
|
-
|
1539
|
-
i_to_s = rb_intern("to_s");
|
1540
|
-
i_to_json = rb_intern("to_json");
|
1541
|
-
i_new = rb_intern("new");
|
1542
|
-
i_indent = rb_intern("indent");
|
1543
|
-
i_space = rb_intern("space");
|
1544
|
-
i_space_before = rb_intern("space_before");
|
1545
|
-
i_object_nl = rb_intern("object_nl");
|
1546
|
-
i_array_nl = rb_intern("array_nl");
|
1547
|
-
i_max_nesting = rb_intern("max_nesting");
|
1548
|
-
i_allow_nan = rb_intern("allow_nan");
|
1549
|
-
i_ascii_only = rb_intern("ascii_only");
|
1550
|
-
i_depth = rb_intern("depth");
|
1551
|
-
i_buffer_initial_length = rb_intern("buffer_initial_length");
|
1552
|
-
i_pack = rb_intern("pack");
|
1553
|
-
i_unpack = rb_intern("unpack");
|
1554
|
-
i_create_id = rb_intern("create_id");
|
1555
|
-
i_extend = rb_intern("extend");
|
1556
|
-
i_key_p = rb_intern("key?");
|
1557
|
-
i_aref = rb_intern("[]");
|
1558
|
-
i_send = rb_intern("__send__");
|
1559
|
-
i_respond_to_p = rb_intern("respond_to?");
|
1560
|
-
i_match = rb_intern("match");
|
1561
|
-
i_keys = rb_intern("keys");
|
1562
|
-
i_dup = rb_intern("dup");
|
1563
|
-
#ifdef HAVE_RUBY_ENCODING_H
|
1564
|
-
CEncoding_UTF_8 = rb_funcall(rb_path2class("Encoding"), rb_intern("find"), 1, rb_str_new2("utf-8"));
|
1565
|
-
i_encoding = rb_intern("encoding");
|
1566
|
-
i_encode = rb_intern("encode");
|
1567
|
-
#endif
|
1568
|
-
i_SAFE_STATE_PROTOTYPE = rb_intern("SAFE_STATE_PROTOTYPE");
|
1569
|
-
}
|