svix 0.52.0 → 0.53.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/svix/api/message_attempt_api.rb +12 -0
- data/lib/svix/version.rb +1 -1
- data/vendor/bundle/ruby/2.7.0/bin/htmldiff +29 -0
- data/vendor/bundle/ruby/2.7.0/bin/ldiff +29 -0
- data/vendor/bundle/ruby/2.7.0/bin/rake +27 -0
- data/vendor/bundle/ruby/2.7.0/bin/rspec +27 -0
- data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/ffi-1.15.1/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/ffi-1.15.1/gem.build_complete +0 -0
- data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/ffi-1.15.1/gem_make.out +43 -0
- data/vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/ffi-1.15.1/mkmf.log +232 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/Code-of-Conduct.md +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/Contributing.md +118 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/History.md +319 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/License.md +39 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/Manifest.txt +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/README.rdoc +84 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/Rakefile +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/autotest/discover.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/bin/htmldiff +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/bin/ldiff +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/docs/COPYING.txt +339 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/docs/artistic.txt +127 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/array.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/backports.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/block.rb +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/callbacks.rb +325 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/change.rb +174 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/htmldiff.rb +150 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/hunk.rb +358 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/internals.rb +304 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/ldiff.rb +171 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/string.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs.rb +739 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff-lcs.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/change_spec.rb +89 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/diff_spec.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/aX +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/bXaX +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/ds1.csv +50 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/ds2.csv +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff-c +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff-e +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff-f +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff-u +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/hunk_spec.rb +83 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/issues_spec.rb +154 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/lcs_spec.rb +56 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/ldiff_spec.rb +87 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/patch_spec.rb +416 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/sdiff_spec.rb +214 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/spec_helper.rb +375 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/traverse_balanced_spec.rb +310 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/traverse_sequences_spec.rb +139 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/CHANGELOG.md +368 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/Gemfile +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/Guardfile +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/LICENSE +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/README.md +95 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/Rakefile +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/ethon.gemspec +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/curl.rb +90 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/curls/classes.rb +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/curls/codes.rb +122 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/curls/constants.rb +63 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/curls/form_options.rb +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/curls/functions.rb +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/curls/infos.rb +151 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/curls/messages.rb +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/curls/options.rb +471 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/curls/settings.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/callbacks.rb +148 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/debug_info.rb +47 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/features.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/form.rb +107 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/header.rb +61 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/http/actionable.rb +157 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/http/custom.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/http/delete.rb +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/http/get.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/http/head.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/http/options.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/http/patch.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/http/post.rb +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/http/postable.rb +32 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/http/put.rb +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/http/putable.rb +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/http.rb +68 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/informations.rb +95 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/mirror.rb +36 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/operations.rb +78 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/options.rb +50 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/params.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/queryable.rb +154 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/response_callbacks.rb +131 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy/util.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/easy.rb +315 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/errors/ethon_error.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/errors/global_init.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/errors/invalid_option.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/errors/invalid_value.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/errors/multi_add.rb +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/errors/multi_fdset.rb +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/errors/multi_remove.rb +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/errors/multi_timeout.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/errors/select.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/errors.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/libc.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/loggable.rb +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/multi/operations.rb +191 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/multi/options.rb +117 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/multi/stack.rb +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/multi.rb +104 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon/version.rb +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/lib/ethon.rb +36 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/profile/benchmarks.rb +104 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/profile/memory_leaks.rb +114 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/profile/perf_spec_helper.rb +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/profile/support/memory_test_helpers.rb +76 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/profile/support/os_memory_leak_tracker.rb +48 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/profile/support/ruby_object_leak_tracker.rb +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/curl_spec.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/callbacks_spec.rb +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/debug_info_spec.rb +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/features_spec.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/form_spec.rb +104 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/header_spec.rb +79 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/http/custom_spec.rb +177 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/http/delete_spec.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/http/get_spec.rb +126 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/http/head_spec.rb +80 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/http/options_spec.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/http/patch_spec.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/http/post_spec.rb +317 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/http/put_spec.rb +168 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/http_spec.rb +64 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/informations_spec.rb +98 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/mirror_spec.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/operations_spec.rb +268 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/options_spec.rb +193 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/queryable_spec.rb +235 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/response_callbacks_spec.rb +152 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy/util_spec.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/easy_spec.rb +203 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/libc_spec.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/loggable_spec.rb +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/multi/operations_spec.rb +298 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/multi/options_spec.rb +69 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/multi/stack_spec.rb +80 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/ethon/multi_spec.rb +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/spec_helper.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/support/localhost_server.rb +95 -0
- data/vendor/bundle/ruby/2.7.0/gems/ethon-0.14.0/spec/support/server.rb +115 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/CHANGELOG.md +295 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/COPYING +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/Gemfile +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/LICENSE +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/LICENSE.SPECS +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/README.md +136 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/Rakefile +177 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/AbstractMemory.c +1104 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/AbstractMemory.h +175 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/AbstractMemory.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/ArrayType.c +162 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/ArrayType.h +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/ArrayType.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Buffer.c +360 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Buffer.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Call.c +487 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Call.h +107 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Call.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/ClosurePool.c +333 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/ClosurePool.h +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/ClosurePool.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/DynamicLibrary.c +334 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/DynamicLibrary.h +98 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/DynamicLibrary.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Function.c +917 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Function.h +83 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Function.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/FunctionInfo.c +266 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/FunctionInfo.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/LastError.c +225 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/LastError.h +47 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/LastError.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/LongDouble.c +65 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/LongDouble.h +47 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/LongDouble.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Makefile +266 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/MappedType.c +168 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/MappedType.h +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/MappedType.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/MemoryPointer.c +192 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/MemoryPointer.h +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/MemoryPointer.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/MethodHandle.c +348 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/MethodHandle.h +56 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/MethodHandle.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Platform.c +78 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Platform.h +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Platform.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Pointer.c +507 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Pointer.h +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Pointer.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Struct.c +822 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Struct.h +112 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Struct.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/StructByValue.c +145 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/StructByValue.h +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/StructByValue.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/StructLayout.c +700 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/StructLayout.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Thread.c +129 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Thread.h +76 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Thread.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Type.c +379 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Type.h +61 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Type.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Types.c +138 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Types.h +88 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Types.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Variadic.c +303 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/Variadic.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/compat.h +82 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/extconf.h +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/extconf.rb +98 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/ffi.c +93 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/ffi.o +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/ChangeLog.old +7407 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/LICENSE +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +353 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/Makefile.am +150 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/Makefile.in +2060 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/README.md +486 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/acinclude.m4 +479 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/autogen.sh +2 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/config.guess +1687 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/config.sub +1851 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/configure +22049 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/configure.ac +415 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/configure.host +318 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/doc/Makefile.am +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/doc/Makefile.in +815 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/doc/libffi.texi +997 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/doc/version.texi +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/fficonfig.h.in +223 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +201 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/include/Makefile.am +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/include/Makefile.in +608 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/include/ffi.h.in +523 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/include/ffi_cfi.h +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/include/ffi_common.h +153 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/install-sh +518 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/libffi.map.in +76 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/libffi.pc.in +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +997 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/libtool-ldflags +106 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/libtool-version +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/ltmain.sh +11251 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/m4/asmcfi.m4 +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/m4/ax_append_flag.m4 +50 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +194 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +122 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +53 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +88 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/m4/ax_configure_args.m4 +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +302 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +267 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +89 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/m4/ax_require_defined.m4 +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/make_sunver.pl +333 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/man/Makefile.am +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/man/Makefile.in +562 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/man/ffi.3 +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/man/ffi_prep_cif.3 +68 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +73 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/missing +215 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +33 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +130 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +219 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/msvcc.sh +353 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/aarch64/ffi.c +1025 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/aarch64/ffitarget.h +97 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/aarch64/internal.h +68 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/aarch64/sysv.S +451 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/alpha/ffi.c +521 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/alpha/ffitarget.h +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/alpha/internal.h +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/alpha/osf.S +282 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/arc/arcompact.S +135 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/arc/ffi.c +266 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/arc/ffitarget.h +53 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/arm/ffi.c +876 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/arm/ffitarget.h +89 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/arm/internal.h +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/arm/sysv.S +385 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/avr32/ffi.c +423 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/avr32/ffitarget.h +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/avr32/sysv.S +208 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/bfin/ffi.c +196 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/bfin/ffitarget.h +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/bfin/sysv.S +179 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/closures.c +1021 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/cris/ffi.c +386 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/cris/ffitarget.h +56 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/csky/ffi.c +395 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/csky/ffitarget.h +63 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/csky/sysv.S +371 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/debug.c +64 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/dlmalloc.c +5166 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/frv/ffitarget.h +62 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/ia64/ffi.c +604 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/ia64/ffitarget.h +56 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/ia64/unix.S +567 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/java_raw_api.c +374 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/kvx/asm.h +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/kvx/ffi.c +273 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/kvx/ffitarget.h +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/kvx/sysv.S +127 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/m32r/ffitarget.h +53 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/m68k/ffi.c +362 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/m68k/ffitarget.h +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/m68k/sysv.S +357 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/m88k/ffi.c +400 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/m88k/ffitarget.h +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/m88k/obsd.S +209 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/metag/ffi.c +330 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/metag/ffitarget.h +53 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/metag/sysv.S +311 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/microblaze/ffi.c +321 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/microblaze/ffitarget.h +53 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/microblaze/sysv.S +302 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/mips/ffi.c +1134 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/mips/ffitarget.h +244 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/mips/n32.S +663 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/mips/o32.S +504 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/moxie/eabi.S +101 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/moxie/ffi.c +285 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/moxie/ffitarget.h +52 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/nios2/ffi.c +304 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/nios2/ffitarget.h +52 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/nios2/sysv.S +136 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/or1k/ffi.c +328 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/or1k/ffitarget.h +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/or1k/sysv.S +107 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/pa/ffi.c +674 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/pa/ffitarget.h +80 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/pa/hpux32.S +370 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/pa/linux.S +380 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/powerpc/aix.S +566 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/powerpc/aix_closure.S +694 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/powerpc/darwin.S +378 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +571 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/powerpc/ffi.c +175 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1452 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +1153 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +105 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +923 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/powerpc/ffitarget.h +204 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/powerpc/linux64.S +291 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +564 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +397 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/powerpc/sysv.S +173 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/prep_cif.c +263 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/raw_api.c +267 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/riscv/ffi.c +481 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/riscv/ffitarget.h +69 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/riscv/sysv.S +293 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/s390/ffi.c +756 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/s390/ffitarget.h +70 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/s390/internal.h +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/s390/sysv.S +325 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/sh/ffi.c +717 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/sh/ffitarget.h +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/sh64/ffi.c +469 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/sh64/ffitarget.h +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/sh64/sysv.S +539 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/sparc/ffi.c +468 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/sparc/ffi64.c +608 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/sparc/ffitarget.h +81 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/sparc/internal.h +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/sparc/v8.S +443 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/sparc/v9.S +440 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/tile/ffi.c +355 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/tile/ffitarget.h +65 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/tile/tile.S +360 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/types.c +108 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/vax/elfbsd.S +195 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/vax/ffi.c +276 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/vax/ffitarget.h +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/x86/asmnames.h +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/x86/ffi.c +770 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/x86/ffi64.c +895 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/x86/ffitarget.h +160 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/x86/ffiw64.c +318 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/x86/internal.h +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/x86/internal64.h +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/x86/sysv.S +1138 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/x86/sysv_intel.S +995 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/x86/unix64.S +621 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/x86/win64.S +241 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/x86/win64_intel.S +238 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/xtensa/ffi.c +298 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/xtensa/ffitarget.h +53 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/src/xtensa/sysv.S +258 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/stamp-h.in +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/Makefile.am +122 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/Makefile.in +648 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/lib/libffi.exp +660 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +283 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +78 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +50 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +63 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1745 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2885 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +743 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +138 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +60 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +61 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +107 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/many.c +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +70 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +78 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +52 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +127 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +36 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +67 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +60 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +64 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +66 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +81 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +68 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +61 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +196 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +121 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +123 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +125 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +89 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +81 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +81 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +82 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +89 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +92 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +90 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +95 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +94 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +95 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +96 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +89 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +93 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +113 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +90 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +95 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +90 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +90 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +95 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +98 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +90 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +109 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +98 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +124 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +113 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +99 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +117 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +97 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +88 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +90 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +93 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +92 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +132 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +115 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +95 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +92 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +93 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +66 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double.c +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +61 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +105 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +61 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_args.c +70 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_float_double.c +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +86 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +86 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +142 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +44 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +114 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar_va.c +44 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +47 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort_va.c +44 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/err_bad_abi.c +36 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +138 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +343 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +152 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +161 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +134 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +121 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +110 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +111 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +111 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +112 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +131 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +111 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +131 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +131 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/problem1.c +90 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large.c +145 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large2.c +148 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +124 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +125 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +70 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +117 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +71 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +80 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +16 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +36 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +86 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +78 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +44 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +34 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +36 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi.bsd.mk +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi.darwin.mk +105 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi.gnu.mk +32 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi.mk +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi.vc.mk +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/libffi.vc64.mk +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/rbffi.h +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ext/ffi_c/rbffi_endian.h +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/ffi.gemspec +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/abstract_memory.rb +44 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/autopointer.rb +203 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/buffer.rb +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/callback.rb +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/data_converter.rb +67 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/enum.rb +296 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/errno.rb +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/ffi.rb +47 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/io.rb +62 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/library.rb +592 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/managedstruct.rb +84 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/memorypointer.rb +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/aarch64-freebsd12/types.conf +128 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/aarch64-linux/types.conf +104 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/arm-freebsd/types.conf +152 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/arm-linux/types.conf +132 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/i386-cygwin/types.conf +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/i386-darwin/types.conf +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/i386-freebsd/types.conf +152 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/i386-gnu/types.conf +107 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/i386-linux/types.conf +103 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/i386-netbsd/types.conf +126 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/i386-openbsd/types.conf +128 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/i386-solaris/types.conf +122 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/i386-windows/types.conf +52 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/ia64-linux/types.conf +104 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/mips-linux/types.conf +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/mips64-linux/types.conf +104 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/mips64el-linux/types.conf +104 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/mipsel-linux/types.conf +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/mipsisa32r6-linux/types.conf +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/mipsisa32r6el-linux/types.conf +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/mipsisa64r6-linux/types.conf +104 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/mipsisa64r6el-linux/types.conf +104 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/powerpc-aix/types.conf +180 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/powerpc-linux/types.conf +130 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/riscv64-linux/types.conf +104 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/s390-linux/types.conf +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/s390x-linux/types.conf +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/sparc-linux/types.conf +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/sparc-solaris/types.conf +128 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/sparc64-linux/types.conf +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/x86_64-darwin/types.conf +130 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/x86_64-linux/types.conf +132 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/x86_64-msys/types.conf +119 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform/x86_64-windows/types.conf +52 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/platform.rb +188 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/pointer.rb +167 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/struct.rb +316 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/struct_by_reference.rb +72 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/struct_layout.rb +96 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/struct_layout_builder.rb +227 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/tools/const_generator.rb +231 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/tools/generator.rb +105 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/tools/generator_task.rb +32 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/tools/struct_generator.rb +195 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/tools/types_generator.rb +137 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/types.rb +194 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/union.rb +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/variadic.rb +69 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi/version.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi.rb +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/lib/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/rakelib/ffi_gem_helper.rb +65 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/samples/getlogin.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/samples/getpid.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/samples/gettimeofday.rb +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/samples/hello.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/samples/inotify.rb +60 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/samples/pty.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.1/samples/qsort.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/History.rdoc +2403 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/README.rdoc +155 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/command_line_usage.rdoc +158 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/example/Rakefile1 +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/example/Rakefile2 +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/example/a.c +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/example/b.c +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/example/main.c +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/glossary.rdoc +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/jamis.rb +592 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/proto_rake.rdoc +127 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/rake.1 +156 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/rakefile.rdoc +622 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/rational.rdoc +151 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/exe/rake +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/application.rb +831 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/backtrace.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/clean.rb +78 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/cloneable.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/cpu_counter.rb +107 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/default_loader.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/dsl_definition.rb +195 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/early_time.rb +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/ext/core.rb +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/ext/string.rb +176 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/file_creation_task.rb +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/file_list.rb +435 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/file_task.rb +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/file_utils.rb +134 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/file_utils_ext.rb +134 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/invocation_chain.rb +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/invocation_exception_mixin.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/late_time.rb +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/linked_list.rb +112 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/loaders/makefile.rb +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/multi_task.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/name_space.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/packagetask.rb +222 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/phony.rb +16 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/private_reader.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/promise.rb +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/pseudo_status.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/rake_module.rb +67 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/rake_test_loader.rb +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/rule_recursion_overflow_error.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/scope.rb +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/task.rb +434 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/task_argument_error.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/task_arguments.rb +109 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/task_manager.rb +331 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/tasklib.rb +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/testtask.rb +189 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/thread_history_display.rb +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/thread_pool.rb +163 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/trace_output.rb +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/version.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/win32.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake.rb +71 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/rake.gemspec +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-3.10.0/LICENSE.md +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-3.10.0/README.md +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-3.10.0/lib/rspec/version.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-3.10.0/lib/rspec.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/Changelog.md +2327 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/LICENSE.md +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/README.md +384 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/exe/rspec +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/autorun.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/backtrace_formatter.rb +65 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/coordinator.rb +62 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/example_minimizer.rb +173 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/fork_runner.rb +138 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/server.rb +61 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/shell_command.rb +126 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/shell_runner.rb +73 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/utilities.rb +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/configuration.rb +2372 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/configuration_options.rb +233 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/did_you_mean.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/drb.rb +120 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/dsl.rb +98 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/example.rb +663 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/example_group.rb +901 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/example_status_persister.rb +235 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/filter_manager.rb +231 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/flat_map.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/base_bisect_formatter.rb +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/base_formatter.rb +70 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/base_text_formatter.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/bisect_drb_formatter.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/bisect_progress_formatter.rb +157 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/console_codes.rb +68 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/documentation_formatter.rb +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/exception_presenter.rb +521 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/failure_list_formatter.rb +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/helpers.rb +110 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/html_formatter.rb +153 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/html_printer.rb +414 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/html_snippet_extractor.rb +120 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/json_formatter.rb +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/profile_formatter.rb +68 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/progress_formatter.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/protocol.rb +182 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/snippet_extractor.rb +134 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/syntax_highlighter.rb +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters.rb +273 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/hooks.rb +646 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/invocations.rb +87 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/memoized_helpers.rb +554 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/metadata.rb +498 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/metadata_filter.rb +255 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/mocking_adapters/null.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/mocking_adapters/rr.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/notifications.rb +521 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/option_parser.rb +324 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/ordering.rb +158 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/output_wrapper.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/pending.rb +165 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/profiler.rb +34 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/project_initializer/spec/spec_helper.rb +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/project_initializer.rb +48 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/rake_task.rb +188 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/reporter.rb +265 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/ruby_project.rb +53 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/runner.rb +212 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/sandbox.rb +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/set.rb +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/shared_context.rb +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/shared_example_group.rb +271 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/shell_escape.rb +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/version.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/warnings.rb +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core/world.rb +277 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.10.1/lib/rspec/core.rb +186 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/Changelog.md +1240 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/LICENSE.md +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/README.md +320 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/block_snippet_extractor.rb +253 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/configuration.rb +230 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/expectation_target.rb +127 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/fail_with.rb +39 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/failure_aggregator.rb +212 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/handler.rb +182 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/minitest_integration.rb +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/syntax.rb +132 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/version.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations.rb +82 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/aliased_matcher.rb +116 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/all.rb +86 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/base_matcher.rb +193 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be.rb +191 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be_between.rb +77 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be_instance_of.rb +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be_kind_of.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be_within.rb +72 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/change.rb +428 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/compound.rb +276 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/contain_exactly.rb +302 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/count_expectation.rb +169 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/cover.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/eq.rb +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/eql.rb +34 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/equal.rb +81 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/exist.rb +90 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/has.rb +167 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/include.rb +206 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/match.rb +106 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/operators.rb +128 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/output.rb +200 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/raise_error.rb +259 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/respond_to.rb +200 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/satisfy.rb +60 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/yield.rb +355 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in.rb +53 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/composable.rb +171 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/dsl.rb +540 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/english_phrasing.rb +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +82 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/fail_matchers.rb +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/generated_descriptions.rb +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/matcher_delegator.rb +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/matcher_protocol.rb +99 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers.rb +1041 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/Changelog.md +1167 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/LICENSE.md +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/README.md +463 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/chain.rb +111 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/expect_chain_chain.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/expectation_chain.rb +50 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/proxy.rb +116 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/recorder.rb +295 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/stub_chain.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/stub_chain_chain.rb +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance.rb +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/argument_list_matcher.rb +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/argument_matchers.rb +322 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/configuration.rb +212 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/error_generator.rb +369 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/example_methods.rb +434 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/instance_method_stasher.rb +146 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/marshal_extension.rb +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/matchers/have_received.rb +134 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/matchers/receive.rb +132 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/matchers/receive_message_chain.rb +82 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/matchers/receive_messages.rb +77 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/message_chain.rb +87 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/message_expectation.rb +751 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/method_double.rb +288 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/method_reference.rb +202 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/minitest_integration.rb +68 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/mutate_const.rb +339 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/object_reference.rb +149 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/order_group.rb +81 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/proxy.rb +519 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/space.rb +238 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/standalone.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/syntax.rb +325 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/targets.rb +124 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/test_double.rb +171 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/verifying_double.rb +129 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/verifying_message_expectation.rb +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/verifying_proxy.rb +220 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/version.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks.rb +133 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/Changelog.md +332 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/LICENSE.md +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/README.md +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/caller_filter.rb +83 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/comparable_version.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/differ.rb +215 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/directory_maker.rb +63 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/encoded_string.rb +161 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/fuzzy_matcher.rb +48 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/hunk_generator.rb +47 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/matcher_definition.rb +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/method_signature_verifier.rb +438 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/mutex.rb +73 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/object_formatter.rb +275 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/recursive_const_methods.rb +76 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/reentrant_mutex.rb +61 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/ruby_features.rb +191 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/source/location.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/source/node.rb +110 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/source/token.rb +87 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/source.rb +85 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/deprecation_helpers.rb +48 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/diff_helpers.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/formatting_support.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/in_sub_process.rb +67 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/library_wide_checks.rb +150 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/shell_out.rb +105 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/stderr_splitter.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/string_matcher.rb +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/with_isolated_directory.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/spec.rb +82 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/version.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/warnings.rb +39 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support/with_keywords_when_needed.rb +33 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.10.2/lib/rspec/support.rb +154 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/CHANGELOG.md +406 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/CONTRIBUTING.md +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/Gemfile +32 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/Guardfile +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/LICENSE +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/README.md +584 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/Rakefile +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/UPGRADE.md +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/rack/typhoeus/middleware/params_decoder/helper.rb +76 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/rack/typhoeus/middleware/params_decoder.rb +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/rack/typhoeus.rb +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/adapters/faraday.rb +180 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/rails.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/config.rb +69 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/easy_factory.rb +180 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/errors/no_stub.rb +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/errors/typhoeus_error.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/errors.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/expectation.rb +217 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/hydra/addable.rb +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/hydra/before.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/hydra/block_connection.rb +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/hydra/cacheable.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/hydra/memoizable.rb +56 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/hydra/queueable.rb +83 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/hydra/runnable.rb +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/hydra/stubbable.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/hydra.rb +95 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/pool.rb +70 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/railtie.rb +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/request/actions.rb +125 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/request/before.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/request/block_connection.rb +52 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/request/cacheable.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/request/callbacks.rb +151 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/request/marshal.rb +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/request/memoizable.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/request/operations.rb +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/request/responseable.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/request/streamable.rb +34 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/request/stubbable.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/request.rb +221 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/response/cacheable.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/response/header.rb +105 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/response/informations.rb +248 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/response/status.rb +106 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/response.rb +68 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/version.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus.rb +143 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/perf/profile.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/perf/vs_nethttp.rb +64 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/rack/typhoeus/middleware/params_decoder/helper_spec.rb +156 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/rack/typhoeus/middleware/params_decoder_spec.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/spec_helper.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/support/localhost_server.rb +94 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/support/memory_cache.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/support/server.rb +116 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/adapters/faraday_spec.rb +339 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/cache/dalli_spec.rb +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/cache/redis_spec.rb +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/config_spec.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/easy_factory_spec.rb +143 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/errors/no_stub_spec.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/expectation_spec.rb +280 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/hydra/addable_spec.rb +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/hydra/before_spec.rb +98 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/hydra/block_connection_spec.rb +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/hydra/cacheable_spec.rb +88 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/hydra/memoizable_spec.rb +53 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/hydra/queueable_spec.rb +98 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/hydra/runnable_spec.rb +137 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/hydra/stubbable_spec.rb +48 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/hydra_spec.rb +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/pool_spec.rb +137 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/request/actions_spec.rb +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/request/before_spec.rb +93 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/request/block_connection_spec.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/request/cacheable_spec.rb +94 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/request/callbacks_spec.rb +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/request/marshal_spec.rb +60 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/request/memoizable_spec.rb +34 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/request/operations_spec.rb +101 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/request/responseable_spec.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/request/stubbable_spec.rb +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/request_spec.rb +232 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/response/header_spec.rb +147 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/response/informations_spec.rb +283 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/response/status_spec.rb +256 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus/response_spec.rb +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus_spec.rb +105 -0
- data/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/typhoeus.gemspec +25 -0
- data/vendor/bundle/ruby/2.7.0/specifications/diff-lcs-1.4.4.gemspec +50 -0
- data/vendor/bundle/ruby/2.7.0/specifications/ethon-0.14.0.gemspec +30 -0
- data/vendor/bundle/ruby/2.7.0/specifications/ffi-1.15.1.gemspec +44 -0
- data/vendor/bundle/ruby/2.7.0/specifications/rake-13.0.6.gemspec +26 -0
- data/vendor/bundle/ruby/2.7.0/specifications/rspec-3.10.0.gemspec +39 -0
- data/vendor/bundle/ruby/2.7.0/specifications/rspec-core-3.10.1.gemspec +53 -0
- data/vendor/bundle/ruby/2.7.0/specifications/rspec-expectations-3.10.1.gemspec +44 -0
- data/vendor/bundle/ruby/2.7.0/specifications/rspec-mocks-3.10.2.gemspec +44 -0
- data/vendor/bundle/ruby/2.7.0/specifications/rspec-support-3.10.2.gemspec +36 -0
- data/vendor/bundle/ruby/2.7.0/specifications/typhoeus-1.4.0.gemspec +30 -0
- metadata +1111 -11
- data/lib/svix/api/organization_api.rb +0 -152
- data/lib/svix/api/organization_settings_api.rb +0 -79
- data/lib/svix/models/export_organization_out.rb +0 -259
- data/lib/svix/models/import_organization_in.rb +0 -257
- data/lib/svix/models/message_attempt_failed_event.rb +0 -251
- data/lib/svix/models/portal_settings_out.rb +0 -297
@@ -0,0 +1,831 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require "optparse"
|
3
|
+
|
4
|
+
require "rake/task_manager"
|
5
|
+
require "rake/file_list"
|
6
|
+
require "rake/thread_pool"
|
7
|
+
require "rake/thread_history_display"
|
8
|
+
require "rake/trace_output"
|
9
|
+
require "rake/win32"
|
10
|
+
|
11
|
+
module Rake
|
12
|
+
|
13
|
+
CommandLineOptionError = Class.new(StandardError)
|
14
|
+
|
15
|
+
##
|
16
|
+
# Rake main application object. When invoking +rake+ from the
|
17
|
+
# command line, a Rake::Application object is created and run.
|
18
|
+
|
19
|
+
class Application
|
20
|
+
include TaskManager
|
21
|
+
include TraceOutput
|
22
|
+
|
23
|
+
# The name of the application (typically 'rake')
|
24
|
+
attr_reader :name
|
25
|
+
|
26
|
+
# The original directory where rake was invoked.
|
27
|
+
attr_reader :original_dir
|
28
|
+
|
29
|
+
# Name of the actual rakefile used.
|
30
|
+
attr_reader :rakefile
|
31
|
+
|
32
|
+
# Number of columns on the terminal
|
33
|
+
attr_accessor :terminal_columns
|
34
|
+
|
35
|
+
# List of the top level task names (task names from the command line).
|
36
|
+
attr_reader :top_level_tasks
|
37
|
+
|
38
|
+
# Override the detected TTY output state (mostly for testing)
|
39
|
+
attr_writer :tty_output
|
40
|
+
|
41
|
+
DEFAULT_RAKEFILES = [
|
42
|
+
"rakefile",
|
43
|
+
"Rakefile",
|
44
|
+
"rakefile.rb",
|
45
|
+
"Rakefile.rb"
|
46
|
+
].freeze
|
47
|
+
|
48
|
+
# Initialize a Rake::Application object.
|
49
|
+
def initialize
|
50
|
+
super
|
51
|
+
@name = "rake"
|
52
|
+
@rakefiles = DEFAULT_RAKEFILES.dup
|
53
|
+
@rakefile = nil
|
54
|
+
@pending_imports = []
|
55
|
+
@imported = []
|
56
|
+
@loaders = {}
|
57
|
+
@default_loader = Rake::DefaultLoader.new
|
58
|
+
@original_dir = Dir.pwd
|
59
|
+
@top_level_tasks = []
|
60
|
+
add_loader("rb", DefaultLoader.new)
|
61
|
+
add_loader("rf", DefaultLoader.new)
|
62
|
+
add_loader("rake", DefaultLoader.new)
|
63
|
+
@tty_output = STDOUT.tty?
|
64
|
+
@terminal_columns = ENV["RAKE_COLUMNS"].to_i
|
65
|
+
|
66
|
+
set_default_options
|
67
|
+
end
|
68
|
+
|
69
|
+
# Run the Rake application. The run method performs the following
|
70
|
+
# three steps:
|
71
|
+
#
|
72
|
+
# * Initialize the command line options (+init+).
|
73
|
+
# * Define the tasks (+load_rakefile+).
|
74
|
+
# * Run the top level tasks (+top_level+).
|
75
|
+
#
|
76
|
+
# If you wish to build a custom rake command, you should call
|
77
|
+
# +init+ on your application. Then define any tasks. Finally,
|
78
|
+
# call +top_level+ to run your top level tasks.
|
79
|
+
def run(argv = ARGV)
|
80
|
+
standard_exception_handling do
|
81
|
+
init "rake", argv
|
82
|
+
load_rakefile
|
83
|
+
top_level
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
# Initialize the command line parameters and app name.
|
88
|
+
def init(app_name="rake", argv = ARGV)
|
89
|
+
standard_exception_handling do
|
90
|
+
@name = app_name
|
91
|
+
begin
|
92
|
+
args = handle_options argv
|
93
|
+
rescue ArgumentError
|
94
|
+
# Backward compatibility for capistrano
|
95
|
+
args = handle_options
|
96
|
+
end
|
97
|
+
collect_command_line_tasks(args)
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
# Find the rakefile and then load it and any pending imports.
|
102
|
+
def load_rakefile
|
103
|
+
standard_exception_handling do
|
104
|
+
raw_load_rakefile
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
# Run the top level tasks of a Rake application.
|
109
|
+
def top_level
|
110
|
+
run_with_threads do
|
111
|
+
if options.show_tasks
|
112
|
+
display_tasks_and_comments
|
113
|
+
elsif options.show_prereqs
|
114
|
+
display_prerequisites
|
115
|
+
else
|
116
|
+
top_level_tasks.each { |task_name| invoke_task(task_name) }
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
121
|
+
# Run the given block with the thread startup and shutdown.
|
122
|
+
def run_with_threads
|
123
|
+
thread_pool.gather_history if options.job_stats == :history
|
124
|
+
|
125
|
+
yield
|
126
|
+
|
127
|
+
thread_pool.join
|
128
|
+
if options.job_stats
|
129
|
+
stats = thread_pool.statistics
|
130
|
+
puts "Maximum active threads: #{stats[:max_active_threads]} + main"
|
131
|
+
puts "Total threads in play: #{stats[:total_threads_in_play]} + main"
|
132
|
+
end
|
133
|
+
ThreadHistoryDisplay.new(thread_pool.history).show if
|
134
|
+
options.job_stats == :history
|
135
|
+
end
|
136
|
+
|
137
|
+
# Add a loader to handle imported files ending in the extension
|
138
|
+
# +ext+.
|
139
|
+
def add_loader(ext, loader)
|
140
|
+
ext = ".#{ext}" unless ext =~ /^\./
|
141
|
+
@loaders[ext] = loader
|
142
|
+
end
|
143
|
+
|
144
|
+
# Application options from the command line
|
145
|
+
def options
|
146
|
+
@options ||= OpenStruct.new
|
147
|
+
end
|
148
|
+
|
149
|
+
# Return the thread pool used for multithreaded processing.
|
150
|
+
def thread_pool # :nodoc:
|
151
|
+
@thread_pool ||= ThreadPool.new(options.thread_pool_size || Rake.suggested_thread_count-1)
|
152
|
+
end
|
153
|
+
|
154
|
+
# internal ----------------------------------------------------------------
|
155
|
+
|
156
|
+
# Invokes a task with arguments that are extracted from +task_string+
|
157
|
+
def invoke_task(task_string) # :nodoc:
|
158
|
+
name, args = parse_task_string(task_string)
|
159
|
+
t = self[name]
|
160
|
+
t.invoke(*args)
|
161
|
+
end
|
162
|
+
|
163
|
+
def parse_task_string(string) # :nodoc:
|
164
|
+
/^([^\[]+)(?:\[(.*)\])$/ =~ string.to_s
|
165
|
+
|
166
|
+
name = $1
|
167
|
+
remaining_args = $2
|
168
|
+
|
169
|
+
return string, [] unless name
|
170
|
+
return name, [] if remaining_args.empty?
|
171
|
+
|
172
|
+
args = []
|
173
|
+
|
174
|
+
begin
|
175
|
+
/\s*((?:[^\\,]|\\.)*?)\s*(?:,\s*(.*))?$/ =~ remaining_args
|
176
|
+
|
177
|
+
remaining_args = $2
|
178
|
+
args << $1.gsub(/\\(.)/, '\1')
|
179
|
+
end while remaining_args
|
180
|
+
|
181
|
+
return name, args
|
182
|
+
end
|
183
|
+
|
184
|
+
# Provide standard exception handling for the given block.
|
185
|
+
def standard_exception_handling # :nodoc:
|
186
|
+
yield
|
187
|
+
rescue SystemExit
|
188
|
+
# Exit silently with current status
|
189
|
+
raise
|
190
|
+
rescue OptionParser::InvalidOption => ex
|
191
|
+
$stderr.puts ex.message
|
192
|
+
exit(false)
|
193
|
+
rescue Exception => ex
|
194
|
+
# Exit with error message
|
195
|
+
display_error_message(ex)
|
196
|
+
exit_because_of_exception(ex)
|
197
|
+
end
|
198
|
+
|
199
|
+
# Exit the program because of an unhandled exception.
|
200
|
+
# (may be overridden by subclasses)
|
201
|
+
def exit_because_of_exception(ex) # :nodoc:
|
202
|
+
exit(false)
|
203
|
+
end
|
204
|
+
|
205
|
+
# Display the error message that caused the exception.
|
206
|
+
def display_error_message(ex) # :nodoc:
|
207
|
+
trace "#{name} aborted!"
|
208
|
+
display_exception_details(ex)
|
209
|
+
trace "Tasks: #{ex.chain}" if has_chain?(ex)
|
210
|
+
trace "(See full trace by running task with --trace)" unless
|
211
|
+
options.backtrace
|
212
|
+
end
|
213
|
+
|
214
|
+
def display_exception_details(ex) # :nodoc:
|
215
|
+
display_exception_details_seen << ex
|
216
|
+
|
217
|
+
display_exception_message_details(ex)
|
218
|
+
display_exception_backtrace(ex)
|
219
|
+
display_cause_details(ex.cause) if has_cause?(ex)
|
220
|
+
end
|
221
|
+
|
222
|
+
def display_cause_details(ex) # :nodoc:
|
223
|
+
return if display_exception_details_seen.include? ex
|
224
|
+
|
225
|
+
trace "\nCaused by:"
|
226
|
+
display_exception_details(ex)
|
227
|
+
end
|
228
|
+
|
229
|
+
def display_exception_details_seen # :nodoc:
|
230
|
+
Thread.current[:rake_display_exception_details_seen] ||= []
|
231
|
+
end
|
232
|
+
|
233
|
+
def has_cause?(ex) # :nodoc:
|
234
|
+
ex.respond_to?(:cause) && ex.cause
|
235
|
+
end
|
236
|
+
|
237
|
+
def display_exception_message_details(ex) # :nodoc:
|
238
|
+
if ex.instance_of?(RuntimeError)
|
239
|
+
trace ex.message
|
240
|
+
else
|
241
|
+
trace "#{ex.class.name}: #{ex.message}"
|
242
|
+
end
|
243
|
+
end
|
244
|
+
|
245
|
+
def display_exception_backtrace(ex) # :nodoc:
|
246
|
+
if options.backtrace
|
247
|
+
trace ex.backtrace.join("\n")
|
248
|
+
else
|
249
|
+
trace Backtrace.collapse(ex.backtrace).join("\n")
|
250
|
+
end
|
251
|
+
end
|
252
|
+
|
253
|
+
# Warn about deprecated usage.
|
254
|
+
#
|
255
|
+
# Example:
|
256
|
+
# Rake.application.deprecate("import", "Rake.import", caller.first)
|
257
|
+
#
|
258
|
+
def deprecate(old_usage, new_usage, call_site) # :nodoc:
|
259
|
+
unless options.ignore_deprecate
|
260
|
+
$stderr.puts "WARNING: '#{old_usage}' is deprecated. " +
|
261
|
+
"Please use '#{new_usage}' instead.\n" +
|
262
|
+
" at #{call_site}"
|
263
|
+
end
|
264
|
+
end
|
265
|
+
|
266
|
+
# Does the exception have a task invocation chain?
|
267
|
+
def has_chain?(exception) # :nodoc:
|
268
|
+
exception.respond_to?(:chain) && exception.chain
|
269
|
+
end
|
270
|
+
private :has_chain?
|
271
|
+
|
272
|
+
# True if one of the files in RAKEFILES is in the current directory.
|
273
|
+
# If a match is found, it is copied into @rakefile.
|
274
|
+
def have_rakefile # :nodoc:
|
275
|
+
@rakefiles.each do |fn|
|
276
|
+
if File.exist?(fn)
|
277
|
+
others = FileList.glob(fn, File::FNM_CASEFOLD)
|
278
|
+
return others.size == 1 ? others.first : fn
|
279
|
+
elsif fn == ""
|
280
|
+
return fn
|
281
|
+
end
|
282
|
+
end
|
283
|
+
return nil
|
284
|
+
end
|
285
|
+
|
286
|
+
# True if we are outputting to TTY, false otherwise
|
287
|
+
def tty_output? # :nodoc:
|
288
|
+
@tty_output
|
289
|
+
end
|
290
|
+
|
291
|
+
# We will truncate output if we are outputting to a TTY or if we've been
|
292
|
+
# given an explicit column width to honor
|
293
|
+
def truncate_output? # :nodoc:
|
294
|
+
tty_output? || @terminal_columns.nonzero?
|
295
|
+
end
|
296
|
+
|
297
|
+
# Display the tasks and comments.
|
298
|
+
def display_tasks_and_comments # :nodoc:
|
299
|
+
displayable_tasks = tasks.select { |t|
|
300
|
+
(options.show_all_tasks || t.comment) &&
|
301
|
+
t.name =~ options.show_task_pattern
|
302
|
+
}
|
303
|
+
case options.show_tasks
|
304
|
+
when :tasks
|
305
|
+
width = displayable_tasks.map { |t| t.name_with_args.length }.max || 10
|
306
|
+
if truncate_output?
|
307
|
+
max_column = terminal_width - name.size - width - 7
|
308
|
+
else
|
309
|
+
max_column = nil
|
310
|
+
end
|
311
|
+
|
312
|
+
displayable_tasks.each do |t|
|
313
|
+
printf("#{name} %-#{width}s # %s\n",
|
314
|
+
t.name_with_args,
|
315
|
+
max_column ? truncate(t.comment, max_column) : t.comment)
|
316
|
+
end
|
317
|
+
when :describe
|
318
|
+
displayable_tasks.each do |t|
|
319
|
+
puts "#{name} #{t.name_with_args}"
|
320
|
+
comment = t.full_comment || ""
|
321
|
+
comment.split("\n").each do |line|
|
322
|
+
puts " #{line}"
|
323
|
+
end
|
324
|
+
puts
|
325
|
+
end
|
326
|
+
when :lines
|
327
|
+
displayable_tasks.each do |t|
|
328
|
+
t.locations.each do |loc|
|
329
|
+
printf "#{name} %-30s %s\n", t.name_with_args, loc
|
330
|
+
end
|
331
|
+
end
|
332
|
+
else
|
333
|
+
fail "Unknown show task mode: '#{options.show_tasks}'"
|
334
|
+
end
|
335
|
+
end
|
336
|
+
|
337
|
+
def terminal_width # :nodoc:
|
338
|
+
if @terminal_columns.nonzero?
|
339
|
+
result = @terminal_columns
|
340
|
+
else
|
341
|
+
result = unix? ? dynamic_width : 80
|
342
|
+
end
|
343
|
+
(result < 10) ? 80 : result
|
344
|
+
rescue
|
345
|
+
80
|
346
|
+
end
|
347
|
+
|
348
|
+
# Calculate the dynamic width of the
|
349
|
+
def dynamic_width # :nodoc:
|
350
|
+
@dynamic_width ||= (dynamic_width_stty.nonzero? || dynamic_width_tput)
|
351
|
+
end
|
352
|
+
|
353
|
+
def dynamic_width_stty # :nodoc:
|
354
|
+
%x{stty size 2>/dev/null}.split[1].to_i
|
355
|
+
end
|
356
|
+
|
357
|
+
def dynamic_width_tput # :nodoc:
|
358
|
+
%x{tput cols 2>/dev/null}.to_i
|
359
|
+
end
|
360
|
+
|
361
|
+
def unix? # :nodoc:
|
362
|
+
RbConfig::CONFIG["host_os"] =~
|
363
|
+
/(aix|darwin|linux|(net|free|open)bsd|cygwin|solaris|irix|hpux)/i
|
364
|
+
end
|
365
|
+
|
366
|
+
def windows? # :nodoc:
|
367
|
+
Win32.windows?
|
368
|
+
end
|
369
|
+
|
370
|
+
def truncate(string, width) # :nodoc:
|
371
|
+
if string.nil?
|
372
|
+
""
|
373
|
+
elsif string.length <= width
|
374
|
+
string
|
375
|
+
else
|
376
|
+
(string[0, width - 3] || "") + "..."
|
377
|
+
end
|
378
|
+
end
|
379
|
+
|
380
|
+
# Display the tasks and prerequisites
|
381
|
+
def display_prerequisites # :nodoc:
|
382
|
+
tasks.each do |t|
|
383
|
+
puts "#{name} #{t.name}"
|
384
|
+
t.prerequisites.each { |pre| puts " #{pre}" }
|
385
|
+
end
|
386
|
+
end
|
387
|
+
|
388
|
+
def trace(*strings) # :nodoc:
|
389
|
+
options.trace_output ||= $stderr
|
390
|
+
trace_on(options.trace_output, *strings)
|
391
|
+
end
|
392
|
+
|
393
|
+
def sort_options(options) # :nodoc:
|
394
|
+
options.sort_by { |opt|
|
395
|
+
opt.select { |o| o.is_a?(String) && o =~ /^-/ }.map(&:downcase).sort.reverse
|
396
|
+
}
|
397
|
+
end
|
398
|
+
private :sort_options
|
399
|
+
|
400
|
+
# A list of all the standard options used in rake, suitable for
|
401
|
+
# passing to OptionParser.
|
402
|
+
def standard_rake_options # :nodoc:
|
403
|
+
sort_options(
|
404
|
+
[
|
405
|
+
["--all", "-A",
|
406
|
+
"Show all tasks, even uncommented ones (in combination with -T or -D)",
|
407
|
+
lambda { |value|
|
408
|
+
options.show_all_tasks = value
|
409
|
+
}
|
410
|
+
],
|
411
|
+
["--backtrace=[OUT]",
|
412
|
+
"Enable full backtrace. OUT can be stderr (default) or stdout.",
|
413
|
+
lambda { |value|
|
414
|
+
options.backtrace = true
|
415
|
+
select_trace_output(options, "backtrace", value)
|
416
|
+
}
|
417
|
+
],
|
418
|
+
["--build-all", "-B",
|
419
|
+
"Build all prerequisites, including those which are up-to-date.",
|
420
|
+
lambda { |value|
|
421
|
+
options.build_all = true
|
422
|
+
}
|
423
|
+
],
|
424
|
+
["--comments",
|
425
|
+
"Show commented tasks only",
|
426
|
+
lambda { |value|
|
427
|
+
options.show_all_tasks = !value
|
428
|
+
}
|
429
|
+
],
|
430
|
+
["--describe", "-D [PATTERN]",
|
431
|
+
"Describe the tasks (matching optional PATTERN), then exit.",
|
432
|
+
lambda { |value|
|
433
|
+
select_tasks_to_show(options, :describe, value)
|
434
|
+
}
|
435
|
+
],
|
436
|
+
["--directory", "-C [DIRECTORY]",
|
437
|
+
"Change to DIRECTORY before doing anything.",
|
438
|
+
lambda { |value|
|
439
|
+
Dir.chdir value
|
440
|
+
@original_dir = Dir.pwd
|
441
|
+
}
|
442
|
+
],
|
443
|
+
["--dry-run", "-n",
|
444
|
+
"Do a dry run without executing actions.",
|
445
|
+
lambda { |value|
|
446
|
+
Rake.verbose(true)
|
447
|
+
Rake.nowrite(true)
|
448
|
+
options.dryrun = true
|
449
|
+
options.trace = true
|
450
|
+
}
|
451
|
+
],
|
452
|
+
["--execute", "-e CODE",
|
453
|
+
"Execute some Ruby code and exit.",
|
454
|
+
lambda { |value|
|
455
|
+
eval(value)
|
456
|
+
exit
|
457
|
+
}
|
458
|
+
],
|
459
|
+
["--execute-print", "-p CODE",
|
460
|
+
"Execute some Ruby code, print the result, then exit.",
|
461
|
+
lambda { |value|
|
462
|
+
puts eval(value)
|
463
|
+
exit
|
464
|
+
}
|
465
|
+
],
|
466
|
+
["--execute-continue", "-E CODE",
|
467
|
+
"Execute some Ruby code, " +
|
468
|
+
"then continue with normal task processing.",
|
469
|
+
lambda { |value| eval(value) }
|
470
|
+
],
|
471
|
+
["--jobs", "-j [NUMBER]",
|
472
|
+
"Specifies the maximum number of tasks to execute in parallel. " +
|
473
|
+
"(default is number of CPU cores + 4)",
|
474
|
+
lambda { |value|
|
475
|
+
if value.nil? || value == ""
|
476
|
+
value = Float::INFINITY
|
477
|
+
elsif value =~ /^\d+$/
|
478
|
+
value = value.to_i
|
479
|
+
else
|
480
|
+
value = Rake.suggested_thread_count
|
481
|
+
end
|
482
|
+
value = 1 if value < 1
|
483
|
+
options.thread_pool_size = value - 1
|
484
|
+
}
|
485
|
+
],
|
486
|
+
["--job-stats [LEVEL]",
|
487
|
+
"Display job statistics. " +
|
488
|
+
"LEVEL=history displays a complete job list",
|
489
|
+
lambda { |value|
|
490
|
+
if value =~ /^history/i
|
491
|
+
options.job_stats = :history
|
492
|
+
else
|
493
|
+
options.job_stats = true
|
494
|
+
end
|
495
|
+
}
|
496
|
+
],
|
497
|
+
["--libdir", "-I LIBDIR",
|
498
|
+
"Include LIBDIR in the search path for required modules.",
|
499
|
+
lambda { |value| $:.push(value) }
|
500
|
+
],
|
501
|
+
["--multitask", "-m",
|
502
|
+
"Treat all tasks as multitasks.",
|
503
|
+
lambda { |value| options.always_multitask = true }
|
504
|
+
],
|
505
|
+
["--no-search", "--nosearch",
|
506
|
+
"-N", "Do not search parent directories for the Rakefile.",
|
507
|
+
lambda { |value| options.nosearch = true }
|
508
|
+
],
|
509
|
+
["--prereqs", "-P",
|
510
|
+
"Display the tasks and dependencies, then exit.",
|
511
|
+
lambda { |value| options.show_prereqs = true }
|
512
|
+
],
|
513
|
+
["--quiet", "-q",
|
514
|
+
"Do not log messages to standard output.",
|
515
|
+
lambda { |value| Rake.verbose(false) }
|
516
|
+
],
|
517
|
+
["--rakefile", "-f [FILENAME]",
|
518
|
+
"Use FILENAME as the rakefile to search for.",
|
519
|
+
lambda { |value|
|
520
|
+
value ||= ""
|
521
|
+
@rakefiles.clear
|
522
|
+
@rakefiles << value
|
523
|
+
}
|
524
|
+
],
|
525
|
+
["--rakelibdir", "--rakelib", "-R RAKELIBDIR",
|
526
|
+
"Auto-import any .rake files in RAKELIBDIR. " +
|
527
|
+
"(default is 'rakelib')",
|
528
|
+
lambda { |value|
|
529
|
+
options.rakelib = value.split(File::PATH_SEPARATOR)
|
530
|
+
}
|
531
|
+
],
|
532
|
+
["--require", "-r MODULE",
|
533
|
+
"Require MODULE before executing rakefile.",
|
534
|
+
lambda { |value|
|
535
|
+
begin
|
536
|
+
require value
|
537
|
+
rescue LoadError => ex
|
538
|
+
begin
|
539
|
+
rake_require value
|
540
|
+
rescue LoadError
|
541
|
+
raise ex
|
542
|
+
end
|
543
|
+
end
|
544
|
+
}
|
545
|
+
],
|
546
|
+
["--rules",
|
547
|
+
"Trace the rules resolution.",
|
548
|
+
lambda { |value| options.trace_rules = true }
|
549
|
+
],
|
550
|
+
["--silent", "-s",
|
551
|
+
"Like --quiet, but also suppresses the " +
|
552
|
+
"'in directory' announcement.",
|
553
|
+
lambda { |value|
|
554
|
+
Rake.verbose(false)
|
555
|
+
options.silent = true
|
556
|
+
}
|
557
|
+
],
|
558
|
+
["--suppress-backtrace PATTERN",
|
559
|
+
"Suppress backtrace lines matching regexp PATTERN. " +
|
560
|
+
"Ignored if --trace is on.",
|
561
|
+
lambda { |value|
|
562
|
+
options.suppress_backtrace_pattern = Regexp.new(value)
|
563
|
+
}
|
564
|
+
],
|
565
|
+
["--system", "-g",
|
566
|
+
"Using system wide (global) rakefiles " +
|
567
|
+
"(usually '~/.rake/*.rake').",
|
568
|
+
lambda { |value| options.load_system = true }
|
569
|
+
],
|
570
|
+
["--no-system", "--nosystem", "-G",
|
571
|
+
"Use standard project Rakefile search paths, " +
|
572
|
+
"ignore system wide rakefiles.",
|
573
|
+
lambda { |value| options.ignore_system = true }
|
574
|
+
],
|
575
|
+
["--tasks", "-T [PATTERN]",
|
576
|
+
"Display the tasks (matching optional PATTERN) " +
|
577
|
+
"with descriptions, then exit. " +
|
578
|
+
"-AT combination displays all of tasks contained no description.",
|
579
|
+
lambda { |value|
|
580
|
+
select_tasks_to_show(options, :tasks, value)
|
581
|
+
}
|
582
|
+
],
|
583
|
+
["--trace=[OUT]", "-t",
|
584
|
+
"Turn on invoke/execute tracing, enable full backtrace. " +
|
585
|
+
"OUT can be stderr (default) or stdout.",
|
586
|
+
lambda { |value|
|
587
|
+
options.trace = true
|
588
|
+
options.backtrace = true
|
589
|
+
select_trace_output(options, "trace", value)
|
590
|
+
Rake.verbose(true)
|
591
|
+
}
|
592
|
+
],
|
593
|
+
["--verbose", "-v",
|
594
|
+
"Log message to standard output.",
|
595
|
+
lambda { |value| Rake.verbose(true) }
|
596
|
+
],
|
597
|
+
["--version", "-V",
|
598
|
+
"Display the program version.",
|
599
|
+
lambda { |value|
|
600
|
+
puts "rake, version #{Rake::VERSION}"
|
601
|
+
exit
|
602
|
+
}
|
603
|
+
],
|
604
|
+
["--where", "-W [PATTERN]",
|
605
|
+
"Describe the tasks (matching optional PATTERN), then exit.",
|
606
|
+
lambda { |value|
|
607
|
+
select_tasks_to_show(options, :lines, value)
|
608
|
+
options.show_all_tasks = true
|
609
|
+
}
|
610
|
+
],
|
611
|
+
["--no-deprecation-warnings", "-X",
|
612
|
+
"Disable the deprecation warnings.",
|
613
|
+
lambda { |value|
|
614
|
+
options.ignore_deprecate = true
|
615
|
+
}
|
616
|
+
],
|
617
|
+
])
|
618
|
+
end
|
619
|
+
|
620
|
+
def select_tasks_to_show(options, show_tasks, value) # :nodoc:
|
621
|
+
options.show_tasks = show_tasks
|
622
|
+
options.show_task_pattern = Regexp.new(value || "")
|
623
|
+
Rake::TaskManager.record_task_metadata = true
|
624
|
+
end
|
625
|
+
private :select_tasks_to_show
|
626
|
+
|
627
|
+
def select_trace_output(options, trace_option, value) # :nodoc:
|
628
|
+
value = value.strip unless value.nil?
|
629
|
+
case value
|
630
|
+
when "stdout"
|
631
|
+
options.trace_output = $stdout
|
632
|
+
when "stderr", nil
|
633
|
+
options.trace_output = $stderr
|
634
|
+
else
|
635
|
+
fail CommandLineOptionError,
|
636
|
+
"Unrecognized --#{trace_option} option '#{value}'"
|
637
|
+
end
|
638
|
+
end
|
639
|
+
private :select_trace_output
|
640
|
+
|
641
|
+
# Read and handle the command line options. Returns the command line
|
642
|
+
# arguments that we didn't understand, which should (in theory) be just
|
643
|
+
# task names and env vars.
|
644
|
+
def handle_options(argv) # :nodoc:
|
645
|
+
set_default_options
|
646
|
+
|
647
|
+
OptionParser.new do |opts|
|
648
|
+
opts.banner = "#{Rake.application.name} [-f rakefile] {options} targets..."
|
649
|
+
opts.separator ""
|
650
|
+
opts.separator "Options are ..."
|
651
|
+
|
652
|
+
opts.on_tail("-h", "--help", "-H", "Display this help message.") do
|
653
|
+
puts opts
|
654
|
+
exit
|
655
|
+
end
|
656
|
+
|
657
|
+
standard_rake_options.each { |args| opts.on(*args) }
|
658
|
+
opts.environment("RAKEOPT")
|
659
|
+
end.parse(argv)
|
660
|
+
end
|
661
|
+
|
662
|
+
# Similar to the regular Ruby +require+ command, but will check
|
663
|
+
# for *.rake files in addition to *.rb files.
|
664
|
+
def rake_require(file_name, paths=$LOAD_PATH, loaded=$") # :nodoc:
|
665
|
+
fn = file_name + ".rake"
|
666
|
+
return false if loaded.include?(fn)
|
667
|
+
paths.each do |path|
|
668
|
+
full_path = File.join(path, fn)
|
669
|
+
if File.exist?(full_path)
|
670
|
+
Rake.load_rakefile(full_path)
|
671
|
+
loaded << fn
|
672
|
+
return true
|
673
|
+
end
|
674
|
+
end
|
675
|
+
fail LoadError, "Can't find #{file_name}"
|
676
|
+
end
|
677
|
+
|
678
|
+
def find_rakefile_location # :nodoc:
|
679
|
+
here = Dir.pwd
|
680
|
+
until (fn = have_rakefile)
|
681
|
+
Dir.chdir("..")
|
682
|
+
return nil if Dir.pwd == here || options.nosearch
|
683
|
+
here = Dir.pwd
|
684
|
+
end
|
685
|
+
[fn, here]
|
686
|
+
ensure
|
687
|
+
Dir.chdir(Rake.original_dir)
|
688
|
+
end
|
689
|
+
|
690
|
+
def print_rakefile_directory(location) # :nodoc:
|
691
|
+
$stderr.puts "(in #{Dir.pwd})" unless
|
692
|
+
options.silent or original_dir == location
|
693
|
+
end
|
694
|
+
|
695
|
+
def raw_load_rakefile # :nodoc:
|
696
|
+
rakefile, location = find_rakefile_location
|
697
|
+
if (!options.ignore_system) &&
|
698
|
+
(options.load_system || rakefile.nil?) &&
|
699
|
+
system_dir && File.directory?(system_dir)
|
700
|
+
print_rakefile_directory(location)
|
701
|
+
glob("#{system_dir}/*.rake") do |name|
|
702
|
+
add_import name
|
703
|
+
end
|
704
|
+
else
|
705
|
+
fail "No Rakefile found (looking for: #{@rakefiles.join(', ')})" if
|
706
|
+
rakefile.nil?
|
707
|
+
@rakefile = rakefile
|
708
|
+
Dir.chdir(location)
|
709
|
+
print_rakefile_directory(location)
|
710
|
+
Rake.load_rakefile(File.expand_path(@rakefile)) if
|
711
|
+
@rakefile && @rakefile != ""
|
712
|
+
options.rakelib.each do |rlib|
|
713
|
+
glob("#{rlib}/*.rake") do |name|
|
714
|
+
add_import name
|
715
|
+
end
|
716
|
+
end
|
717
|
+
end
|
718
|
+
load_imports
|
719
|
+
end
|
720
|
+
|
721
|
+
def glob(path, &block) # :nodoc:
|
722
|
+
FileList.glob(path.tr("\\", "/")).each(&block)
|
723
|
+
end
|
724
|
+
private :glob
|
725
|
+
|
726
|
+
# The directory path containing the system wide rakefiles.
|
727
|
+
def system_dir # :nodoc:
|
728
|
+
@system_dir ||=
|
729
|
+
begin
|
730
|
+
if ENV["RAKE_SYSTEM"]
|
731
|
+
ENV["RAKE_SYSTEM"]
|
732
|
+
else
|
733
|
+
standard_system_dir
|
734
|
+
end
|
735
|
+
end
|
736
|
+
end
|
737
|
+
|
738
|
+
# The standard directory containing system wide rake files.
|
739
|
+
if Win32.windows?
|
740
|
+
def standard_system_dir #:nodoc:
|
741
|
+
Win32.win32_system_dir
|
742
|
+
end
|
743
|
+
else
|
744
|
+
def standard_system_dir #:nodoc:
|
745
|
+
File.join(File.expand_path("~"), ".rake")
|
746
|
+
end
|
747
|
+
end
|
748
|
+
private :standard_system_dir
|
749
|
+
|
750
|
+
# Collect the list of tasks on the command line. If no tasks are
|
751
|
+
# given, return a list containing only the default task.
|
752
|
+
# Environmental assignments are processed at this time as well.
|
753
|
+
#
|
754
|
+
# `args` is the list of arguments to peruse to get the list of tasks.
|
755
|
+
# It should be the command line that was given to rake, less any
|
756
|
+
# recognised command-line options, which OptionParser.parse will
|
757
|
+
# have taken care of already.
|
758
|
+
def collect_command_line_tasks(args) # :nodoc:
|
759
|
+
@top_level_tasks = []
|
760
|
+
args.each do |arg|
|
761
|
+
if arg =~ /^(\w+)=(.*)$/m
|
762
|
+
ENV[$1] = $2
|
763
|
+
else
|
764
|
+
@top_level_tasks << arg unless arg =~ /^-/
|
765
|
+
end
|
766
|
+
end
|
767
|
+
@top_level_tasks.push(default_task_name) if @top_level_tasks.empty?
|
768
|
+
end
|
769
|
+
|
770
|
+
# Default task name ("default").
|
771
|
+
# (May be overridden by subclasses)
|
772
|
+
def default_task_name # :nodoc:
|
773
|
+
"default"
|
774
|
+
end
|
775
|
+
|
776
|
+
# Add a file to the list of files to be imported.
|
777
|
+
def add_import(fn) # :nodoc:
|
778
|
+
@pending_imports << fn
|
779
|
+
end
|
780
|
+
|
781
|
+
# Load the pending list of imported files.
|
782
|
+
def load_imports # :nodoc:
|
783
|
+
while fn = @pending_imports.shift
|
784
|
+
next if @imported.member?(fn)
|
785
|
+
fn_task = lookup(fn) and fn_task.invoke
|
786
|
+
ext = File.extname(fn)
|
787
|
+
loader = @loaders[ext] || @default_loader
|
788
|
+
loader.load(fn)
|
789
|
+
if fn_task = lookup(fn) and fn_task.needed?
|
790
|
+
fn_task.reenable
|
791
|
+
fn_task.invoke
|
792
|
+
loader.load(fn)
|
793
|
+
end
|
794
|
+
@imported << fn
|
795
|
+
end
|
796
|
+
end
|
797
|
+
|
798
|
+
def rakefile_location(backtrace=caller) # :nodoc:
|
799
|
+
backtrace.map { |t| t[/([^:]+):/, 1] }
|
800
|
+
|
801
|
+
re = /^#{@rakefile}$/
|
802
|
+
re = /#{re.source}/i if windows?
|
803
|
+
|
804
|
+
backtrace.find { |str| str =~ re } || ""
|
805
|
+
end
|
806
|
+
|
807
|
+
def set_default_options # :nodoc:
|
808
|
+
options.always_multitask = false
|
809
|
+
options.backtrace = false
|
810
|
+
options.build_all = false
|
811
|
+
options.dryrun = false
|
812
|
+
options.ignore_deprecate = false
|
813
|
+
options.ignore_system = false
|
814
|
+
options.job_stats = false
|
815
|
+
options.load_system = false
|
816
|
+
options.nosearch = false
|
817
|
+
options.rakelib = %w[rakelib]
|
818
|
+
options.show_all_tasks = false
|
819
|
+
options.show_prereqs = false
|
820
|
+
options.show_task_pattern = nil
|
821
|
+
options.show_tasks = nil
|
822
|
+
options.silent = false
|
823
|
+
options.suppress_backtrace_pattern = nil
|
824
|
+
options.thread_pool_size = Rake.suggested_thread_count
|
825
|
+
options.trace = false
|
826
|
+
options.trace_output = $stderr
|
827
|
+
options.trace_rules = false
|
828
|
+
end
|
829
|
+
|
830
|
+
end
|
831
|
+
end
|