vagrant-unbundled 2.2.19.0 → 2.3.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.envrc +5 -0
- data/.gitignore +22 -2
- data/.gitmodules +3 -0
- data/CHANGELOG.md +60 -0
- data/Dockerfile +41 -0
- data/Gemfile.lock +67 -37
- data/LICENSE +1 -3
- data/Makefile +67 -0
- data/bin/vagrant +60 -42
- data/binstubs/vagrant +29 -0
- data/flake.lock +43 -0
- data/flake.nix +24 -0
- data/gen.go +23 -0
- data/go.mod +175 -0
- data/go.sum +994 -0
- data/lib/vagrant/action/builder.rb +36 -1
- data/lib/vagrant/action/builtin/box_add.rb +2 -2
- data/lib/vagrant/action/builtin/mixin_synced_folders.rb +2 -0
- data/lib/vagrant/action/builtin/remote/mixin_synced_folders.rb +39 -0
- data/lib/vagrant/action/builtin/remote/ssh_run.rb +18 -0
- data/lib/vagrant/action/builtin/ssh_run.rb +5 -1
- data/lib/vagrant/action/primary_runner.rb +15 -0
- data/lib/vagrant/action/runner.rb +12 -0
- data/lib/vagrant/action.rb +10 -4
- data/lib/vagrant/box/remote.rb +80 -0
- data/lib/vagrant/box.rb +19 -1
- data/lib/vagrant/box_collection/remote.rb +53 -0
- data/lib/vagrant/box_collection.rb +8 -1
- data/lib/vagrant/box_metadata/remote.rb +97 -0
- data/lib/vagrant/box_metadata.rb +6 -3
- data/lib/vagrant/bundler.rb +6 -1
- data/lib/vagrant/config/loader.rb +46 -1
- data/lib/vagrant/config/v2/dummy_config.rb +46 -2
- data/lib/vagrant/config/v2/root.rb +3 -2
- data/lib/vagrant/environment/remote.rb +173 -0
- data/lib/vagrant/environment.rb +31 -7
- data/lib/vagrant/errors.rb +20 -0
- data/lib/vagrant/guest/remote.rb +81 -0
- data/lib/vagrant/guest.rb +2 -0
- data/lib/vagrant/host/remote.rb +52 -0
- data/lib/vagrant/host.rb +2 -0
- data/lib/vagrant/machine/remote.rb +330 -0
- data/lib/vagrant/machine.rb +5 -3
- data/lib/vagrant/machine_index/remote.rb +155 -0
- data/lib/vagrant/machine_index.rb +13 -2
- data/lib/vagrant/patches/fake_ftp.rb +25 -0
- data/lib/vagrant/patches/log4r.rb +39 -0
- data/lib/vagrant/plugin/remote/command.rb +27 -0
- data/lib/vagrant/plugin/remote/communicator.rb +72 -0
- data/lib/vagrant/plugin/remote/guest.rb +24 -0
- data/lib/vagrant/plugin/remote/host.rb +23 -0
- data/lib/vagrant/plugin/remote/manager.rb +300 -0
- data/lib/vagrant/plugin/remote/plugin.rb +24 -0
- data/lib/vagrant/plugin/remote/provider.rb +75 -0
- data/lib/vagrant/plugin/remote/provisioner.rb +47 -0
- data/lib/vagrant/plugin/remote/push.rb +25 -0
- data/lib/vagrant/plugin/remote/synced_folder.rb +104 -0
- data/lib/vagrant/plugin/remote.rb +17 -0
- data/lib/vagrant/plugin/v2/command.rb +1 -1
- data/lib/vagrant/plugin/v2/communicator.rb +3 -0
- data/lib/vagrant/plugin/v2/config.rb +27 -1
- data/lib/vagrant/plugin/v2/plugin.rb +21 -2
- data/lib/vagrant/plugin/v2/synced_folder.rb +2 -0
- data/lib/vagrant/plugin.rb +1 -0
- data/lib/vagrant/protobufs/proto/plugin/grpc_broker_pb.rb +18 -0
- data/lib/vagrant/protobufs/proto/plugin/grpc_broker_services_pb.rb +22 -0
- data/lib/vagrant/protobufs/proto/protostructure_pb.rb +42 -0
- data/lib/vagrant/protobufs/proto/ruby_vagrant/ruby-server_pb.rb +71 -0
- data/lib/vagrant/protobufs/proto/ruby_vagrant/ruby-server_services_pb.rb +31 -0
- data/lib/vagrant/protobufs/proto/vagrant_plugin_sdk/plugin_pb.rb +1283 -0
- data/lib/vagrant/protobufs/proto/vagrant_plugin_sdk/plugin_services_pb.rb +648 -0
- data/lib/vagrant/protobufs/proto/vagrant_server/server_pb.rb +1073 -0
- data/lib/vagrant/protobufs/proto/vagrant_server/server_services_pb.rb +135 -0
- data/lib/vagrant/registry.rb +9 -0
- data/lib/vagrant/shared_helpers.rb +53 -1
- data/lib/vagrant/ui/remote.rb +77 -0
- data/lib/vagrant/ui.rb +14 -1
- data/lib/vagrant/util/downloader.rb +1 -1
- data/lib/vagrant/util/install_cli_autocomplete.rb +3 -3
- data/lib/vagrant/util/logging_formatter.rb +39 -1
- data/lib/vagrant/util/remote/safe_puts.rb +28 -0
- data/lib/vagrant/util/remote/ssh.rb +42 -0
- data/lib/vagrant/util/ssh.rb +10 -2
- data/lib/vagrant/util/subprocess.rb +2 -2
- data/lib/vagrant/util.rb +7 -0
- data/lib/vagrant/vagrantfile/remote.rb +80 -0
- data/lib/vagrant/vagrantfile.rb +2 -1
- data/lib/vagrant.rb +23 -25
- data/nix/go-changelog.nix +17 -0
- data/nix/go-mockery.nix +23 -0
- data/nix/go-protobuf-json.nix +16 -0
- data/nix/go-protobuf.nix +18 -0
- data/nix/go-tools.nix +22 -0
- data/nix/grpc-tools.nix +10 -0
- data/nix/overlay.nix +20 -0
- data/nix/vagrant.nix +73 -0
- data/pkg/vagrant-unbundled-2.3.2.0.gem +0 -0
- data/plugins/README.md +6 -0
- data/plugins/commands/autocomplete/command/root.rb +10 -8
- data/plugins/commands/box/command/list.rb +2 -1
- data/plugins/commands/box/command/outdated.rb +1 -0
- data/plugins/commands/box/command/root.rb +12 -11
- data/plugins/commands/cap/command.rb +2 -1
- data/plugins/commands/cloud/auth/root.rb +12 -11
- data/plugins/commands/cloud/box/root.rb +12 -11
- data/plugins/commands/cloud/plugin.rb +5 -5
- data/plugins/commands/cloud/provider/root.rb +12 -11
- data/plugins/commands/cloud/root.rb +12 -11
- data/plugins/commands/cloud/version/root.rb +12 -11
- data/plugins/commands/plugin/command/root.rb +12 -11
- data/plugins/commands/port/command.rb +0 -2
- data/plugins/commands/serve/broker.rb +161 -0
- data/plugins/commands/serve/client/basis.rb +92 -0
- data/plugins/commands/serve/client/box.rb +117 -0
- data/plugins/commands/serve/client/box_collection.rb +73 -0
- data/plugins/commands/serve/client/box_metadata.rb +55 -0
- data/plugins/commands/serve/client/capability_platform.rb +62 -0
- data/plugins/commands/serve/client/command.rb +57 -0
- data/plugins/commands/serve/client/communicator.rb +180 -0
- data/plugins/commands/serve/client/core_plugin_manager.rb +16 -0
- data/plugins/commands/serve/client/guest.rb +44 -0
- data/plugins/commands/serve/client/host.rb +24 -0
- data/plugins/commands/serve/client/plugin_manager.rb +56 -0
- data/plugins/commands/serve/client/project.rb +187 -0
- data/plugins/commands/serve/client/provider.rb +152 -0
- data/plugins/commands/serve/client/provisioner.rb +47 -0
- data/plugins/commands/serve/client/push.rb +23 -0
- data/plugins/commands/serve/client/state_bag.rb +48 -0
- data/plugins/commands/serve/client/synced_folder.rb +115 -0
- data/plugins/commands/serve/client/target/machine.rb +141 -0
- data/plugins/commands/serve/client/target.rb +145 -0
- data/plugins/commands/serve/client/target_index.rb +76 -0
- data/plugins/commands/serve/client/terminal.rb +118 -0
- data/plugins/commands/serve/client/vagrantfile.rb +80 -0
- data/plugins/commands/serve/client.rb +38 -0
- data/plugins/commands/serve/command.rb +143 -0
- data/plugins/commands/serve/mappers/basis.rb +44 -0
- data/plugins/commands/serve/mappers/box.rb +53 -0
- data/plugins/commands/serve/mappers/capabilities.rb +56 -0
- data/plugins/commands/serve/mappers/command.rb +143 -0
- data/plugins/commands/serve/mappers/communicator.rb +50 -0
- data/plugins/commands/serve/mappers/config_data.rb +227 -0
- data/plugins/commands/serve/mappers/core_plugin_manager.rb +41 -0
- data/plugins/commands/serve/mappers/direct.rb +76 -0
- data/plugins/commands/serve/mappers/duration.rb +51 -0
- data/plugins/commands/serve/mappers/environment.rb +78 -0
- data/plugins/commands/serve/mappers/folders.rb +60 -0
- data/plugins/commands/serve/mappers/guest.rb +56 -0
- data/plugins/commands/serve/mappers/host.rb +109 -0
- data/plugins/commands/serve/mappers/internal/graph/mappers.rb +332 -0
- data/plugins/commands/serve/mappers/internal/graph/search.rb +329 -0
- data/plugins/commands/serve/mappers/internal/graph/vertex/final.rb +35 -0
- data/plugins/commands/serve/mappers/internal/graph/vertex/input.rb +57 -0
- data/plugins/commands/serve/mappers/internal/graph/vertex/method.rb +59 -0
- data/plugins/commands/serve/mappers/internal/graph/vertex/named_value.rb +25 -0
- data/plugins/commands/serve/mappers/internal/graph/vertex/output.rb +39 -0
- data/plugins/commands/serve/mappers/internal/graph/vertex/root.rb +15 -0
- data/plugins/commands/serve/mappers/internal/graph/vertex/value.rb +32 -0
- data/plugins/commands/serve/mappers/internal/graph/vertex.rb +78 -0
- data/plugins/commands/serve/mappers/internal/graph/weighted_vertex.rb +44 -0
- data/plugins/commands/serve/mappers/internal/graph.rb +285 -0
- data/plugins/commands/serve/mappers/internal.rb +9 -0
- data/plugins/commands/serve/mappers/known_types.rb +360 -0
- data/plugins/commands/serve/mappers/machine.rb +150 -0
- data/plugins/commands/serve/mappers/mapper.rb +193 -0
- data/plugins/commands/serve/mappers/options.rb +61 -0
- data/plugins/commands/serve/mappers/pathname.rb +52 -0
- data/plugins/commands/serve/mappers/plugin_manager.rb +22 -0
- data/plugins/commands/serve/mappers/proc.rb +78 -0
- data/plugins/commands/serve/mappers/project.rb +75 -0
- data/plugins/commands/serve/mappers/provider.rb +38 -0
- data/plugins/commands/serve/mappers/provisioner.rb +20 -0
- data/plugins/commands/serve/mappers/push.rb +20 -0
- data/plugins/commands/serve/mappers/state_bag.rb +59 -0
- data/plugins/commands/serve/mappers/synced_folder.rb +68 -0
- data/plugins/commands/serve/mappers/target.rb +73 -0
- data/plugins/commands/serve/mappers/target_index.rb +89 -0
- data/plugins/commands/serve/mappers/terminal.rb +85 -0
- data/plugins/commands/serve/mappers/ui.rb +48 -0
- data/plugins/commands/serve/mappers/vagrantfile.rb +63 -0
- data/plugins/commands/serve/mappers/wrappers.rb +227 -0
- data/plugins/commands/serve/mappers.rb +525 -0
- data/plugins/commands/serve/plugin.rb +17 -0
- data/plugins/commands/serve/service/capability_platform_service.rb +100 -0
- data/plugins/commands/serve/service/command_service.rb +308 -0
- data/plugins/commands/serve/service/communicator_service.rb +248 -0
- data/plugins/commands/serve/service/config_service.rb +87 -0
- data/plugins/commands/serve/service/guest_service.rb +81 -0
- data/plugins/commands/serve/service/host_service.rb +75 -0
- data/plugins/commands/serve/service/internal_service.rb +174 -0
- data/plugins/commands/serve/service/provider_service.rb +163 -0
- data/plugins/commands/serve/service/provisioner_service.rb +90 -0
- data/plugins/commands/serve/service/push_service.rb +36 -0
- data/plugins/commands/serve/service/synced_folder_service.rb +147 -0
- data/plugins/commands/serve/service.rb +81 -0
- data/plugins/commands/serve/type/boolean.rb +12 -0
- data/plugins/commands/serve/type/command_arguments.rb +64 -0
- data/plugins/commands/serve/type/command_info.rb +54 -0
- data/plugins/commands/serve/type/communicator_command_arguments.rb +8 -0
- data/plugins/commands/serve/type/direct.rb +19 -0
- data/plugins/commands/serve/type/duration.rb +8 -0
- data/plugins/commands/serve/type/folders.rb +12 -0
- data/plugins/commands/serve/type/named_argument.rb +13 -0
- data/plugins/commands/serve/type/options.rb +17 -0
- data/plugins/commands/serve/type/ssh_info.rb +8 -0
- data/plugins/commands/serve/type/winrm_info.rb +8 -0
- data/plugins/commands/serve/type.rb +23 -0
- data/plugins/commands/serve/util/cacher.rb +88 -0
- data/plugins/commands/serve/util/client_setup.rb +38 -0
- data/plugins/commands/serve/util/connector.rb +45 -0
- data/plugins/commands/serve/util/direct_conversions.rb +667 -0
- data/plugins/commands/serve/util/exception_transformer.rb +95 -0
- data/plugins/commands/serve/util/func_spec.rb +152 -0
- data/plugins/commands/serve/util/has_broker.rb +28 -0
- data/plugins/commands/serve/util/has_logger.rb +16 -0
- data/plugins/commands/serve/util/has_mapper.rb +20 -0
- data/plugins/commands/serve/util/has_seeds.rb +48 -0
- data/plugins/commands/serve/util/named_plugin.rb +30 -0
- data/plugins/commands/serve/util/service_info.rb +76 -0
- data/plugins/commands/serve/util/usage_tracker.rb +71 -0
- data/plugins/commands/serve/util.rb +19 -0
- data/plugins/commands/snapshot/command/root.rb +12 -11
- data/plugins/communicators/ssh/communicator.rb +1 -1
- data/plugins/guests/alma/cap/flavor.rb +23 -0
- data/plugins/guests/alma/guest.rb +10 -0
- data/plugins/guests/alma/plugin.rb +20 -0
- data/plugins/guests/centos/cap/flavor.rb +16 -11
- data/plugins/guests/centos/guest.rb +6 -4
- data/plugins/guests/openwrt/guest.rb +1 -1
- data/plugins/guests/redhat/cap/flavor.rb +16 -11
- data/plugins/guests/redhat/cap/nfs_client.rb +3 -1
- data/plugins/guests/solaris/cap/remove_public_key.rb +2 -2
- data/plugins/hosts/darwin/cap/path.rb +2 -1
- data/plugins/hosts/gentoo/host.rb +1 -1
- data/plugins/hosts/linux/cap/nfs.rb +4 -3
- data/plugins/hosts/slackware/host.rb +1 -1
- data/plugins/kernel_v2/config/push.rb +9 -0
- data/plugins/kernel_v2/config/vm.rb +24 -0
- data/plugins/kernel_v2/config/vm_provisioner.rb +1 -2
- data/plugins/providers/docker/action/wait_for_running.rb +5 -3
- data/plugins/providers/virtualbox/action/import.rb +8 -1
- data/plugins/providers/virtualbox/action/network.rb +8 -5
- data/plugins/providers/virtualbox/driver/base.rb +3 -1
- data/plugins/providers/virtualbox/driver/meta.rb +1 -0
- data/plugins/providers/virtualbox/driver/version_5_0.rb +40 -36
- data/plugins/providers/virtualbox/driver/version_7_0.rb +285 -0
- data/plugins/providers/virtualbox/plugin.rb +1 -0
- data/plugins/provisioners/ansible/cap/guest/debian/ansible_install.rb +1 -1
- data/plugins/provisioners/ansible/provisioner/host.rb +1 -1
- data/plugins/provisioners/chef/config/chef_zero.rb +1 -1
- data/plugins/provisioners/puppet/config/puppet.rb +1 -0
- data/plugins/provisioners/shell/provisioner.rb +1 -2
- data/plugins/pushes/ftp/push.rb +13 -5
- data/plugins/pushes/heroku/push.rb +8 -1
- data/plugins/pushes/local-exec/push.rb +6 -2
- data/plugins/synced_folders/rsync/helper.rb +1 -0
- data/plugins/synced_folders/smb/cap/mount_options.rb +1 -0
- data/scripts/sign.sh +4 -4
- data/shell.nix +5 -0
- data/tasks/test.rake +1 -1
- data/templates/locales/en.yml +26 -0
- data/thirdparty/proto/api-common-protos/.bazelrc +2 -0
- data/thirdparty/proto/api-common-protos/.git +1 -0
- data/thirdparty/proto/api-common-protos/.gitignore +11 -0
- data/thirdparty/proto/api-common-protos/BUILD.bazel +129 -0
- data/thirdparty/proto/api-common-protos/CODE_OF_CONDUCT.md +43 -0
- data/thirdparty/proto/api-common-protos/CONTRIBUTING.md +42 -0
- data/thirdparty/proto/api-common-protos/Dockerfile +18 -0
- data/thirdparty/proto/api-common-protos/LICENSE +201 -0
- data/thirdparty/proto/api-common-protos/README.md +113 -0
- data/thirdparty/proto/api-common-protos/SECURITY.md +7 -0
- data/thirdparty/proto/api-common-protos/WORKSPACE +154 -0
- data/thirdparty/proto/api-common-protos/google/api/BUILD.bazel +246 -0
- data/thirdparty/proto/api-common-protos/google/api/README.md +46 -0
- data/thirdparty/proto/api-common-protos/google/api/annotations.proto +31 -0
- data/thirdparty/proto/api-common-protos/google/api/auth.proto +181 -0
- data/thirdparty/proto/api-common-protos/google/api/backend.proto +51 -0
- data/thirdparty/proto/api-common-protos/google/api/billing.proto +67 -0
- data/thirdparty/proto/api-common-protos/google/api/client.proto +99 -0
- data/thirdparty/proto/api-common-protos/google/api/config_change.proto +85 -0
- data/thirdparty/proto/api-common-protos/google/api/consumer.proto +83 -0
- data/thirdparty/proto/api-common-protos/google/api/context.proto +63 -0
- data/thirdparty/proto/api-common-protos/google/api/control.proto +33 -0
- data/thirdparty/proto/api-common-protos/google/api/distribution.proto +213 -0
- data/thirdparty/proto/api-common-protos/google/api/documentation.proto +157 -0
- data/thirdparty/proto/api-common-protos/google/api/endpoint.proto +71 -0
- data/thirdparty/proto/api-common-protos/google/api/field_behavior.proto +84 -0
- data/thirdparty/proto/api-common-protos/google/api/http.proto +318 -0
- data/thirdparty/proto/api-common-protos/google/api/httpbody.proto +76 -0
- data/thirdparty/proto/api-common-protos/google/api/label.proto +49 -0
- data/thirdparty/proto/api-common-protos/google/api/launch_stage.proto +67 -0
- data/thirdparty/proto/api-common-protos/google/api/log.proto +55 -0
- data/thirdparty/proto/api-common-protos/google/api/logging.proto +83 -0
- data/thirdparty/proto/api-common-protos/google/api/metric.proto +192 -0
- data/thirdparty/proto/api-common-protos/google/api/monitored_resource.proto +116 -0
- data/thirdparty/proto/api-common-protos/google/api/monitoring.proto +89 -0
- data/thirdparty/proto/api-common-protos/google/api/quota.proto +259 -0
- data/thirdparty/proto/api-common-protos/google/api/resource.proto +299 -0
- data/thirdparty/proto/api-common-protos/google/api/routing.proto +461 -0
- data/thirdparty/proto/api-common-protos/google/api/service.proto +175 -0
- data/thirdparty/proto/api-common-protos/google/api/source_info.proto +32 -0
- data/thirdparty/proto/api-common-protos/google/api/system_parameter.proto +96 -0
- data/thirdparty/proto/api-common-protos/google/api/usage.proto +92 -0
- data/thirdparty/proto/api-common-protos/google/cloud/extended_operations.proto +150 -0
- data/thirdparty/proto/api-common-protos/google/iam/README.md +14 -0
- data/thirdparty/proto/api-common-protos/google/iam/admin/v1/iam.proto +1087 -0
- data/thirdparty/proto/api-common-protos/google/iam/v1/iam_policy.proto +145 -0
- data/thirdparty/proto/api-common-protos/google/iam/v1/logging/audit_data.proto +34 -0
- data/thirdparty/proto/api-common-protos/google/iam/v1/options.proto +41 -0
- data/thirdparty/proto/api-common-protos/google/iam/v1/policy.proto +240 -0
- data/thirdparty/proto/api-common-protos/google/logging/type/README.md +12 -0
- data/thirdparty/proto/api-common-protos/google/logging/type/http_request.proto +92 -0
- data/thirdparty/proto/api-common-protos/google/logging/type/log_severity.proto +72 -0
- data/thirdparty/proto/api-common-protos/google/longrunning/README.md +31 -0
- data/thirdparty/proto/api-common-protos/google/longrunning/operations.proto +247 -0
- data/thirdparty/proto/api-common-protos/google/rpc/README.md +18 -0
- data/thirdparty/proto/api-common-protos/google/rpc/code.proto +186 -0
- data/thirdparty/proto/api-common-protos/google/rpc/context/attribute_context.proto +287 -0
- data/thirdparty/proto/api-common-protos/google/rpc/error_details.proto +246 -0
- data/thirdparty/proto/api-common-protos/google/rpc/status.proto +47 -0
- data/thirdparty/proto/api-common-protos/google/type/README.md +7 -0
- data/thirdparty/proto/api-common-protos/google/type/calendar_period.proto +57 -0
- data/thirdparty/proto/api-common-protos/google/type/color.proto +170 -0
- data/thirdparty/proto/api-common-protos/google/type/date.proto +50 -0
- data/thirdparty/proto/api-common-protos/google/type/datetime.proto +97 -0
- data/thirdparty/proto/api-common-protos/google/type/dayofweek.proto +51 -0
- data/thirdparty/proto/api-common-protos/google/type/expr.proto +51 -0
- data/thirdparty/proto/api-common-protos/google/type/fraction.proto +34 -0
- data/thirdparty/proto/api-common-protos/google/type/latlng.proto +37 -0
- data/thirdparty/proto/api-common-protos/google/type/money.proto +43 -0
- data/thirdparty/proto/api-common-protos/google/type/month.proto +66 -0
- data/thirdparty/proto/api-common-protos/google/type/postal_address.proto +135 -0
- data/thirdparty/proto/api-common-protos/google/type/quaternion.proto +95 -0
- data/thirdparty/proto/api-common-protos/google/type/timeofday.proto +44 -0
- data/thirdparty/proto/api-common-protos/renovate.json +5 -0
- data/thirdparty/proto/api-common-protos/repository_rules.bzl +222 -0
- data/{vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/bcrypt_pbkdf-1.1.0/gem.build_complete → vagrant-config.hcl} +0 -0
- data/vagrant.gemspec +31 -6
- data/version.txt +1 -1
- metadata +348 -3724
- data/lib/vagrant/patches/net-ssh.rb +0 -279
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/.gitignore +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/.travis.yml +0 -8
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/Gemfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/README.md +0 -319
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/Rakefile +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/cli/plugin_spec.rb +0 -156
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/output/plugin_output.rb +0 -42
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provider/network_forwarded_port_spec.rb +0 -23
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provider/network_private_network_spec.rb +0 -23
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provider/synced_folder_spec.rb +0 -33
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -14
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/configuration.rb +0 -81
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/rspec.rb +0 -9
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/runner.rb +0 -91
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/cli.rb +0 -45
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/components.rb +0 -70
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/vagrant-plugin/command.rb +0 -67
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -17
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec.rb +0 -25
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/components_spec.rb +0 -63
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/vagrant-spec.gemspec +0 -50
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/.gitignore +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/.travis.yml +0 -8
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/Gemfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/README.md +0 -319
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/Rakefile +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/cli/plugin_spec.rb +0 -156
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/output/plugin_output.rb +0 -25
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provider/network_forwarded_port_spec.rb +0 -23
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provider/network_private_network_spec.rb +0 -23
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provider/synced_folder_spec.rb +0 -33
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -14
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/configuration.rb +0 -74
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec.rb +0 -9
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/runner.rb +0 -84
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/cli.rb +0 -44
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/components.rb +0 -70
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec.rb +0 -20
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/components_spec.rb +0 -63
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/vagrant-spec.gemspec +0 -50
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/.gitignore +0 -18
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/.travis.yml +0 -10
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/Gemfile +0 -5
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/README.md +0 -319
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/Rakefile +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/plugin_spec.rb +0 -164
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/output/plugin_output.rb +0 -34
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/network_forwarded_port_spec.rb +0 -25
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/network_private_network_spec.rb +0 -25
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/synced_folder_spec.rb +0 -33
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -14
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/Vagrantfile +0 -44
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/fail.sh +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/script.sh +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/test.sh +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-basic/Vagrantfile +0 -25
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/triggers/triggers_advanced_spec.rb +0 -57
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/triggers/triggers_basic_spec.rb +0 -33
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/configuration.rb +0 -81
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec.rb +0 -9
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/runner.rb +0 -76
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/cli.rb +0 -48
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/components.rb +0 -57
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/vagrant-plugin/command.rb +0 -67
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -17
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec.rb +0 -25
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/spec/components_spec.rb +0 -62
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/vagrant-spec.gemspec +0 -47
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/.gitignore +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/.travis.yml +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/Gemfile +0 -8
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/README.md +0 -319
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/Rakefile +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/cli/plugin_spec.rb +0 -164
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/output/plugin_output.rb +0 -34
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provider/network_forwarded_port_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provider/network_private_network_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provider/synced_folder_spec.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_chef_solo/CustomConfiguration.chef +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/triggers-advanced/Vagrantfile +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/triggers-advanced/fail.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/triggers-advanced/script.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/triggers-advanced/test.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/triggers-basic/Vagrantfile +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/triggers/triggers_advanced_spec.rb +0 -57
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/triggers/triggers_basic_spec.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/configuration.rb +0 -81
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/rspec.rb +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/runner.rb +0 -76
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/cli.rb +0 -48
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/components.rb +0 -57
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/vagrant-plugin/command.rb +0 -67
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/spec/components_spec.rb +0 -62
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/vagrant-spec.gemspec +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/.gitignore +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/.travis.yml +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/Gemfile +0 -8
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/README.md +0 -319
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/Rakefile +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/cli/plugin_spec.rb +0 -164
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/disk/basic_spec.rb +0 -65
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/disk/dvd_multiple_spec.rb +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/disk/dvd_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/disk/primary_spec.rb +0 -37
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/disk/secondary_spec.rb +0 -37
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/output/plugin_output.rb +0 -34
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provider/network_forwarded_port_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provider/network_private_network_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provider/synced_folder_spec.rb +0 -54
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_basic/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_basic/example.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd/example.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd_four/Vagrantfile +0 -8
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd_four/example1.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd_four/example2.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd_four/example3.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd_four/example4.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd_two/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd_two/example1.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd_two/example3.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_empty/Vagrantfile +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_primary/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_primary_bigger/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_secondary/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_secondary_bigger/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_chef_solo/CustomConfiguration.chef +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/synced_folder_smb/Vagrantfile +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/synced_folder_smb/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/triggers-advanced/Vagrantfile +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/triggers-advanced/fail.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/triggers-advanced/script.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/triggers-advanced/test.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/triggers-basic/Vagrantfile +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/synced_folder/smb_spec.rb +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/triggers/triggers_advanced_spec.rb +0 -57
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/triggers/triggers_basic_spec.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/configuration.rb +0 -81
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/rspec.rb +0 -13
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/runner.rb +0 -76
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/cli.rb +0 -48
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/components.rb +0 -57
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/vagrant-plugin/command.rb +0 -67
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/spec/components_spec.rb +0 -62
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/vagrant-spec.gemspec +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/.gitignore +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/.travis.yml +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/Gemfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/README.md +0 -319
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/Rakefile +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/plugin_spec.rb +0 -164
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/output/plugin_output.rb +0 -34
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/network_forwarded_port_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/network_private_network_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/synced_folder_spec.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -14
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/Vagrantfile +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/fail.sh +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/script.sh +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/test.sh +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-basic/Vagrantfile +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/triggers/triggers_advanced_spec.rb +0 -57
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/triggers/triggers_basic_spec.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/configuration.rb +0 -81
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec.rb +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/runner.rb +0 -76
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/cli.rb +0 -48
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/components.rb +0 -57
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/vagrant-plugin/command.rb +0 -67
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/spec/components_spec.rb +0 -62
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/vagrant-spec.gemspec +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/.gitignore +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/.travis.yml +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/Gemfile +0 -8
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/README.md +0 -319
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/Rakefile +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/cli/plugin_spec.rb +0 -164
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/basic_spec.rb +0 -65
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/dvd_multiple_spec.rb +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/dvd_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/primary_spec.rb +0 -37
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/secondary_spec.rb +0 -37
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/output/plugin_output.rb +0 -34
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/network_forwarded_port_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/network_private_network_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/synced_folder_spec.rb +0 -54
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_basic/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_basic/example.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd/example.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/Vagrantfile +0 -8
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/example1.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/example2.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/example3.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/example4.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_two/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_two/example1.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_two/example3.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_empty/Vagrantfile +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_primary/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_primary_bigger/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_secondary/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_secondary_bigger/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/CustomConfiguration.chef +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_smb/Vagrantfile +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_smb/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-advanced/Vagrantfile +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-advanced/fail.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-advanced/script.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-advanced/test.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-basic/Vagrantfile +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/synced_folder/smb_spec.rb +0 -45
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/triggers/triggers_advanced_spec.rb +0 -57
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/triggers/triggers_basic_spec.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/configuration.rb +0 -81
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/runner.rb +0 -76
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/cli.rb +0 -48
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/components.rb +0 -57
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/vagrant-plugin/command.rb +0 -67
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/components_spec.rb +0 -62
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/vagrant-spec.gemspec +0 -41
- data/vendor/bundle/ruby/3.0.0/bin/htmldiff +0 -31
- data/vendor/bundle/ruby/3.0.0/bin/httpclient +0 -29
- data/vendor/bundle/ruby/3.0.0/bin/ldiff +0 -31
- data/vendor/bundle/ruby/3.0.0/bin/listen +0 -29
- data/vendor/bundle/ruby/3.0.0/bin/rake +0 -29
- data/vendor/bundle/ruby/3.0.0/bin/rspec +0 -29
- data/vendor/bundle/ruby/3.0.0/bin/rwinrm +0 -29
- data/vendor/bundle/ruby/3.0.0/bin/rwinrmcp +0 -29
- data/vendor/bundle/ruby/3.0.0/bin/thor +0 -29
- data/vendor/bundle/ruby/3.0.0/bin/vagrant +0 -29
- data/vendor/bundle/ruby/3.0.0/bin/vagrant-spec +0 -29
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/.gitignore +0 -18
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/.travis.yml +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/Gemfile +0 -8
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/README.md +0 -319
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/Rakefile +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/cli/plugin_spec.rb +0 -164
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/disk/basic_spec.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/disk/dvd_multiple_spec.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/disk/dvd_spec.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/disk/primary_spec.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/disk/secondary_spec.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/output/plugin_output.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provider/network_forwarded_port_spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provider/network_private_network_spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provider/synced_folder_spec.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_basic/Vagrantfile +0 -7
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_basic/example.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd/example.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd_four/Vagrantfile +0 -8
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd_four/example1.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd_four/example2.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd_four/example3.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd_four/example4.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd_two/Vagrantfile +0 -6
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd_two/example1.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd_two/example3.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_empty/Vagrantfile +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_primary/Vagrantfile +0 -6
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_primary_bigger/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_secondary/Vagrantfile +0 -6
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_secondary_bigger/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_chef_solo/CustomConfiguration.chef +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -15
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/synced_folder_smb/Vagrantfile +0 -9
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/synced_folder_smb/foo +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -9
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/triggers-advanced/Vagrantfile +0 -44
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/triggers-advanced/fail.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/triggers-advanced/script.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/triggers-advanced/test.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/triggers-basic/Vagrantfile +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/synced_folder/smb_spec.rb +0 -45
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/triggers/triggers_advanced_spec.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/triggers/triggers_basic_spec.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/configuration.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/rspec.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/runner.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/cli.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/components.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/vagrant-plugin/command.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/spec/components_spec.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/vagrant-spec.gemspec +0 -41
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/.gitignore +0 -18
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/.travis.yml +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/Gemfile +0 -8
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/README.md +0 -319
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/Rakefile +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/cli/plugin_spec.rb +0 -164
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/basic_spec.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/dvd_multiple_spec.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/dvd_spec.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/primary_spec.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/secondary_spec.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/output/plugin_output.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/network_forwarded_port_spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/network_private_network_spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/synced_folder_spec.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_basic/Vagrantfile +0 -7
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_basic/example.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd/example.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/Vagrantfile +0 -8
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/example1.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/example2.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/example3.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/example4.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_two/Vagrantfile +0 -6
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_two/example1.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_two/example3.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_empty/Vagrantfile +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_primary/Vagrantfile +0 -6
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_primary_bigger/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_secondary/Vagrantfile +0 -6
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_secondary_bigger/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/CustomConfiguration.chef +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -15
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_smb/Vagrantfile +0 -9
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_smb/foo +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -9
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-advanced/Vagrantfile +0 -44
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-advanced/fail.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-advanced/script.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-advanced/test.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-basic/Vagrantfile +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/synced_folder/smb_spec.rb +0 -45
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/triggers/triggers_advanced_spec.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/triggers/triggers_basic_spec.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/configuration.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/runner.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/cli.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/components.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/vagrant-plugin/command.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/components_spec.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/vagrant-spec.gemspec +0 -41
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/HEAD +0 -1
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/config +0 -6
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/description +0 -1
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/applypatch-msg.sample +0 -15
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/commit-msg.sample +0 -24
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/fsmonitor-watchman.sample +0 -173
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/post-update.sample +0 -8
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/pre-applypatch.sample +0 -14
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/pre-commit.sample +0 -49
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/pre-merge-commit.sample +0 -13
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/pre-push.sample +0 -53
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/pre-rebase.sample +0 -169
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/pre-receive.sample +0 -24
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/prepare-commit-msg.sample +0 -42
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/push-to-checkout.sample +0 -78
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/update.sample +0 -128
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/info/exclude +0 -6
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/objects/pack/pack-5eb5537164b07752b28575bbe48b252a69a849da.idx +0 -0
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/objects/pack/pack-5eb5537164b07752b28575bbe48b252a69a849da.pack +0 -0
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/packed-refs +0 -2
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/bcrypt_pbkdf-1.1.0/bcrypt_pbkdf_ext.so +0 -0
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/bcrypt_pbkdf-1.1.0/gem_make.out +0 -19
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/ed25519-1.2.4/ed25519_ref10.so +0 -0
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/ed25519-1.2.4/gem.build_complete +0 -0
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/ed25519-1.2.4/gem_make.out +0 -1768
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/ffi-1.15.4/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/ffi-1.15.4/gem.build_complete +0 -0
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/ffi-1.15.4/gem_make.out +0 -43
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/ffi-1.15.4/mkmf.log +0 -232
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/wdm-0.1.1/gem.build_complete +0 -0
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/wdm-0.1.1/gem_make.out +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/.travis.yml +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/CHANGELOG.md +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/COPYING +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/Gemfile +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/README.md +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/Rakefile +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/bcrypt_pbkdf.gemspec +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/.sitearchdir.time +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/Makefile +0 -266
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/bcrypt_pbkdf.c +0 -169
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/bcrypt_pbkdf.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/bcrypt_pbkdf_ext.c +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/bcrypt_pbkdf_ext.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/bcrypt_pbkdf_ext.so +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/blf.h +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/blowfish.c +0 -698
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/blowfish.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/crypto_api.h +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/crypto_hash_sha512.h +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/explicit_bzero.c +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/explicit_bzero.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/extconf.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/hash_sha512.c +0 -320
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/hash_sha512.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/includes.h +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/sha2.h +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/util.h +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/utils.h +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/lib/bcrypt_pbkdf.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/test/bcrypt_pnkdf/engine_test.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/test/test_helper.rb +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/CHANGES +0 -119
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/MIT-LICENSE +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/README.md +0 -258
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/Rakefile +0 -194
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/builder.blurb +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/builder.gemspec +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/doc/jamis.rb +0 -592
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/doc/releases/builder-1.2.4.rdoc +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/doc/releases/builder-2.0.0.rdoc +0 -46
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/doc/releases/builder-2.1.1.rdoc +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/lib/blankslate.rb +0 -138
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/lib/builder/blankslate.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/lib/builder/version.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/lib/builder/xchar.rb +0 -198
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/lib/builder/xmlbase.rb +0 -200
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/lib/builder/xmlevents.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/lib/builder/xmlmarkup.rb +0 -345
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/lib/builder.rb +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/rakelib/publish.rake +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/rakelib/tags.rake +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/rakelib/testing.rake +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/helper.rb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/performance.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/preload.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/test_blankslate.rb +0 -208
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/test_eventbuilder.rb +0 -151
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/test_markupbuilder.rb +0 -617
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/test_method_caching.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/test_namecollision.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/test_xchar.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/.document +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/.gitignore +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/.rspec +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/.travis.yml +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/CHANGELOG.md +0 -83
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/Gemfile +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/LICENSE +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/README.md +0 -230
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/Rakefile +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/appveyor.yml +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/childprocess.gemspec +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/abstract_io.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/abstract_process.rb +0 -192
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/errors.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/jruby/io.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/jruby/process.rb +0 -184
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/jruby/pump.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/jruby.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/tools/generator.rb +0 -146
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/fork_exec_process.rb +0 -78
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/io.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/lib.rb +0 -186
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/platform/arm64-macosx.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/platform/i386-linux.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/platform/i386-solaris.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/platform/x86_64-linux.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/platform/x86_64-macosx.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/posix_spawn_process.rb +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/process.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/windows/handle.rb +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/windows/io.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/windows/lib.rb +0 -416
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/windows/process.rb +0 -131
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/windows/process_builder.rb +0 -178
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/windows/structs.rb +0 -149
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/windows.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess.rb +0 -210
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/abstract_io_spec.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/childprocess_spec.rb +0 -447
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/get_env.ps1 +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/io_spec.rb +0 -228
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/jruby_spec.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/pid_behavior.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/platform_detection_spec.rb +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/spec_helper.rb +0 -270
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/unix_spec.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/windows_spec.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/CHANGELOG.md +0 -528
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/Gemfile +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/LICENSE.txt +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/README.md +0 -408
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/Rakefile +0 -339
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/ConcurrentRubyService.java +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java +0 -175
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/JRubyMapBackendLibrary.java +0 -248
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicBooleanLibrary.java +0 -93
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicFixnumLibrary.java +0 -113
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaSemaphoreLibrary.java +0 -159
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java +0 -307
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMap.java +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMapV8.java +0 -3863
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/LongAdder.java +0 -203
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/Striped64.java +0 -342
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/ConcurrentHashMapV8.java +0 -3800
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/LongAdder.java +0 -204
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/Striped64.java +0 -291
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166y/ThreadLocalRandom.java +0 -199
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/agent.rb +0 -587
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/array.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/async.rb +0 -448
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atom.rb +0 -222
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/abstract_thread_local_var.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/atomic_boolean.rb +0 -126
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/atomic_fixnum.rb +0 -143
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/atomic_markable_reference.rb +0 -164
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/atomic_reference.rb +0 -204
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/count_down_latch.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/cyclic_barrier.rb +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/event.rb +0 -109
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/java_count_down_latch.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/java_thread_local_var.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_boolean.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_fixnum.rb +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/mutex_count_down_latch.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/mutex_semaphore.rb +0 -115
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/read_write_lock.rb +0 -254
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/reentrant_read_write_lock.rb +0 -379
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/ruby_thread_local_var.rb +0 -181
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/semaphore.rb +0 -145
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/thread_local_var.rb +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic_reference/mutex_atomic.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic_reference/numeric_cas_wrapper.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomics.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/copy_on_notify_observer_set.rb +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/copy_on_write_observer_set.rb +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/java_non_concurrent_priority_queue.rb +0 -84
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/lock_free_stack.rb +0 -158
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/atomic_reference_map_backend.rb +0 -927
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/mri_map_backend.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/non_concurrent_map_backend.rb +0 -140
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/synchronized_map_backend.rb +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/truffleruby_map_backend.rb +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/non_concurrent_priority_queue.rb +0 -143
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/ruby_non_concurrent_priority_queue.rb +0 -160
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/deprecation.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/dereferenceable.rb +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/logging.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/obligation.rb +0 -220
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/observable.rb +0 -110
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concurrent_ruby.jar +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/configuration.rb +0 -188
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/constants.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/dataflow.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/delay.rb +0 -199
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/errors.rb +0 -69
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/exchanger.rb +0 -352
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/abstract_executor_service.rb +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/cached_thread_pool.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/executor_service.rb +0 -185
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/fixed_thread_pool.rb +0 -210
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/immediate_executor.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/indirect_immediate_executor.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/java_single_thread_executor.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/java_thread_pool_executor.rb +0 -136
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/ruby_executor_service.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/ruby_single_thread_executor.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/ruby_thread_pool_executor.rb +0 -377
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/safe_task_executor.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/serial_executor_service.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/serialized_execution.rb +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/serialized_execution_delegator.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/simple_executor_service.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/single_thread_executor.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/thread_pool_executor.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/timer_set.rb +0 -172
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executors.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/future.rb +0 -141
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/hash.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/immutable_struct.rb +0 -101
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/ivar.rb +0 -207
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/map.rb +0 -347
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/maybe.rb +0 -229
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/mutable_struct.rb +0 -239
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/mvar.rb +0 -242
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/options.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/promise.rb +0 -580
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/promises.rb +0 -2167
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/re_include.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/scheduled_task.rb +0 -318
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/set.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/settable_struct.rb +0 -139
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/abstract_lockable_object.rb +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/abstract_object.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/abstract_struct.rb +0 -171
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/condition.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/jruby_lockable_object.rb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/jruby_object.rb +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/lock.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/lockable_object.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/mri_object.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/mutex_lockable_object.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/object.rb +0 -183
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/rbx_lockable_object.rb +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/rbx_object.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/truffleruby_object.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/volatile.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/synchronized_delegator.rb +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/adder.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/cheap_lockable.rb +0 -118
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/data_structures.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/power_of_two_tuple.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/striped64.rb +0 -246
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/volatile.rb +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/xor_shift_random.rb +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/timer_task.rb +0 -333
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/tuple.rb +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/tvar.rb +0 -261
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/engine.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/monotonic_time.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/native_extension_loader.rb +0 -79
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/native_integer.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/processor_counter.rb +0 -163
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent-ruby.rb +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent.rb +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/.rspec +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/Code-of-Conduct.md +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/Contributing.md +0 -118
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/History.md +0 -319
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/License.md +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/Manifest.txt +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/README.rdoc +0 -84
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/Rakefile +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/autotest/discover.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/bin/htmldiff +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/bin/ldiff +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/docs/COPYING.txt +0 -339
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/docs/artistic.txt +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/array.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/backports.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/block.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/callbacks.rb +0 -325
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/change.rb +0 -174
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/htmldiff.rb +0 -150
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/hunk.rb +0 -358
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/internals.rb +0 -304
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/ldiff.rb +0 -171
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/string.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs.rb +0 -739
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff-lcs.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/change_spec.rb +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/diff_spec.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/aX +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/bXaX +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/ds1.csv +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/ds2.csv +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff-c +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff-e +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff-f +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff-u +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/hunk_spec.rb +0 -83
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/issues_spec.rb +0 -154
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/lcs_spec.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/ldiff_spec.rb +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/patch_spec.rb +0 -416
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/sdiff_spec.rb +0 -214
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/spec_helper.rb +0 -375
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/traverse_balanced_spec.rb +0 -310
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/traverse_sequences_spec.rb +0 -139
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/.gitignore +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/.rspec +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/.rubocop.yml +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/.travis.yml +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/CHANGES.md +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/CODE_OF_CONDUCT.md +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/Gemfile +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/LICENSE +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/README.md +0 -170
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/Rakefile +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/appveyor.yml +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ed25519.gemspec +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ed25519.png +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/LICENSE.txt +0 -123
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/README.md +0 -77
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAEngine.java +0 -491
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAKey.java +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAPrivateKey.java +0 -338
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAPublicKey.java +0 -275
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSASecurityProvider.java +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/KeyFactory.java +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/KeyPairGenerator.java +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/Utils.java +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/Constants.java +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/Curve.java +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/Encoding.java +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/Field.java +0 -99
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/FieldElement.java +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/GroupElement.java +0 -1034
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/ScalarOps.java +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/bigint/BigIntegerFieldElement.java +0 -131
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/bigint/BigIntegerLittleEndianEncoding.java +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/bigint/BigIntegerScalarOps.java +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/bigint/package.html +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/ed25519/Ed25519FieldElement.java +0 -988
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/ed25519/Ed25519LittleEndianEncoding.java +0 -256
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/ed25519/Ed25519ScalarOps.java +0 -693
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSAGenParameterSpec.java +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSANamedCurveSpec.java +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSANamedCurveTable.java +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSAParameterSpec.java +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSAPrivateKeySpec.java +0 -133
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSAPublicKeySpec.java +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/org/cryptorb/Ed25519Provider.java +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/.sitearchdir.time +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/Makefile +0 -266
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/api.h +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/base.h +0 -1344
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/base2.h +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/d.h +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/d2.h +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ed25519_ref10.c +0 -99
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ed25519_ref10.h +0 -33
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ed25519_ref10.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ed25519_ref10.so +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/extconf.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/fe.c +0 -1085
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/fe.h +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/fe.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge.c +0 -407
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge.h +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge_add.h +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge_madd.h +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge_msub.h +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge_p2_dbl.h +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge_sub.h +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/keypair.c +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/keypair.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/open.c +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/open.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/pow22523.h +0 -160
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/pow225521.h +0 -160
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sc.h +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sc_muladd.c +0 -366
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sc_muladd.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sc_reduce.c +0 -272
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sc_reduce.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sha512.c +0 -304
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sha512.h +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sha512.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sign.c +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sign.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sqrtm1.h +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/verify.c +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/verify.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/lib/ed25519/signing_key.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/lib/ed25519/verify_key.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/lib/ed25519/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/lib/ed25519.rb +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/erubi-1.10.0/CHANGELOG +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/erubi-1.10.0/MIT-LICENSE +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/erubi-1.10.0/README.rdoc +0 -109
- data/vendor/bundle/ruby/3.0.0/gems/erubi-1.10.0/Rakefile +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/erubi-1.10.0/lib/erubi/capture_end.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/erubi-1.10.0/lib/erubi.rb +0 -227
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/CONTRIBUTING.md +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/CONTRIBUTORS.md +0 -140
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/LICENSE.md +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/README.md +0 -492
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/data/cacert.pem +0 -3232
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/excon.gemspec +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/connection.rb +0 -599
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/constants.rb +0 -172
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/error.rb +0 -229
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/extensions/uri.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/headers.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/instrumentors/logging_instrumentor.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/instrumentors/standard_instrumentor.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/base.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/capture_cookies.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/decompress.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/escape_path.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/expects.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/idempotent.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/instrumentor.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/mock.rb +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/redirect_follower.rb +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/response_parser.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/pretty_printer.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/response.rb +0 -234
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/socket.rb +0 -297
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/ssl_socket.rb +0 -194
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/test/plugin/server/exec.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/test/plugin/server/puma.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/test/plugin/server/unicorn.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/test/plugin/server/webrick.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/test/server.rb +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/unix_socket.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/utils.rb +0 -143
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/version.rb +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon.rb +0 -255
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/CONTRIBUTING.md +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/CONTRIBUTORS.md +0 -140
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/LICENSE.md +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/README.md +0 -492
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/data/cacert.pem +0 -3232
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/excon.gemspec +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/connection.rb +0 -599
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/constants.rb +0 -172
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/error.rb +0 -229
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/extensions/uri.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/headers.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/instrumentors/logging_instrumentor.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/instrumentors/standard_instrumentor.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/base.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/capture_cookies.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/decompress.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/escape_path.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/expects.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/idempotent.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/instrumentor.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/mock.rb +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/redirect_follower.rb +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/response_parser.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/pretty_printer.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/response.rb +0 -234
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/socket.rb +0 -297
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/ssl_socket.rb +0 -194
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/plugin/server/exec.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/plugin/server/puma.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/plugin/server/unicorn.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/plugin/server/webrick.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/server.rb +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/unix_socket.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/utils.rb +0 -143
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/version.rb +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon.rb +0 -255
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/.gitignore +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/.rspec +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/.travis.yml +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/CONTRIBUTORS.md +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/Gemfile +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/Gemfile.lock +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/Guardfile +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/README.md +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/Rakefile +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/fake_ftp.gemspec +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/lib/fake_ftp/file.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/lib/fake_ftp/server.rb +0 -340
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/lib/fake_ftp/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/lib/fake_ftp.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/spec/fixtures/invisible_bike.jpg +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/spec/fixtures/text_file.txt +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/spec/functional/server_spec.rb +0 -468
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/spec/integration/server_spec.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/spec/models/fake_ftp/file_spec.rb +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/spec/models/fake_ftp/server_spec.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/spec/spec_helper.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/CHANGELOG.md +0 -324
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/COPYING +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/Gemfile +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/LICENSE +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/LICENSE.SPECS +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/README.md +0 -136
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/Rakefile +0 -177
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/.sitearchdir.time +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/AbstractMemory.c +0 -1104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/AbstractMemory.h +0 -175
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/AbstractMemory.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ArrayType.c +0 -162
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ArrayType.h +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ArrayType.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Buffer.c +0 -360
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Buffer.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Call.c +0 -487
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Call.h +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Call.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ClosurePool.c +0 -333
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ClosurePool.h +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ClosurePool.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/DynamicLibrary.c +0 -334
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/DynamicLibrary.h +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/DynamicLibrary.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Function.c +0 -917
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Function.h +0 -83
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Function.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/FunctionInfo.c +0 -266
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/FunctionInfo.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/LastError.c +0 -225
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/LastError.h +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/LastError.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/LongDouble.c +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/LongDouble.h +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/LongDouble.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Makefile +0 -266
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MappedType.c +0 -168
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MappedType.h +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MappedType.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MemoryPointer.c +0 -192
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MemoryPointer.h +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MemoryPointer.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MethodHandle.c +0 -348
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MethodHandle.h +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MethodHandle.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Platform.c +0 -78
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Platform.h +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Platform.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Pointer.c +0 -507
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Pointer.h +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Pointer.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Struct.c +0 -822
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Struct.h +0 -112
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Struct.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/StructByValue.c +0 -145
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/StructByValue.h +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/StructByValue.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/StructLayout.c +0 -700
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/StructLayout.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Thread.c +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Thread.h +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Thread.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Type.c +0 -379
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Type.h +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Type.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Types.c +0 -138
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Types.h +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Types.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Variadic.c +0 -303
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Variadic.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/compat.h +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/extconf.h +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/extconf.rb +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ffi.c +0 -93
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ffi.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/.appveyor.yml +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/.gitattributes +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/.gitignore +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/.travis.yml +0 -83
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/ChangeLog.old +0 -7407
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/LICENSE +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +0 -353
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/Makefile.am +0 -150
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/Makefile.in +0 -2069
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/README.md +0 -486
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/acinclude.m4 +0 -479
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/autogen.sh +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/config.guess +0 -1687
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/config.sub +0 -1851
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/configure +0 -22046
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/configure.ac +0 -415
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/configure.host +0 -318
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/doc/Makefile.am +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/doc/Makefile.in +0 -815
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/doc/libffi.texi +0 -997
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/doc/version.texi +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/fficonfig.h.in +0 -223
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +0 -201
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/include/Makefile.am +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/include/Makefile.in +0 -608
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/include/ffi.h.in +0 -523
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/include/ffi_cfi.h +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/include/ffi_common.h +0 -153
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/install-sh +0 -541
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/libffi.map.in +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/libffi.pc.in +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +0 -997
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/libtool-ldflags +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/libtool-version +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/ltmain.sh +0 -11251
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/asmcfi.m4 +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_append_flag.m4 +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +0 -194
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +0 -122
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_configure_args.m4 +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +0 -302
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +0 -267
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_require_defined.m4 +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/make_sunver.pl +0 -333
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/man/Makefile.am +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/man/Makefile.in +0 -562
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/man/ffi.3 +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/man/ffi_call.3 +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/man/ffi_prep_cif.3 +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/missing +0 -215
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +0 -33
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +0 -511
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +0 -219
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/msvcc.sh +0 -353
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/aarch64/ffi.c +0 -1025
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/aarch64/ffitarget.h +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/aarch64/internal.h +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/aarch64/sysv.S +0 -451
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +0 -506
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/alpha/ffi.c +0 -521
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/alpha/ffitarget.h +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/alpha/internal.h +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/alpha/osf.S +0 -282
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/arc/arcompact.S +0 -135
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/arc/ffi.c +0 -266
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/arc/ffitarget.h +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/arm/ffi.c +0 -876
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/arm/ffitarget.h +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/arm/internal.h +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/arm/sysv.S +0 -385
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +0 -311
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/avr32/ffi.c +0 -423
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/avr32/ffitarget.h +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/avr32/sysv.S +0 -208
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/bfin/ffi.c +0 -196
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/bfin/ffitarget.h +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/bfin/sysv.S +0 -179
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/closures.c +0 -1021
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/cris/ffi.c +0 -386
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/cris/ffitarget.h +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/cris/sysv.S +0 -215
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/csky/ffi.c +0 -395
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/csky/ffitarget.h +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/csky/sysv.S +0 -371
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/debug.c +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/dlmalloc.c +0 -5166
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/frv/eabi.S +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/frv/ffi.c +0 -292
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/frv/ffitarget.h +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/ia64/ffi.c +0 -604
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/ia64/ffitarget.h +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/ia64/ia64_flags.h +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/ia64/unix.S +0 -567
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/java_raw_api.c +0 -374
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/kvx/asm.h +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/kvx/ffi.c +0 -273
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/kvx/ffitarget.h +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/kvx/sysv.S +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m32r/ffi.c +0 -232
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m32r/ffitarget.h +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m32r/sysv.S +0 -121
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m68k/ffi.c +0 -362
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m68k/ffitarget.h +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m68k/sysv.S +0 -357
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m88k/ffi.c +0 -400
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m88k/ffitarget.h +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m88k/obsd.S +0 -209
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/metag/ffi.c +0 -330
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/metag/ffitarget.h +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/metag/sysv.S +0 -311
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/microblaze/ffi.c +0 -321
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/microblaze/ffitarget.h +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/microblaze/sysv.S +0 -302
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/mips/ffi.c +0 -1134
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/mips/ffitarget.h +0 -244
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/mips/n32.S +0 -663
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/mips/o32.S +0 -504
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/moxie/eabi.S +0 -101
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/moxie/ffi.c +0 -285
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/moxie/ffitarget.h +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/nios2/ffi.c +0 -304
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/nios2/ffitarget.h +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/nios2/sysv.S +0 -136
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/or1k/ffi.c +0 -328
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/or1k/ffitarget.h +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/or1k/sysv.S +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/pa/ffi.c +0 -674
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/pa/ffitarget.h +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/pa/hpux32.S +0 -370
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/pa/linux.S +0 -380
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/aix.S +0 -566
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/aix_closure.S +0 -694
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/asm.h +0 -125
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/darwin.S +0 -378
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +0 -571
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/ffi.c +0 -175
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +0 -1452
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +0 -1153
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +0 -105
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +0 -923
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/ffitarget.h +0 -204
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/linux64.S +0 -291
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +0 -564
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +0 -397
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/sysv.S +0 -173
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/prep_cif.c +0 -263
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/raw_api.c +0 -267
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/riscv/ffi.c +0 -481
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/riscv/ffitarget.h +0 -69
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/riscv/sysv.S +0 -293
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/s390/ffi.c +0 -756
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/s390/ffitarget.h +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/s390/internal.h +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/s390/sysv.S +0 -325
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sh/ffi.c +0 -717
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sh/ffitarget.h +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sh/sysv.S +0 -850
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sh64/ffi.c +0 -469
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sh64/ffitarget.h +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sh64/sysv.S +0 -539
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sparc/ffi.c +0 -468
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sparc/ffi64.c +0 -608
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sparc/ffitarget.h +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sparc/internal.h +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sparc/v8.S +0 -443
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sparc/v9.S +0 -440
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/tile/ffi.c +0 -355
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/tile/ffitarget.h +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/tile/tile.S +0 -360
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/types.c +0 -108
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/vax/elfbsd.S +0 -195
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/vax/ffi.c +0 -276
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/vax/ffitarget.h +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/asmnames.h +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/ffi.c +0 -770
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/ffi64.c +0 -895
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/ffitarget.h +0 -160
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/ffiw64.c +0 -318
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/internal.h +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/internal64.h +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/sysv.S +0 -1138
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/sysv_intel.S +0 -995
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/unix64.S +0 -621
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/win64.S +0 -241
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/win64_intel.S +0 -238
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/xtensa/ffi.c +0 -298
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/xtensa/ffitarget.h +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/xtensa/sysv.S +0 -258
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/stamp-h.in +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/Makefile.am +0 -122
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/Makefile.in +0 -648
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/config/default.exp +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/lib/libffi.exp +0 -660
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +0 -283
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +0 -78
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +0 -1745
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +0 -2885
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +0 -743
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +0 -46
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +0 -46
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +0 -138
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/float.c +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/many.c +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +0 -78
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +0 -46
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +0 -114
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +0 -196
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +0 -121
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +0 -123
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +0 -125
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +0 -92
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +0 -94
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +0 -96
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +0 -93
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +0 -113
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +0 -109
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +0 -124
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +0 -113
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +0 -99
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +0 -93
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +0 -92
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +0 -115
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +0 -92
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +0 -93
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double.c +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +0 -105
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_args.c +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_float_double.c +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +0 -142
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +0 -114
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar_va.c +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort_va.c +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/err_bad_abi.c +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +0 -138
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +0 -343
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +0 -152
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +0 -161
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +0 -121
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +0 -110
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +0 -112
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +0 -131
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +0 -131
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +0 -131
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/problem1.c +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large.c +0 -145
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large2.c +0 -148
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +0 -124
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +0 -125
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +0 -78
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi.bsd.mk +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi.darwin.mk +0 -105
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi.gnu.mk +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi.mk +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi.vc.mk +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi.vc64.mk +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/rbffi.h +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/rbffi_endian.h +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ffi.gemspec +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/abstract_memory.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/autopointer.rb +0 -203
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/buffer.rb +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/callback.rb +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/data_converter.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/enum.rb +0 -296
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/errno.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/ffi.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/io.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/library.rb +0 -592
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/managedstruct.rb +0 -84
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/memorypointer.rb +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/aarch64-darwin/types.conf +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/aarch64-freebsd/types.conf +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/aarch64-freebsd12/types.conf +0 -181
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/aarch64-linux/types.conf +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/aarch64-openbsd/types.conf +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/arm-freebsd/types.conf +0 -152
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/arm-freebsd12/types.conf +0 -152
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/arm-linux/types.conf +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-cygwin/types.conf +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-darwin/types.conf +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-freebsd/types.conf +0 -152
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-freebsd12/types.conf +0 -152
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-gnu/types.conf +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-linux/types.conf +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-netbsd/types.conf +0 -126
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-openbsd/types.conf +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-solaris/types.conf +0 -122
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-windows/types.conf +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/ia64-linux/types.conf +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/mips-linux/types.conf +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/mips64-linux/types.conf +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/mips64el-linux/types.conf +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/mipsel-linux/types.conf +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/mipsisa32r6-linux/types.conf +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/mipsisa32r6el-linux/types.conf +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/mipsisa64r6-linux/types.conf +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/mipsisa64r6el-linux/types.conf +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/powerpc-aix/types.conf +0 -180
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/powerpc-darwin/types.conf +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/powerpc-linux/types.conf +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/powerpc-openbsd/types.conf +0 -156
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/powerpc64-linux/types.conf +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/powerpc64le-linux/types.conf +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/riscv64-linux/types.conf +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/s390-linux/types.conf +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/s390x-linux/types.conf +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/sparc-linux/types.conf +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/sparc-solaris/types.conf +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/sparc64-linux/types.conf +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/sparcv9-openbsd/types.conf +0 -156
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/sparcv9-solaris/types.conf +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-cygwin/types.conf +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-darwin/types.conf +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-dragonflybsd/types.conf +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-freebsd/types.conf +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-freebsd12/types.conf +0 -158
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-haiku/types.conf +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-linux/types.conf +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-msys/types.conf +0 -119
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-netbsd/types.conf +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-openbsd/types.conf +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-solaris/types.conf +0 -122
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-windows/types.conf +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform.rb +0 -185
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/pointer.rb +0 -167
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/struct.rb +0 -316
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/struct_by_reference.rb +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/struct_layout.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/struct_layout_builder.rb +0 -227
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/tools/const_generator.rb +0 -231
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/tools/generator.rb +0 -105
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/tools/struct_generator.rb +0 -195
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/tools/types_generator.rb +0 -137
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/types.rb +0 -194
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/union.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/variadic.rb +0 -69
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi.rb +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/rakelib/ffi_gem_helper.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/samples/getlogin.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/samples/getpid.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/samples/gettimeofday.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/samples/hello.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/samples/inotify.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/samples/pty.rb +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/samples/qsort.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/.gitignore +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/COPYING +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/Changelog.md +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/Gemfile +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/README.md +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/Rakefile +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/VERSION +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/examples/gss_client.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/examples/gss_iov_client.rb +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/examples/gss_iov_helpers.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/examples/gss_iov_server.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/examples/gss_server.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/gssapi.gemspec +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/lib/gssapi/exceptions.rb +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/lib/gssapi/extensions.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/lib/gssapi/heimdal.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/lib/gssapi/lib_gssapi.rb +0 -416
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/lib/gssapi/lib_gssapi_loader.rb +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/lib/gssapi/simple.rb +0 -269
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/lib/gssapi.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/preamble +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/test/spec/gssapi_simple_spec.rb +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/test/spec/test_buffer_spec.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/.gitignore +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/.rspec +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/.travis.yml +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/CHANGELOG.md +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/Gemfile +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/MIT-LICENSE +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/README.md +0 -192
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/Rakefile +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/gyoku.gemspec +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/lib/gyoku/array.rb +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/lib/gyoku/hash.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/lib/gyoku/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/lib/gyoku/xml_key.rb +0 -69
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/lib/gyoku/xml_value.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/lib/gyoku.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/spec/gyoku/array_spec.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/spec/gyoku/hash_spec.rb +0 -390
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/spec/gyoku/xml_key_spec.rb +0 -78
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/spec/gyoku/xml_value_spec.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/spec/gyoku_spec.rb +0 -84
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/spec/spec_helper.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/.gitignore +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/Gemfile +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/LICENSE.txt +0 -354
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/README.md +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/Rakefile +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/lib/checkpoint/platform.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/lib/checkpoint/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/lib/checkpoint.rb +0 -125
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/ruby-checkpoint.gemspec +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/spec/checkpoint_spec.rb +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/spec/helper.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/README.md +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/bin/httpclient +0 -77
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/bin/jsonclient +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/hexdump.rb +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/http-access2/cookie.rb +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/http-access2/http.rb +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/http-access2.rb +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/auth.rb +0 -924
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/cacert.pem +0 -3952
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/cacert1024.pem +0 -3866
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/connection.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/cookie.rb +0 -220
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/http.rb +0 -1082
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/include_client.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/jruby_ssl_socket.rb +0 -588
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/session.rb +0 -960
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/ssl_config.rb +0 -424
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/ssl_socket.rb +0 -150
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/timeout.rb +0 -140
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/util.rb +0 -222
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/webagent-cookie.rb +0 -459
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient.rb +0 -1327
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/jsonclient.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/oauthclient.rb +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/async.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/auth.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/cookie.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/dav.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/howto.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/jsonclient.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/oauth_buzz.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/oauth_friendfeed.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/oauth_twitter.rb +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/ssl/0cert.pem +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/ssl/0key.pem +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/ssl/1000cert.pem +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/ssl/1000key.pem +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/ssl/htdocs/index.html +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/ssl/ssl_client.rb +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/ssl/webrick_httpsd.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/stream.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/thread.rb +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/wcat.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/ca-chain.pem +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/ca.cert +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/client-pass.key +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/client.cert +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/client.key +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/helper.rb +0 -131
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/htdigest +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/htpasswd +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/jruby_ssl_socket/test_pemutils.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/runner.rb +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/server.cert +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/server.key +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/sslsvr.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/subca.cert +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_auth.rb +0 -492
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_cookie.rb +0 -309
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_hexdump.rb +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_http-access2.rb +0 -508
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_httpclient.rb +0 -2145
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_include_client.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_jsonclient.rb +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_ssl.rb +0 -559
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_webagent-cookie.rb +0 -465
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/MIT-LICENSE +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/README.md +0 -122
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/base.rb +0 -285
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/cache.rb +0 -113
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/cache_file.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/cascade.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/chain.rb +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/fallbacks.rb +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/flatten.rb +0 -118
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/gettext.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/interpolation_compiler.rb +0 -123
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/key_value.rb +0 -206
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/memoize.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/metadata.rb +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/pluralization.rb +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/simple.rb +0 -109
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/transliterator.rb +0 -108
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/config.rb +0 -165
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/core_ext/hash.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/exceptions.rb +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/gettext/helpers.rb +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/gettext/po_parser.rb +0 -329
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/gettext.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/interpolate/ruby.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/locale/fallbacks.rb +0 -99
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/locale/tag/parents.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/locale/tag/rfc4646.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/locale/tag/simple.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/locale/tag.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/locale.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/middleware.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/basics.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/defaults.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/interpolation.rb +0 -163
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/link.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/localization/date.rb +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/localization/date_time.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/localization/procs.rb +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/localization/time.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/localization.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/lookup.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/pluralization.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/procs.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests.rb +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n.rb +0 -415
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/MIT-LICENSE +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/README.md +0 -122
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/base.rb +0 -289
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/cache.rb +0 -113
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/cache_file.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/cascade.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/chain.rb +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/fallbacks.rb +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/flatten.rb +0 -118
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/gettext.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/interpolation_compiler.rb +0 -123
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/key_value.rb +0 -206
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/memoize.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/metadata.rb +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/pluralization.rb +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/simple.rb +0 -108
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/transliterator.rb +0 -108
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/config.rb +0 -165
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/core_ext/hash.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/exceptions.rb +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/gettext/helpers.rb +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/gettext/po_parser.rb +0 -329
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/gettext.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/interpolate/ruby.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/fallbacks.rb +0 -99
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/tag/parents.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/tag/rfc4646.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/tag/simple.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/tag.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/middleware.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/basics.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/defaults.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/interpolation.rb +0 -163
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/link.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization/date.rb +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization/date_time.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization/procs.rb +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization/time.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/lookup.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/pluralization.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/procs.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests.rb +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n.rb +0 -415
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/CHANGELOG.md +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/CONTRIBUTING.md +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/LICENSE.txt +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/README.md +0 -462
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/bin/listen +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/adapter/base.rb +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/adapter/bsd.rb +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/adapter/config.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/adapter/darwin.rb +0 -77
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/adapter/linux.rb +0 -108
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/adapter/polling.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/adapter/windows.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/adapter.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/backend.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/change.rb +0 -69
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/cli.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/directory.rb +0 -93
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/error.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/event/config.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/event/loop.rb +0 -94
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/event/processor.rb +0 -126
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/event/queue.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/file.rb +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/fsm.rb +0 -133
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/listener/config.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/listener.rb +0 -136
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/logger.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/monotonic_time.rb +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/options.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/queue_optimizer.rb +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/record/entry.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/record/symlink_detector.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/record.rb +0 -120
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/silencer/controller.rb +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/silencer.rb +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/thread.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/little-plugger-1.1.4/.gitignore +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/little-plugger-1.1.4/History.txt +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/little-plugger-1.1.4/README.rdoc +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/little-plugger-1.1.4/Rakefile +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/little-plugger-1.1.4/lib/little-plugger.rb +0 -323
- data/vendor/bundle/ruby/3.0.0/gems/little-plugger-1.1.4/spec/little-plugger_spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/little-plugger-1.1.4/spec/spec_helper.rb +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/content/contact.html +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/content/contribute.html +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/content/index.html +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/content/license.html +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/content/manual.html +0 -449
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/dev/README.developers +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/dev/checklist +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/dev/things-to-do +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/images/log4r-logo.png +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/images/logo2.png +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/log4r.css +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/rdoc-log4r.css +0 -696
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/templates/main.html +0 -147
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/README +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/ancestors.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/chainsaw_settings.xml +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/customlevels.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/filelog.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/fileroll.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/gmail.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/gmail.yaml +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/log4r_yaml.yaml +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/logclient.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/logserver.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/moderate.xml +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/moderateconfig.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/myformatter.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/outofthebox.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/rdoc-gen +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/rrconfig.xml +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/rrsetup.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/simpleconfig.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/syslogcustom.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/xmlconfig.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/yaml.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/GDC.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/MDC.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/NDC.rb +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/base.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/config.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/configurator.rb +0 -224
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/formatter/formatter.rb +0 -105
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/formatter/log4jxmlformatter.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/formatter/patternformatter.rb +0 -145
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/lib/drbloader.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/lib/xmlloader.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/logevent.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/logger.rb +0 -199
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/loggerfactory.rb +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/logserver.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/consoleoutputters.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/datefileoutputter.rb +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/emailoutputter.rb +0 -143
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/fileoutputter.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/iooutputter.rb +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/outputter.rb +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/outputterfactory.rb +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/remoteoutputter.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/rollingfileoutputter.rb +0 -234
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/scribeoutputter.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/staticoutputter.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/syslogoutputter.rb +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/GDC +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/MDC +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/NDC +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/configurator +0 -243
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/emailoutputter +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/formatter +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/log4jxmlformatter +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/log4r +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/logger +0 -175
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/logserver +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/outputter +0 -108
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/patternformatter +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/scribeoutputter +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/syslogoutputter +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/win32eventoutputter +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/yamlconfigurator +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/repository.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/staticlogger.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/version.rb +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/yamlconfigurator.rb +0 -198
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/README +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testGDC.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testMDC.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testNDC.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/test_helper.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testall.rb +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testbase.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testchainsaw.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testconf.xml +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testcustom.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testformatter.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testlogger.rb +0 -200
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testoutputter.rb +0 -143
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testpatternformatter.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testthreads.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testxmlconf.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testyaml.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testyaml_arrays.yaml +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testyaml_injection.yaml +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/.gitignore +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/.travis.yml +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/History.txt +0 -433
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/LICENSE +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/README.md +0 -138
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/Rakefile +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/appenders.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/classes.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/colorization.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/custom_log_levels.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/fork.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/formatting.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/hierarchies.rb +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/layouts.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/lazy.rb +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/loggers.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/mdc.rb +0 -83
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/names.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/rails4.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/reusing_layouts.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/rspec_integration.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/simple.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appender.rb +0 -324
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appenders/buffering.rb +0 -485
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appenders/console.rb +0 -92
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appenders/file.rb +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appenders/io.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appenders/rolling_file.rb +0 -435
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appenders/string_io.rb +0 -92
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appenders/syslog.rb +0 -214
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appenders.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/color_scheme.rb +0 -265
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/diagnostic_context.rb +0 -482
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/filter.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/filters/level.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/filters.rb +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/layout.rb +0 -260
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/layouts/basic.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/layouts/parseable.rb +0 -297
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/layouts/pattern.rb +0 -566
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/layouts.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/log_event.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/logger.rb +0 -518
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/proxy.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/rails_compat.rb +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/repository.rb +0 -216
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/root_logger.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/utils.rb +0 -170
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/version.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging.rb +0 -597
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/rspec/logging_helper.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/spec/logging_helper.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/logging.gemspec +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/script/bootstrap +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/script/console +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/appenders/test_async_flushing.rb +0 -194
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/appenders/test_buffered_io.rb +0 -224
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/appenders/test_console.rb +0 -108
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/appenders/test_file.rb +0 -150
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/appenders/test_io.rb +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/appenders/test_rolling_file.rb +0 -323
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/appenders/test_string_io.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/appenders/test_syslog.rb +0 -200
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/benchmark.rb +0 -113
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/layouts/test_basic.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/layouts/test_color_pattern.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/layouts/test_json.rb +0 -185
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/layouts/test_nested_exceptions.rb +0 -124
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/layouts/test_pattern.rb +0 -249
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/layouts/test_yaml.rb +0 -180
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/performance.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/setup.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_appender.rb +0 -205
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_color_scheme.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_filter.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_layout.rb +0 -165
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_log_event.rb +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_logger.rb +0 -739
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_logging.rb +0 -283
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_mapped_diagnostic_context.rb +0 -135
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_nested_diagnostic_context.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_proxy.rb +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_repository.rb +0 -149
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_root_logger.rb +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_utils.rb +0 -79
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/Code-of-Conduct.md +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/Contributing.md +0 -143
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/History.md +0 -240
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/Licence.md +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/Manifest.txt +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/README.rdoc +0 -193
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/Rakefile +0 -284
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/type/columnar.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/type.rb +0 -587
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/_columnar.rb +0 -136
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/cache.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/columnar.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/container.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/deprecations.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/full.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/loader.rb +0 -146
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/logger.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/registry.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types.rb +0 -231
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime-types.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/bad-fixtures/malformed +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/fixture/json.json +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/fixture/old-data +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/fixture/yaml.yaml +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/minitest_helper.rb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/test_mime_type.rb +0 -610
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/test_mime_types.rb +0 -169
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/test_mime_types_cache.rb +0 -118
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/test_mime_types_class.rb +0 -159
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/test_mime_types_lazy.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/test_mime_types_loader.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Code-of-Conduct.md +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Contributing.md +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/History.md +0 -269
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Licence.md +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Manifest.txt +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/README.rdoc +0 -194
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Rakefile +0 -270
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/type/columnar.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/type.rb +0 -634
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/_columnar.rb +0 -137
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/cache.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/columnar.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/container.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/deprecations.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/full.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/loader.rb +0 -159
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/logger.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/registry.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types.rb +0 -233
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime-types.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/bad-fixtures/malformed +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/fixture/json.json +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/fixture/old-data +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/fixture/yaml.yaml +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/minitest_helper.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_type.rb +0 -621
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types.rb +0 -169
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types_cache.rb +0 -118
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types_class.rb +0 -159
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types_lazy.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types_loader.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/Code-of-Conduct.md +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/Contributing.md +0 -225
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/History.md +0 -479
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/Licence.md +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/Manifest.txt +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/README.md +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/Rakefile +0 -160
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime-types.json +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime.content_type.column +0 -2353
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime.docs.column +0 -2353
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime.encoding.column +0 -2353
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime.flags.column +0 -2353
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime.friendly.column +0 -2353
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime.pext.column +0 -2353
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime.use_instead.column +0 -2353
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime.xrefs.column +0 -2353
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/lib/mime/types/data.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/lib/mime-types-data.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/application.yaml +0 -17200
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/audio.yaml +0 -1716
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/chemical.yaml +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/conference.yaml +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/drawing.yaml +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/font.yaml +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/image.yaml +0 -1251
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/message.yaml +0 -200
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/model.yaml +0 -390
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/multipart.yaml +0 -179
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/text.yaml +0 -1157
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/video.yaml +0 -1121
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/world.yaml +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Code-of-Conduct.md +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Contributing.md +0 -241
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/History.md +0 -494
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Licence.md +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Manifest.txt +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/README.md +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Rakefile +0 -155
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/content_type_mime.db +0 -878
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/ext_mime.db +0 -1198
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime-types.json +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.content_type.column +0 -2376
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.docs.column +0 -2376
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.encoding.column +0 -2376
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.flags.column +0 -2376
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.friendly.column +0 -2376
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.pext.column +0 -2376
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.use_instead.column +0 -2376
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.xrefs.column +0 -2376
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/lib/mime/types/data.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/lib/mime-types-data.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/application.yaml +0 -17254
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/audio.yaml +0 -1716
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/chemical.yaml +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/conference.yaml +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/drawing.yaml +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/font.yaml +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/image.yaml +0 -1251
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/message.yaml +0 -200
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/model.yaml +0 -390
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/multipart.yaml +0 -179
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/provisional-standard-types.yaml +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/text.yaml +0 -1166
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/video.yaml +0 -1121
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/world.yaml +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/CHANGELOG.md +0 -275
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/CONTRIBUTING.md +0 -46
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/LICENSE.md +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/README.md +0 -121
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapter.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapter_error.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/gson.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/jr_jackson.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/json_common.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/json_gem.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/json_pure.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/nsjsonserialization.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/oj.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/ok_json.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/yajl.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/convertible_hash_keys.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/options.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/options_cache.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/parse_error.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/vendor/okjson.rb +0 -606
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/version.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json.rb +0 -161
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/.gitignore +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/.travis.yml +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/CHANGES.txt +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/Gemfile +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/LICENSE.txt +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/Manifest +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/README.rdoc +0 -124
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/Rakefile +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/lib/net/scp/download.rb +0 -165
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/lib/net/scp/errors.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/lib/net/scp/upload.rb +0 -142
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/lib/net/scp/version.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/lib/net/scp.rb +0 -448
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/lib/uri/open-scp.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/lib/uri/scp.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/net-scp-public_cert.pem +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/net-scp.gemspec +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/setup.rb +0 -1331
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/.gitignore +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/.travis.yml +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/CHANGES.txt +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/Gemfile +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/LICENSE.txt +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/Manifest +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/README.rdoc +0 -118
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/Rakefile +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/constants.rb +0 -187
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/errors.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/operations/dir.rb +0 -93
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/operations/download.rb +0 -365
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/operations/file.rb +0 -198
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/operations/file_factory.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/operations/upload.rb +0 -395
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/packet.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/01/attributes.rb +0 -315
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/01/base.rb +0 -268
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/01/name.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/02/base.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/03/base.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/04/attributes.rb +0 -152
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/04/base.rb +0 -94
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/04/name.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/05/base.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/06/attributes.rb +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/06/base.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/base.rb +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/request.rb +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/response.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/session.rb +0 -954
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/version.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp.rb +0 -78
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/net-sftp-public_cert.pem +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/net-sftp.gemspec +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/setup.rb +0 -1331
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/.gitignore +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/.rubocop.yml +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/.rubocop_todo.yml +0 -982
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/.travis.yml +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/CHANGES.txt +0 -685
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/Gemfile +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/Gemfile.noed25519 +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/ISSUE_TEMPLATE.md +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/LICENSE.txt +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/Manifest +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/README.md +0 -287
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/Rakefile +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/THANKS.txt +0 -110
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/appveyor.yml +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/agent.rb +0 -268
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/certificate.rb +0 -180
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/constants.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/ed25519.rb +0 -181
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/ed25519_loader.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/key_manager.rb +0 -298
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/methods/abstract.rb +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/methods/hostbased.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/methods/keyboard_interactive.rb +0 -77
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/methods/none.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/methods/password.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/methods/publickey.rb +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/pageant.rb +0 -497
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/pub_key_fingerprint.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/session.rb +0 -164
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/buffer.rb +0 -429
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/buffered_io.rb +0 -203
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/config.rb +0 -393
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/connection/channel.rb +0 -692
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/connection/constants.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/connection/event_loop.rb +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/connection/keepalive.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/connection/session.rb +0 -711
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/connection/term.rb +0 -182
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/errors.rb +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/key_factory.rb +0 -219
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/known_hosts.rb +0 -196
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/loggable.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/packet.rb +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/prompt.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/proxy/command.rb +0 -123
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/proxy/errors.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/proxy/http.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/proxy/https.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/proxy/jump.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/proxy/socks4.rb +0 -69
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/proxy/socks5.rb +0 -142
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/service/forward.rb +0 -426
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test/channel.rb +0 -149
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test/extensions.rb +0 -173
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test/kex.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test/local_packet.rb +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test/packet.rb +0 -101
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test/remote_packet.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test/script.rb +0 -182
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test/socket.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test.rb +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/algorithms.rb +0 -499
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/cipher_factory.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/constants.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/ctr.rb +0 -115
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/abstract.rb +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/md5.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/md5_96.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/none.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/ripemd160.rb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/sha1.rb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/sha1_96.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/sha2_256.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/sha2_256_96.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/sha2_256_etm.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/sha2_512.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/sha2_512_96.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/sha2_512_etm.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/identity_cipher.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/abstract.rb +0 -123
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/abstract5656.rb +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/curve25519_sha256.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/curve25519_sha256_loader.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/diffie_hellman_group14_sha1.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb +0 -122
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha256.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/ecdh_sha2_nistp256.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/ecdh_sha2_nistp384.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/ecdh_sha2_nistp521.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/key_expander.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/openssl.rb +0 -249
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/packet_stream.rb +0 -281
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/server_version.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/session.rb +0 -352
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/state.rb +0 -208
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/verifiers/accept_new.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/verifiers/accept_new_or_local_tunnel.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/verifiers/always.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/verifiers/never.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/version.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh.rb +0 -331
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/net-ssh-public_cert.pem +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/net-ssh.gemspec +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/support/ssh_tunnel_bug.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/.gitignore +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/.rspec +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/.travis.yml +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/CHANGELOG.md +0 -212
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/Gemfile +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/LICENSE +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/README.md +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/Rakefile +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/benchmark/benchmark.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/benchmark/soap_response.xml +0 -266
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/core_ext/hash.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/core_ext/object.rb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/core_ext/string.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/core_ext.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/parser/nokogiri.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/parser/rexml.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/string_io_file.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/string_with_attributes.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/xml_utility_node.rb +0 -261
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori.rb +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/nori.gemspec +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/spec/nori/api_spec.rb +0 -184
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/spec/nori/core_ext/hash_spec.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/spec/nori/core_ext/object_spec.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/spec/nori/core_ext/string_spec.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/spec/nori/nori_spec.rb +0 -645
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/spec/spec_helper.rb +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/History.rdoc +0 -2403
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/MIT-LICENSE +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/README.rdoc +0 -155
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/command_line_usage.rdoc +0 -158
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/example/Rakefile1 +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/example/Rakefile2 +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/example/a.c +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/example/b.c +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/example/main.c +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/glossary.rdoc +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/jamis.rb +0 -592
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/proto_rake.rdoc +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/rake.1 +0 -156
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/rakefile.rdoc +0 -622
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/rational.rdoc +0 -151
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/exe/rake +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/application.rb +0 -831
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/backtrace.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/clean.rb +0 -78
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/cloneable.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/cpu_counter.rb +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/default_loader.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/dsl_definition.rb +0 -195
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/early_time.rb +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/ext/core.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/ext/string.rb +0 -176
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/file_creation_task.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/file_list.rb +0 -435
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/file_task.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/file_utils.rb +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/file_utils_ext.rb +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/invocation_chain.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/invocation_exception_mixin.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/late_time.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/linked_list.rb +0 -112
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/loaders/makefile.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/multi_task.rb +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/name_space.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/packagetask.rb +0 -222
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/phony.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/private_reader.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/promise.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/pseudo_status.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/rake_module.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/rake_test_loader.rb +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/rule_recursion_overflow_error.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/scope.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/task.rb +0 -434
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/task_argument_error.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/task_arguments.rb +0 -109
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/task_manager.rb +0 -331
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/tasklib.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/testtask.rb +0 -189
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/thread_history_display.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/thread_pool.rb +0 -163
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/trace_output.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/version.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/win32.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake.rb +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/rake.gemspec +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/.gitignore +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/Gemfile +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/Guardfile +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/LICENSE.txt +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/README.md +0 -260
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/Rakefile +0 -33
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/bin/fsevent_watch +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/LICENSE +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/FSEventsFix.c +0 -626
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/FSEventsFix.h +0 -105
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/TSICTString.c +0 -373
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/TSICTString.h +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/cli.c +0 -201
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/cli.h +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/common.h +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/compat.c +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/compat.h +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/defines.h +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/main.c +0 -548
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/signal_handlers.c +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/signal_handlers.h +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/rakefile.rb +0 -231
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/lib/otnetstring.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/lib/rb-fsevent/fsevent.rb +0 -157
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/lib/rb-fsevent/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/lib/rb-fsevent.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/rb-fsevent.gemspec +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/.gitignore +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/.travis.yml +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/.yardopts +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/Gemfile +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/LICENSE.md +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/README.md +0 -113
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/Rakefile +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/lib/rb-inotify/errors.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/lib/rb-inotify/event.rb +0 -146
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/lib/rb-inotify/native/flags.rb +0 -94
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/lib/rb-inotify/native.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/lib/rb-inotify/notifier.rb +0 -326
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/lib/rb-inotify/version.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/lib/rb-inotify/watcher.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/lib/rb-inotify.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/rb-inotify.gemspec +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/spec/inotify_spec.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/spec/notifier_spec.rb +0 -180
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/spec/spec_helper.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/.gitignore +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/.rspec +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/.yardopts +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/Gemfile +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/MIT-LICENSE +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/README.md +0 -92
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/Rakefile +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/event.rb +0 -92
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/native/flags.rb +0 -153
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/native.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/queue.rb +0 -371
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/watcher/file.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/watcher/process.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/watcher/read_write.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/watcher/signal.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/watcher/socket_read_write.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/watcher/timer.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/watcher.rb +0 -124
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/rb-kqueue.gemspec +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/spec/kqueue_queue_spec.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/spec/spec_helper.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/LICENSE.txt +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/NEWS.md +0 -178
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/README.md +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/context.rdoc +0 -143
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/child.rdoc +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/document.rdoc +0 -276
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/element.rdoc +0 -602
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/node.rdoc +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/parent.rdoc +0 -267
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/child_toc.rdoc +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/document_toc.rdoc +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/element_toc.rdoc +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/master_toc.rdoc +0 -135
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/node_toc.rdoc +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/parent_toc.rdoc +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/attlistdecl.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/attribute.rb +0 -205
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/cdata.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/child.rb +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/comment.rb +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/doctype.rb +0 -311
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/document.rb +0 -451
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/dtd/attlistdecl.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/dtd/dtd.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/dtd/elementdecl.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/dtd/entitydecl.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/dtd/notationdecl.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/element.rb +0 -2599
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/encoding.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/entity.rb +0 -171
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/formatters/default.rb +0 -116
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/formatters/pretty.rb +0 -142
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/formatters/transitive.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/functions.rb +0 -447
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/instruction.rb +0 -79
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/light/node.rb +0 -188
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/namespace.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/node.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/output.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parent.rb +0 -166
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parseexception.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parsers/baseparser.rb +0 -694
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parsers/lightparser.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parsers/pullparser.rb +0 -197
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parsers/sax2parser.rb +0 -273
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parsers/streamparser.rb +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parsers/treeparser.rb +0 -101
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parsers/ultralightparser.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parsers/xpathparser.rb +0 -689
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/quickpath.rb +0 -266
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/rexml.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/sax2listener.rb +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/security.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/source.rb +0 -298
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/streamlistener.rb +0 -93
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/text.rb +0 -424
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/undefinednamespaceexception.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/validation/relaxng.rb +0 -539
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/validation/validation.rb +0 -144
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/validation/validationexception.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/xmldecl.rb +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/xmltokens.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/xpath.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/xpath_parser.rb +0 -974
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rspec-3.10.0/LICENSE.md +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/rspec-3.10.0/README.md +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/rspec-3.10.0/lib/rspec/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/rspec-3.10.0/lib/rspec.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/.document +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/.yardopts +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/Changelog.md +0 -2327
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/LICENSE.md +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/README.md +0 -384
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/exe/rspec +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/autorun.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/backtrace_formatter.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/coordinator.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/example_minimizer.rb +0 -173
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/fork_runner.rb +0 -138
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/server.rb +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/shell_command.rb +0 -126
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/shell_runner.rb +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/utilities.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/configuration.rb +0 -2372
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/configuration_options.rb +0 -233
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/did_you_mean.rb +0 -46
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/drb.rb +0 -120
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/dsl.rb +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/example.rb +0 -663
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/example_group.rb +0 -901
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/example_status_persister.rb +0 -235
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/filter_manager.rb +0 -231
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/flat_map.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/base_bisect_formatter.rb +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/base_formatter.rb +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/base_text_formatter.rb +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/bisect_drb_formatter.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/bisect_progress_formatter.rb +0 -157
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/console_codes.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/deprecation_formatter.rb +0 -223
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/documentation_formatter.rb +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/exception_presenter.rb +0 -521
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/failure_list_formatter.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/fallback_message_formatter.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/helpers.rb +0 -110
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/html_formatter.rb +0 -153
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/html_printer.rb +0 -414
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/html_snippet_extractor.rb +0 -120
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/json_formatter.rb +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/profile_formatter.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/progress_formatter.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/protocol.rb +0 -182
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/snippet_extractor.rb +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/syntax_highlighter.rb +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters.rb +0 -273
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/hooks.rb +0 -646
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/invocations.rb +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/memoized_helpers.rb +0 -554
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/metadata.rb +0 -498
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/metadata_filter.rb +0 -255
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/minitest_assertions_adapter.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/mocking_adapters/flexmock.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/mocking_adapters/mocha.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/mocking_adapters/null.rb +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/mocking_adapters/rr.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/mocking_adapters/rspec.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/notifications.rb +0 -521
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/option_parser.rb +0 -324
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/ordering.rb +0 -158
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/output_wrapper.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/pending.rb +0 -165
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/profiler.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/project_initializer/.rspec +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/project_initializer/spec/spec_helper.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/project_initializer.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/rake_task.rb +0 -188
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/reporter.rb +0 -265
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/ruby_project.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/runner.rb +0 -212
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/sandbox.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/set.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/shared_context.rb +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/shared_example_group.rb +0 -271
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/shell_escape.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/test_unit_assertions_adapter.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/version.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/warnings.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/world.rb +0 -277
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core.rb +0 -186
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/.document +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/.yardopts +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/Changelog.md +0 -1240
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/LICENSE.md +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/README.md +0 -320
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/block_snippet_extractor.rb +0 -253
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/configuration.rb +0 -230
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/expectation_target.rb +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/fail_with.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/failure_aggregator.rb +0 -212
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/handler.rb +0 -182
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/minitest_integration.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/syntax.rb +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/version.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations.rb +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/aliased_matcher.rb +0 -116
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/all.rb +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/base_matcher.rb +0 -193
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be.rb +0 -191
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be_between.rb +0 -77
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be_instance_of.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be_kind_of.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be_within.rb +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/change.rb +0 -428
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/compound.rb +0 -276
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/contain_exactly.rb +0 -302
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/count_expectation.rb +0 -169
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/cover.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/eq.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/eql.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/equal.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/exist.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/has.rb +0 -167
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/have_attributes.rb +0 -114
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/include.rb +0 -206
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/match.rb +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/operators.rb +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/output.rb +0 -200
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/raise_error.rb +0 -259
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/respond_to.rb +0 -200
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/satisfy.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/start_or_end_with.rb +0 -94
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/throw_symbol.rb +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/yield.rb +0 -355
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/composable.rb +0 -171
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/dsl.rb +0 -540
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/english_phrasing.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/fail_matchers.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/generated_descriptions.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/matcher_delegator.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/matcher_protocol.rb +0 -99
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers.rb +0 -1041
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/.gitignore +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/.rspec +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/.travis.yml +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/Changelog.md +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/Gemfile +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/LICENSE.txt +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/README.md +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/Rakefile +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/features/its.feature +0 -176
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/features/step_definitions/additional_cli_steps.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/features/support/env.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/lib/rspec/its/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/lib/rspec/its.rb +0 -182
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/rspec-its.gemspec +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/script/test_all +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/script/update_rubygems_and_install_bundler +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/spec/rspec/its_spec.rb +0 -380
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/spec/spec_helper.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/.document +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/.yardopts +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/Changelog.md +0 -1167
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/LICENSE.md +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/README.md +0 -463
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/chain.rb +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/error_generator.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/expect_chain_chain.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/expectation_chain.rb +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/message_chains.rb +0 -83
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/proxy.rb +0 -116
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/recorder.rb +0 -295
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/stub_chain.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/stub_chain_chain.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/argument_list_matcher.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/argument_matchers.rb +0 -322
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/configuration.rb +0 -212
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/error_generator.rb +0 -369
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/example_methods.rb +0 -434
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/instance_method_stasher.rb +0 -146
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/marshal_extension.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/matchers/expectation_customization.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/matchers/have_received.rb +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/matchers/receive.rb +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/matchers/receive_message_chain.rb +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/matchers/receive_messages.rb +0 -77
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/message_chain.rb +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/message_expectation.rb +0 -751
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/method_double.rb +0 -288
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/method_reference.rb +0 -202
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/minitest_integration.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/mutate_const.rb +0 -339
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/object_reference.rb +0 -149
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/order_group.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/proxy.rb +0 -519
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/space.rb +0 -238
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/standalone.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/syntax.rb +0 -325
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/targets.rb +0 -124
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/test_double.rb +0 -171
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/verifying_double.rb +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/verifying_message_expectation.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/verifying_proxy.rb +0 -220
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/version.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks.rb +0 -133
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/Changelog.md +0 -332
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/LICENSE.md +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/README.md +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/caller_filter.rb +0 -83
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/comparable_version.rb +0 -46
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/differ.rb +0 -215
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/directory_maker.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/encoded_string.rb +0 -161
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/fuzzy_matcher.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/hunk_generator.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/matcher_definition.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/method_signature_verifier.rb +0 -438
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/mutex.rb +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/object_formatter.rb +0 -275
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/recursive_const_methods.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/reentrant_mutex.rb +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/ruby_features.rb +0 -191
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/source/location.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/source/node.rb +0 -110
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/source/token.rb +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/source.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/deprecation_helpers.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/diff_helpers.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/formatting_support.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/in_sub_process.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/library_wide_checks.rb +0 -150
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/shell_out.rb +0 -105
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/stderr_splitter.rb +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/string_matcher.rb +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/with_isolated_directory.rb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/with_isolated_stderr.rb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec.rb +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/version.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/warnings.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/with_keywords_when_needed.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support.rb +0 -154
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/.gitignore +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/.rspec +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/.travis.yml +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/CHANGELOG.md +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/Gemfile +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/LICENSE +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/README.md +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/Rakefile +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/examples/http.rb +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/examples/imap.rb +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/examples/smtp.rb +0 -94
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/blob.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/channel_binding.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/client/session.rb +0 -237
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/client.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/encode_util.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/exceptions.rb +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/field.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/field_set.rb +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/int16_le.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/int32_le.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/int64_le.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/message/type0.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/message/type1.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/message/type2.rb +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/message/type3.rb +0 -131
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/message.rb +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/security_buffer.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/string.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/target_info.rb +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/version.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm.rb +0 -266
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/rubyntlm.rb +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/rubyntlm.gemspec +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/blob_spec.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/channel_binding_spec.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/client/session_spec.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/client_spec.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/encode_util_spec.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/field_set_spec.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/field_spec.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/int16_le_spec.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/int32_le_spec.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/int64_le_spec.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/message/type0_spec.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/message/type1_spec.rb +0 -131
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/message/type2_spec.rb +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/message/type3_spec.rb +0 -225
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/message_spec.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/security_buffer_spec.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/string_spec.rb +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/target_info_spec.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/version_spec.rb +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm_spec.rb +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/spec_helper.rb +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/support/certificates/sha_256_hash.pem +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/support/shared/examples/net/ntlm/field_shared.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/support/shared/examples/net/ntlm/fieldset_shared.rb +0 -239
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/support/shared/examples/net/ntlm/int_shared.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/support/shared/examples/net/ntlm/message_shared.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/README.md +0 -354
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/Rakefile +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/TODO +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/central_directory.rb +0 -212
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/compressor.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/constants.rb +0 -115
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/crypto/decrypted_io.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/crypto/encryption.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/crypto/null_encryption.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/crypto/traditional_encryption.rb +0 -99
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/decompressor.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/deflater.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/dos_time.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/entry.rb +0 -719
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/entry_set.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/errors.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/extra_field/generic.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/extra_field/ntfs.rb +0 -94
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/extra_field/old_unix.rb +0 -46
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/extra_field/universal_time.rb +0 -77
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/extra_field/unix.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/extra_field/zip64.rb +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/extra_field/zip64_placeholder.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/extra_field.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/file.rb +0 -468
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/filesystem.rb +0 -643
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/inflater.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/input_stream.rb +0 -180
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/ioextras/abstract_input_stream.rb +0 -122
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/ioextras/abstract_output_stream.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/ioextras.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/null_compressor.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/null_decompressor.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/null_input_stream.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/output_stream.rb +0 -198
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/pass_thru_compressor.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/pass_thru_decompressor.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/streamable_directory.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/streamable_stream.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip.rb +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/samples/example.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/samples/example_filesystem.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/samples/example_recursive.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/samples/gtk_ruby_zip.rb +0 -84
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/samples/qtzip.rb +0 -92
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/samples/write_simple.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/samples/zipfind.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/.document +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/CHANGELOG.md +0 -139
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/LICENSE.md +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/README.md +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/Thorfile +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/bin/thor +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/actions/create_file.rb +0 -105
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/actions/create_link.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/actions/directory.rb +0 -119
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/actions/empty_directory.rb +0 -137
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/actions/file_manipulation.rb +0 -314
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/actions/inject_into_file.rb +0 -109
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/actions.rb +0 -318
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/base.rb +0 -652
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/command.rb +0 -136
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/core_ext/hash_with_indifferent_access.rb +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/core_ext/io_binary_read.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/core_ext/ordered_hash.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/error.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/group.rb +0 -282
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/invocation.rb +0 -172
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/parser/argument.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/parser/arguments.rb +0 -171
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/parser/option.rb +0 -121
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/parser/options.rb +0 -218
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/parser.rb +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/rake_compat.rb +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/runner.rb +0 -322
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/shell/basic.rb +0 -393
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/shell/color.rb +0 -148
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/shell/html.rb +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/shell.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/util.rb +0 -270
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor.rb +0 -473
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/actions/create_file_spec.rb +0 -170
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/actions/create_link_spec.rb +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/actions/directory_spec.rb +0 -169
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/actions/empty_directory_spec.rb +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/actions/file_manipulation_spec.rb +0 -382
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/actions/inject_into_file_spec.rb +0 -135
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/actions_spec.rb +0 -331
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/base_spec.rb +0 -291
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/command_spec.rb +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/core_ext/hash_with_indifferent_access_spec.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/core_ext/ordered_hash_spec.rb +0 -115
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/exit_condition_spec.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/application.rb +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/app{1}/README +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/bundle/execute.rb +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/bundle/main.thor +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/command.thor +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/doc/%file_name%.rb.tt +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/doc/COMMENTER +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/doc/README +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/doc/block_helper.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/doc/config.rb +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/doc/config.yaml.tt +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/doc/excluding/%file_name%.rb.tt +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/enum.thor +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/group.thor +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/invoke.thor +0 -112
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/path with spaces +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/preserve/script.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/script.thor +0 -220
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/subcommand.thor +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/group_spec.rb +0 -216
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/helper.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/invocation_spec.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/parser/argument_spec.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/parser/arguments_spec.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/parser/option_spec.rb +0 -202
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/parser/options_spec.rb +0 -400
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/rake_compat_spec.rb +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/register_spec.rb +0 -197
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/runner_spec.rb +0 -241
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/shell/basic_spec.rb +0 -311
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/shell/color_spec.rb +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/shell/html_spec.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/shell_spec.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/subcommand_spec.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/thor_spec.rb +0 -491
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/util_spec.rb +0 -196
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/thor.gemspec +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/LICENSE +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/README.md +0 -173
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/account.rb +0 -112
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/box/provider.rb +0 -176
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/box/version.rb +0 -163
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/box.rb +0 -146
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/client.rb +0 -478
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/data.rb +0 -293
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/error.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/instrumentor/collection.rb +0 -123
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/instrumentor/core.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/instrumentor/logger.rb +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/instrumentor.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/logger.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/organization.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/response/create_token.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/response/request_2fa.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/response/search.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/response.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/search.rb +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/LICENSE +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/README.md +0 -207
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/Makefile +0 -153
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/entry.c +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/entry.h +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/extconf.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/memory.c +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/memory.h +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/monitor.c +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/monitor.h +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/queue.c +0 -196
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/queue.h +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/rb_change.c +0 -199
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/rb_change.h +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/rb_monitor.c +0 -575
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/rb_monitor.h +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/utils.c +0 -77
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/utils.h +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/wdm.c +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/wdm.h +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/wdm.sln +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/wdm.vcxproj +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/wdm.vcxproj.filters +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/lib/wdm.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/Gemfile +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/LICENSE.txt +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/README.md +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/Rakefile +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/bin/console +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/bin/setup +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/accesslog.rb +0 -157
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/cgi.rb +0 -313
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/compat.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/config.rb +0 -158
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/cookie.rb +0 -172
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/htmlutils.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpauth/authenticator.rb +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpauth/basicauth.rb +0 -116
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpauth/digestauth.rb +0 -395
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpauth/htdigest.rb +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpauth/htgroup.rb +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpauth/htpasswd.rb +0 -158
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpauth/userdb.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpauth.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpproxy.rb +0 -354
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httprequest.rb +0 -636
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpresponse.rb +0 -564
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/https.rb +0 -152
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpserver.rb +0 -294
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpservlet/abstract.rb +0 -152
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpservlet/cgi_runner.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpservlet/cgihandler.rb +0 -126
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpservlet/erbhandler.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpservlet/filehandler.rb +0 -552
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpservlet/prochandler.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpservlet.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpstatus.rb +0 -194
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httputils.rb +0 -512
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpversion.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/log.rb +0 -156
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/server.rb +0 -381
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/ssl.rb +0 -215
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/utils.rb +0 -265
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/version.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick.rb +0 -232
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/webrick.gemspec +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/LICENSE +0 -202
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/README.md +0 -276
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/bin/rwinrm +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/connection.rb +0 -84
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/connection_opts.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/exceptions.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/http/response_handler.rb +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/http/transport.rb +0 -462
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/http/transport_factory.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/output.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/create_pipeline.xml.erb +0 -167
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/fragment.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/init_runspace_pool.xml.erb +0 -224
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message.rb +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data/base.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data/error_record.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data/pipeline_host_call.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data/pipeline_output.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data/pipeline_state.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data/runspacepool_host_call.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data/runspacepool_state.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data/session_capability.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_defragmenter.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_factory.rb +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_fragmenter.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/powershell_output_decoder.rb +0 -142
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/receive_response_reader.rb +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/session_capability.xml.erb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/uuid.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/shells/base.rb +0 -188
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/shells/cmd.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/shells/power_shell.rb +0 -207
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/shells/retryable.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/shells/shell_factory.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/base.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/cleanup_command.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/close_shell.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/command.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/command_output.rb +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/command_output_decoder.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/configuration.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/create_pipeline.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/create_shell.rb +0 -115
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/header.rb +0 -213
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/init_runspace_pool.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/iso8601_duration.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/keep_alive.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/receive_response_reader.rb +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/send_data.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/soap.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/wql_pull.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/wql_query.rb +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/write_stdin.rb +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/winrm-elevated-1.2.3/LICENSE +0 -202
- data/vendor/bundle/ruby/3.0.0/gems/winrm-elevated-1.2.3/README.md +0 -99
- data/vendor/bundle/ruby/3.0.0/gems/winrm-elevated-1.2.3/lib/winrm/shells/elevated.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/winrm-elevated-1.2.3/lib/winrm-elevated/scripts/elevated_shell.ps1 +0 -150
- data/vendor/bundle/ruby/3.0.0/gems/winrm-elevated-1.2.3/lib/winrm-elevated.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/LICENSE +0 -202
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/README.md +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/bin/rwinrmcp +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/core/file_transporter.rb +0 -573
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/core/tmp_zip.rb +0 -178
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/exceptions.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/file_manager.rb +0 -171
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/scripts/check_files.ps1.erb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/scripts/checksum.ps1.erb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/scripts/create_dir.ps1.erb +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/scripts/delete.ps1.erb +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/scripts/download.ps1.erb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/scripts/exists.ps1.erb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/scripts/extract_files.ps1.erb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/scripts/scripts.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/specifications/bcrypt_pbkdf-1.1.0.gemspec +0 -43
- data/vendor/bundle/ruby/3.0.0/specifications/builder-3.2.4.gemspec +0 -23
- data/vendor/bundle/ruby/3.0.0/specifications/childprocess-4.1.0.gemspec +0 -35
- data/vendor/bundle/ruby/3.0.0/specifications/concurrent-ruby-1.1.9.gemspec +0 -24
- data/vendor/bundle/ruby/3.0.0/specifications/diff-lcs-1.4.4.gemspec +0 -50
- data/vendor/bundle/ruby/3.0.0/specifications/ed25519-1.2.4.gemspec +0 -35
- data/vendor/bundle/ruby/3.0.0/specifications/erubi-1.10.0.gemspec +0 -36
- data/vendor/bundle/ruby/3.0.0/specifications/excon-0.88.0.gemspec +0 -58
- data/vendor/bundle/ruby/3.0.0/specifications/excon-0.89.0.gemspec +0 -58
- data/vendor/bundle/ruby/3.0.0/specifications/fake_ftp-0.1.1.gemspec +0 -20
- data/vendor/bundle/ruby/3.0.0/specifications/ffi-1.15.4.gemspec +0 -42
- data/vendor/bundle/ruby/3.0.0/specifications/gssapi-1.3.1.gemspec +0 -36
- data/vendor/bundle/ruby/3.0.0/specifications/gyoku-1.3.1.gemspec +0 -35
- data/vendor/bundle/ruby/3.0.0/specifications/hashicorp-checkpoint-0.1.5.gemspec +0 -36
- data/vendor/bundle/ruby/3.0.0/specifications/httpclient-2.8.3.gemspec +0 -21
- data/vendor/bundle/ruby/3.0.0/specifications/i18n-1.8.10.gemspec +0 -32
- data/vendor/bundle/ruby/3.0.0/specifications/i18n-1.8.11.gemspec +0 -32
- data/vendor/bundle/ruby/3.0.0/specifications/listen-3.7.0.gemspec +0 -36
- data/vendor/bundle/ruby/3.0.0/specifications/little-plugger-1.1.4.gemspec +0 -32
- data/vendor/bundle/ruby/3.0.0/specifications/log4r-1.1.10.gemspec +0 -31
- data/vendor/bundle/ruby/3.0.0/specifications/logging-2.3.0.gemspec +0 -40
- data/vendor/bundle/ruby/3.0.0/specifications/mime-types-3.3.1.gemspec +0 -67
- data/vendor/bundle/ruby/3.0.0/specifications/mime-types-3.4.1.gemspec +0 -63
- data/vendor/bundle/ruby/3.0.0/specifications/mime-types-data-3.2021.0901.gemspec +0 -50
- data/vendor/bundle/ruby/3.0.0/specifications/mime-types-data-3.2021.1115.gemspec +0 -54
- data/vendor/bundle/ruby/3.0.0/specifications/multi_json-1.15.0.gemspec +0 -33
- data/vendor/bundle/ruby/3.0.0/specifications/net-scp-3.0.0.gemspec +0 -38
- data/vendor/bundle/ruby/3.0.0/specifications/net-sftp-3.0.0.gemspec +0 -38
- data/vendor/bundle/ruby/3.0.0/specifications/net-ssh-6.1.0.gemspec +0 -50
- data/vendor/bundle/ruby/3.0.0/specifications/nori-2.6.0.gemspec +0 -35
- data/vendor/bundle/ruby/3.0.0/specifications/rake-13.0.6.gemspec +0 -26
- data/vendor/bundle/ruby/3.0.0/specifications/rb-fsevent-0.11.0.gemspec +0 -35
- data/vendor/bundle/ruby/3.0.0/specifications/rb-inotify-0.10.1.gemspec +0 -38
- data/vendor/bundle/ruby/3.0.0/specifications/rb-kqueue-0.2.7.gemspec +0 -37
- data/vendor/bundle/ruby/3.0.0/specifications/rexml-3.2.5.gemspec +0 -38
- data/vendor/bundle/ruby/3.0.0/specifications/rspec-3.10.0.gemspec +0 -39
- data/vendor/bundle/ruby/3.0.0/specifications/rspec-core-3.10.1.gemspec +0 -53
- data/vendor/bundle/ruby/3.0.0/specifications/rspec-expectations-3.10.1.gemspec +0 -44
- data/vendor/bundle/ruby/3.0.0/specifications/rspec-its-1.3.0.gemspec +0 -41
- data/vendor/bundle/ruby/3.0.0/specifications/rspec-mocks-3.10.2.gemspec +0 -44
- data/vendor/bundle/ruby/3.0.0/specifications/rspec-support-3.10.2.gemspec +0 -36
- data/vendor/bundle/ruby/3.0.0/specifications/rubyntlm-0.6.3.gemspec +0 -39
- data/vendor/bundle/ruby/3.0.0/specifications/rubyzip-2.3.2.gemspec +0 -40
- data/vendor/bundle/ruby/3.0.0/specifications/thor-0.18.1.gemspec +0 -32
- data/vendor/bundle/ruby/3.0.0/specifications/vagrant_cloud-3.0.5.gemspec +0 -40
- data/vendor/bundle/ruby/3.0.0/specifications/wdm-0.1.1.gemspec +0 -41
- data/vendor/bundle/ruby/3.0.0/specifications/webrick-1.7.0.gemspec +0 -32
- data/vendor/bundle/ruby/3.0.0/specifications/winrm-2.3.6.gemspec +0 -61
- data/vendor/bundle/ruby/3.0.0/specifications/winrm-elevated-1.2.3.gemspec +0 -43
- data/vendor/bundle/ruby/3.0.0/specifications/winrm-fs-1.3.5.gemspec +0 -49
@@ -1,1327 +0,0 @@
|
|
1
|
-
# HTTPClient - HTTP client library.
|
2
|
-
# Copyright (C) 2000-2015 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
3
|
-
#
|
4
|
-
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
5
|
-
# redistribute it and/or modify it under the same terms of Ruby's license;
|
6
|
-
# either the dual license version in 2003, or any later version.
|
7
|
-
|
8
|
-
|
9
|
-
require 'stringio'
|
10
|
-
require 'digest/sha1'
|
11
|
-
|
12
|
-
# Extra library
|
13
|
-
require 'httpclient/version'
|
14
|
-
require 'httpclient/util'
|
15
|
-
require 'httpclient/ssl_config'
|
16
|
-
require 'httpclient/connection'
|
17
|
-
require 'httpclient/session'
|
18
|
-
require 'httpclient/http'
|
19
|
-
require 'httpclient/auth'
|
20
|
-
require 'httpclient/cookie'
|
21
|
-
|
22
|
-
# :main:HTTPClient
|
23
|
-
# The HTTPClient class provides several methods for accessing Web resources
|
24
|
-
# via HTTP.
|
25
|
-
#
|
26
|
-
# HTTPClient instance is designed to be MT-safe. You can call a HTTPClient
|
27
|
-
# instance from several threads without synchronization after setting up an
|
28
|
-
# instance.
|
29
|
-
#
|
30
|
-
# clnt = HTTPClient.new
|
31
|
-
# clnt.set_cookie_store('/home/nahi/cookie.dat')
|
32
|
-
# urls.each do |url|
|
33
|
-
# Thread.new(url) do |u|
|
34
|
-
# p clnt.head(u).status
|
35
|
-
# end
|
36
|
-
# end
|
37
|
-
#
|
38
|
-
# == How to use
|
39
|
-
#
|
40
|
-
# At first, how to create your client. See initialize for more detail.
|
41
|
-
#
|
42
|
-
# 1. Create simple client.
|
43
|
-
#
|
44
|
-
# clnt = HTTPClient.new
|
45
|
-
#
|
46
|
-
# 2. Accessing resources through HTTP proxy. You can use environment
|
47
|
-
# variable 'http_proxy' or 'HTTP_PROXY' instead.
|
48
|
-
#
|
49
|
-
# clnt = HTTPClient.new('http://myproxy:8080')
|
50
|
-
#
|
51
|
-
# === How to retrieve web resources
|
52
|
-
#
|
53
|
-
# See get and get_content.
|
54
|
-
#
|
55
|
-
# 1. Get content of specified URL. It returns HTTP::Message object and
|
56
|
-
# calling 'body' method of it returns a content String.
|
57
|
-
#
|
58
|
-
# puts clnt.get('http://dev.ctor.org/').body
|
59
|
-
#
|
60
|
-
# 2. For getting content directly, use get_content. It follows redirect
|
61
|
-
# response and returns a String of whole result.
|
62
|
-
#
|
63
|
-
# puts clnt.get_content('http://dev.ctor.org/')
|
64
|
-
#
|
65
|
-
# 3. You can pass :follow_redirect option to follow redirect response in get.
|
66
|
-
#
|
67
|
-
# puts clnt.get('http://dev.ctor.org/', :follow_redirect => true)
|
68
|
-
#
|
69
|
-
# 4. Get content as chunks of String. It yields chunks of String.
|
70
|
-
#
|
71
|
-
# clnt.get_content('http://dev.ctor.org/') do |chunk|
|
72
|
-
# puts chunk
|
73
|
-
# end
|
74
|
-
#
|
75
|
-
# === Invoking other HTTP methods
|
76
|
-
#
|
77
|
-
# See head, get, post, put, delete, options, propfind, proppatch and trace.
|
78
|
-
# It returns a HTTP::Message instance as a response.
|
79
|
-
#
|
80
|
-
# 1. Do HEAD request.
|
81
|
-
#
|
82
|
-
# res = clnt.head(uri)
|
83
|
-
# p res.header['Last-Modified'][0]
|
84
|
-
#
|
85
|
-
# 2. Do GET request with query.
|
86
|
-
#
|
87
|
-
# query = { 'keyword' => 'ruby', 'lang' => 'en' }
|
88
|
-
# res = clnt.get(uri, query)
|
89
|
-
# p res.status
|
90
|
-
# p res.contenttype
|
91
|
-
# p res.header['X-Custom']
|
92
|
-
# puts res.body
|
93
|
-
#
|
94
|
-
# You can also use keyword argument style.
|
95
|
-
#
|
96
|
-
# res = clnt.get(uri, :query => { :keyword => 'ruby', :lang => 'en' })
|
97
|
-
#
|
98
|
-
# === How to POST
|
99
|
-
#
|
100
|
-
# See post.
|
101
|
-
#
|
102
|
-
# 1. Do POST a form data.
|
103
|
-
#
|
104
|
-
# body = { 'keyword' => 'ruby', 'lang' => 'en' }
|
105
|
-
# res = clnt.post(uri, body)
|
106
|
-
#
|
107
|
-
# Keyword argument style.
|
108
|
-
#
|
109
|
-
# res = clnt.post(uri, :body => ...)
|
110
|
-
#
|
111
|
-
# 2. Do multipart file upload with POST. No need to set extra header by
|
112
|
-
# yourself from httpclient/2.1.4.
|
113
|
-
#
|
114
|
-
# File.open('/tmp/post_data') do |file|
|
115
|
-
# body = { 'upload' => file, 'user' => 'nahi' }
|
116
|
-
# res = clnt.post(uri, body)
|
117
|
-
# end
|
118
|
-
#
|
119
|
-
# 3. Do multipart with custom body.
|
120
|
-
#
|
121
|
-
# File.open('/tmp/post_data') do |file|
|
122
|
-
# body = [{ 'Content-Type' => 'application/atom+xml; charset=UTF-8',
|
123
|
-
# :content => '<entry>...</entry>' },
|
124
|
-
# { 'Content-Type' => 'video/mp4',
|
125
|
-
# 'Content-Transfer-Encoding' => 'binary',
|
126
|
-
# :content => file }]
|
127
|
-
# res = clnt.post(uri, body)
|
128
|
-
# end
|
129
|
-
#
|
130
|
-
# === Accessing via SSL
|
131
|
-
#
|
132
|
-
# Ruby needs to be compiled with OpenSSL.
|
133
|
-
#
|
134
|
-
# 1. Get content of specified URL via SSL.
|
135
|
-
# Just pass an URL which starts with 'https://'.
|
136
|
-
#
|
137
|
-
# https_url = 'https://www.rsa.com'
|
138
|
-
# clnt.get(https_url)
|
139
|
-
#
|
140
|
-
# 2. Getting peer certificate from response.
|
141
|
-
#
|
142
|
-
# res = clnt.get(https_url)
|
143
|
-
# p res.peer_cert #=> returns OpenSSL::X509::Certificate
|
144
|
-
#
|
145
|
-
# 3. Configuring OpenSSL options. See HTTPClient::SSLConfig for more details.
|
146
|
-
#
|
147
|
-
# user_cert_file = 'cert.pem'
|
148
|
-
# user_key_file = 'privkey.pem'
|
149
|
-
# clnt.ssl_config.set_client_cert_file(user_cert_file, user_key_file)
|
150
|
-
# clnt.get(https_url)
|
151
|
-
#
|
152
|
-
# 4. Revocation check. On JRuby you can set following options to let
|
153
|
-
# HTTPClient to perform revocation check with CRL and OCSP:
|
154
|
-
#
|
155
|
-
# -J-Dcom.sun.security.enableCRLDP=true -J-Dcom.sun.net.ssl.checkRevocation=true
|
156
|
-
# ex. jruby -J-Dcom.sun.security.enableCRLDP=true -J-Dcom.sun.net.ssl.checkRevocation=true app.rb
|
157
|
-
# Revoked cert example: https://test-sspev.verisign.com:2443/test-SSPEV-revoked-verisign.html
|
158
|
-
#
|
159
|
-
# On other platform you can download CRL by yourself and set it via
|
160
|
-
# SSLConfig#add_crl.
|
161
|
-
#
|
162
|
-
# === Handling Cookies
|
163
|
-
#
|
164
|
-
# 1. Using volatile Cookies. Nothing to do. HTTPClient handles Cookies.
|
165
|
-
#
|
166
|
-
# clnt = HTTPClient.new
|
167
|
-
# res = clnt.get(url1) # receives Cookies.
|
168
|
-
# res = clnt.get(url2) # sends Cookies if needed.
|
169
|
-
# p res.cookies
|
170
|
-
#
|
171
|
-
# 2. Saving non volatile Cookies to a specified file. Need to set a file at
|
172
|
-
# first and invoke save method at last.
|
173
|
-
#
|
174
|
-
# clnt = HTTPClient.new
|
175
|
-
# clnt.set_cookie_store('/home/nahi/cookie.dat')
|
176
|
-
# clnt.get(url)
|
177
|
-
# ...
|
178
|
-
# clnt.save_cookie_store
|
179
|
-
#
|
180
|
-
# 3. Disabling Cookies.
|
181
|
-
#
|
182
|
-
# clnt = HTTPClient.new
|
183
|
-
# clnt.cookie_manager = nil
|
184
|
-
#
|
185
|
-
# === Configuring authentication credentials
|
186
|
-
#
|
187
|
-
# 1. Authentication with Web server. Supports BasicAuth, DigestAuth, and
|
188
|
-
# Negotiate/NTLM (requires ruby/ntlm module).
|
189
|
-
#
|
190
|
-
# clnt = HTTPClient.new
|
191
|
-
# domain = 'http://dev.ctor.org/http-access2/'
|
192
|
-
# user = 'user'
|
193
|
-
# password = 'user'
|
194
|
-
# clnt.set_auth(domain, user, password)
|
195
|
-
# p clnt.get('http://dev.ctor.org/http-access2/login').status
|
196
|
-
#
|
197
|
-
# 2. Authentication with Proxy server. Supports BasicAuth and NTLM
|
198
|
-
# (requires win32/sspi)
|
199
|
-
#
|
200
|
-
# clnt = HTTPClient.new(proxy)
|
201
|
-
# user = 'proxy'
|
202
|
-
# password = 'proxy'
|
203
|
-
# clnt.set_proxy_auth(user, password)
|
204
|
-
# p clnt.get(url)
|
205
|
-
#
|
206
|
-
# === Invoking HTTP methods with custom header
|
207
|
-
#
|
208
|
-
# Pass a Hash or an Array for header argument.
|
209
|
-
#
|
210
|
-
# header = { 'Accept' => 'text/html' }
|
211
|
-
# clnt.get(uri, query, header)
|
212
|
-
#
|
213
|
-
# header = [['Accept', 'image/jpeg'], ['Accept', 'image/png']]
|
214
|
-
# clnt.get_content(uri, query, header)
|
215
|
-
#
|
216
|
-
# === Invoking HTTP methods asynchronously
|
217
|
-
#
|
218
|
-
# See head_async, get_async, post_async, put_async, delete_async,
|
219
|
-
# options_async, propfind_async, proppatch_async, and trace_async.
|
220
|
-
# It immediately returns a HTTPClient::Connection instance as a returning value.
|
221
|
-
#
|
222
|
-
# connection = clnt.post_async(url, body)
|
223
|
-
# print 'posting.'
|
224
|
-
# while true
|
225
|
-
# break if connection.finished?
|
226
|
-
# print '.'
|
227
|
-
# sleep 1
|
228
|
-
# end
|
229
|
-
# puts '.'
|
230
|
-
# res = connection.pop
|
231
|
-
# p res.status
|
232
|
-
# p res.body.read # res.body is an IO for the res of async method.
|
233
|
-
#
|
234
|
-
# === Shortcut methods
|
235
|
-
#
|
236
|
-
# You can invoke get_content, get, etc. without creating HTTPClient instance.
|
237
|
-
#
|
238
|
-
# ruby -rhttpclient -e 'puts HTTPClient.get_content(ARGV.shift)' http://dev.ctor.org/
|
239
|
-
# ruby -rhttpclient -e 'p HTTPClient.head(ARGV.shift).header["last-modified"]' http://dev.ctor.org/
|
240
|
-
#
|
241
|
-
class HTTPClient
|
242
|
-
RUBY_VERSION_STRING = "ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE})"
|
243
|
-
LIB_NAME = "(#{VERSION}, #{RUBY_VERSION_STRING})"
|
244
|
-
|
245
|
-
include Util
|
246
|
-
|
247
|
-
# Raised for indicating running environment configuration error for example
|
248
|
-
# accessing via SSL under the ruby which is not compiled with OpenSSL.
|
249
|
-
class ConfigurationError < StandardError
|
250
|
-
end
|
251
|
-
|
252
|
-
# Raised for indicating HTTP response error.
|
253
|
-
class BadResponseError < RuntimeError
|
254
|
-
# HTTP::Message:: a response
|
255
|
-
attr_reader :res
|
256
|
-
|
257
|
-
def initialize(msg, res = nil) # :nodoc:
|
258
|
-
super(msg)
|
259
|
-
@res = res
|
260
|
-
end
|
261
|
-
end
|
262
|
-
|
263
|
-
# Raised for indicating a timeout error.
|
264
|
-
class TimeoutError < RuntimeError
|
265
|
-
end
|
266
|
-
|
267
|
-
# Raised for indicating a connection timeout error.
|
268
|
-
# You can configure connection timeout via HTTPClient#connect_timeout=.
|
269
|
-
class ConnectTimeoutError < TimeoutError
|
270
|
-
end
|
271
|
-
|
272
|
-
# Raised for indicating a request sending timeout error.
|
273
|
-
# You can configure request sending timeout via HTTPClient#send_timeout=.
|
274
|
-
class SendTimeoutError < TimeoutError
|
275
|
-
end
|
276
|
-
|
277
|
-
# Raised for indicating a response receiving timeout error.
|
278
|
-
# You can configure response receiving timeout via
|
279
|
-
# HTTPClient#receive_timeout=.
|
280
|
-
class ReceiveTimeoutError < TimeoutError
|
281
|
-
end
|
282
|
-
|
283
|
-
# Deprecated. just for backward compatibility
|
284
|
-
class Session
|
285
|
-
BadResponse = ::HTTPClient::BadResponseError
|
286
|
-
end
|
287
|
-
|
288
|
-
class << self
|
289
|
-
%w(get_content post_content head get post put delete options propfind proppatch trace).each do |name|
|
290
|
-
eval <<-EOD
|
291
|
-
def #{name}(*arg, &block)
|
292
|
-
clnt = new
|
293
|
-
begin
|
294
|
-
clnt.#{name}(*arg, &block)
|
295
|
-
ensure
|
296
|
-
clnt.reset_all
|
297
|
-
end
|
298
|
-
end
|
299
|
-
EOD
|
300
|
-
end
|
301
|
-
|
302
|
-
private
|
303
|
-
|
304
|
-
def attr_proxy(symbol, assignable = false)
|
305
|
-
name = symbol.to_s
|
306
|
-
define_method(name) {
|
307
|
-
@session_manager.__send__(name)
|
308
|
-
}
|
309
|
-
if assignable
|
310
|
-
aname = name + '='
|
311
|
-
define_method(aname) { |rhs|
|
312
|
-
@session_manager.__send__(aname, rhs)
|
313
|
-
}
|
314
|
-
end
|
315
|
-
end
|
316
|
-
end
|
317
|
-
|
318
|
-
# HTTPClient::SSLConfig:: SSL configurator.
|
319
|
-
attr_reader :ssl_config
|
320
|
-
# HTTPClient::CookieManager:: Cookies configurator.
|
321
|
-
attr_accessor :cookie_manager
|
322
|
-
# An array of response HTTP message body String which is used for loop-back
|
323
|
-
# test. See test/* to see how to use it. If you want to do loop-back test
|
324
|
-
# of HTTP header, use test_loopback_http_response instead.
|
325
|
-
attr_reader :test_loopback_response
|
326
|
-
# An array of request filter which can trap HTTP request/response.
|
327
|
-
# See HTTPClient::WWWAuth to see how to use it.
|
328
|
-
attr_reader :request_filter
|
329
|
-
# HTTPClient::ProxyAuth:: Proxy authentication handler.
|
330
|
-
attr_reader :proxy_auth
|
331
|
-
# HTTPClient::WWWAuth:: WWW authentication handler.
|
332
|
-
attr_reader :www_auth
|
333
|
-
# How many times get_content and post_content follows HTTP redirect.
|
334
|
-
# 10 by default.
|
335
|
-
attr_accessor :follow_redirect_count
|
336
|
-
# Base url of resources.
|
337
|
-
attr_accessor :base_url
|
338
|
-
# Default request header.
|
339
|
-
attr_accessor :default_header
|
340
|
-
|
341
|
-
# Set HTTP version as a String:: 'HTTP/1.0' or 'HTTP/1.1'
|
342
|
-
attr_proxy(:protocol_version, true)
|
343
|
-
# Connect timeout in sec.
|
344
|
-
attr_proxy(:connect_timeout, true)
|
345
|
-
# Request sending timeout in sec.
|
346
|
-
attr_proxy(:send_timeout, true)
|
347
|
-
# Response receiving timeout in sec.
|
348
|
-
attr_proxy(:receive_timeout, true)
|
349
|
-
# Reuse the same connection within this timeout in sec. from last used.
|
350
|
-
attr_proxy(:keep_alive_timeout, true)
|
351
|
-
# Size of reading block for non-chunked response.
|
352
|
-
attr_proxy(:read_block_size, true)
|
353
|
-
# Negotiation retry count for authentication. 5 by default.
|
354
|
-
attr_proxy(:protocol_retry_count, true)
|
355
|
-
# if your ruby is older than 2005-09-06, do not set socket_sync = false to
|
356
|
-
# avoid an SSL socket blocking bug in openssl/buffering.rb.
|
357
|
-
attr_proxy(:socket_sync, true)
|
358
|
-
# Enables TCP keepalive; no timing settings exist at present
|
359
|
-
attr_proxy(:tcp_keepalive, true)
|
360
|
-
# User-Agent header in HTTP request.
|
361
|
-
attr_proxy(:agent_name, true)
|
362
|
-
# From header in HTTP request.
|
363
|
-
attr_proxy(:from, true)
|
364
|
-
# An array of response HTTP String (not a HTTP message body) which is used
|
365
|
-
# for loopback test. See test/* to see how to use it.
|
366
|
-
attr_proxy(:test_loopback_http_response)
|
367
|
-
# Decompress a compressed (with gzip or deflate) content body transparently. false by default.
|
368
|
-
attr_proxy(:transparent_gzip_decompression, true)
|
369
|
-
# Raise BadResponseError if response size does not match with Content-Length header in response. false by default.
|
370
|
-
# TODO: enable by default
|
371
|
-
attr_proxy(:strict_response_size_check, true)
|
372
|
-
# Local socket address. Set HTTPClient#socket_local.host and HTTPClient#socket_local.port to specify local binding hostname and port of TCP socket.
|
373
|
-
attr_proxy(:socket_local, true)
|
374
|
-
|
375
|
-
# Default header for PROPFIND request.
|
376
|
-
PROPFIND_DEFAULT_EXTHEADER = { 'Depth' => '0' }
|
377
|
-
|
378
|
-
# Default User-Agent header
|
379
|
-
DEFAULT_AGENT_NAME = 'HTTPClient/1.0'
|
380
|
-
|
381
|
-
# Creates a HTTPClient instance which manages sessions, cookies, etc.
|
382
|
-
#
|
383
|
-
# HTTPClient.new takes optional arguments as a Hash.
|
384
|
-
# * :proxy - proxy url string
|
385
|
-
# * :agent_name - User-Agent String
|
386
|
-
# * :from - from header String
|
387
|
-
# * :base_url - base URL of resources
|
388
|
-
# * :default_header - header Hash all HTTP requests should have
|
389
|
-
# * :force_basic_auth - flag for sending Authorization header w/o gettin 401 first
|
390
|
-
# User-Agent and From are embedded in HTTP request Header if given.
|
391
|
-
# From header is not set without setting it explicitly.
|
392
|
-
#
|
393
|
-
# proxy = 'http://myproxy:8080'
|
394
|
-
# agent_name = 'MyAgent/0.1'
|
395
|
-
# from = 'from@example.com'
|
396
|
-
# HTTPClient.new(proxy, agent_name, from)
|
397
|
-
#
|
398
|
-
# After you set :base_url, all resources you pass to get, post and other
|
399
|
-
# methods are recognized to be prefixed with base_url. Say base_url is
|
400
|
-
# 'https://api.example.com/v1/, get('users') is the same as
|
401
|
-
# get('https://api.example.com/v1/users') internally. You can also pass
|
402
|
-
# full URL from 'http://' even after setting base_url.
|
403
|
-
#
|
404
|
-
# The expected base_url and path behavior is the following. Please take
|
405
|
-
# care of '/' in base_url and path.
|
406
|
-
#
|
407
|
-
# The last '/' is important for base_url:
|
408
|
-
# 1. http://foo/bar/baz/ + path -> http://foo/bar/baz/path
|
409
|
-
# 2. http://foo/bar/baz + path -> http://foo/bar/path
|
410
|
-
# Relative path handling:
|
411
|
-
# 3. http://foo/bar/baz/ + ../path -> http://foo/bar/path
|
412
|
-
# 4. http://foo/bar/baz + ../path -> http://foo/path
|
413
|
-
# 5. http://foo/bar/baz/ + ./path -> http://foo/bar/baz/path
|
414
|
-
# 6. http://foo/bar/baz + ./path -> http://foo/bar/path
|
415
|
-
# The leading '/' of path means absolute path:
|
416
|
-
# 7. http://foo/bar/baz/ + /path -> http://foo/path
|
417
|
-
# 8. http://foo/bar/baz + /path -> http://foo/path
|
418
|
-
#
|
419
|
-
# :default_header is for providing default headers Hash that all HTTP
|
420
|
-
# requests should have, such as custom 'Authorization' header in API.
|
421
|
-
# You can override :default_header with :header Hash parameter in HTTP
|
422
|
-
# request methods.
|
423
|
-
#
|
424
|
-
# :force_basic_auth turns on/off the BasicAuth force flag. Generally
|
425
|
-
# HTTP client must send Authorization header after it gets 401 error
|
426
|
-
# from server from security reason. But in some situation (e.g. API
|
427
|
-
# client) you might want to send Authorization from the beginning.
|
428
|
-
def initialize(*args, &block)
|
429
|
-
proxy, agent_name, from, base_url, default_header, force_basic_auth =
|
430
|
-
keyword_argument(args, :proxy, :agent_name, :from, :base_url, :default_header, :force_basic_auth)
|
431
|
-
@proxy = nil # assigned later.
|
432
|
-
@no_proxy = nil
|
433
|
-
@no_proxy_regexps = []
|
434
|
-
@base_url = base_url
|
435
|
-
@default_header = default_header || {}
|
436
|
-
@www_auth = WWWAuth.new
|
437
|
-
@proxy_auth = ProxyAuth.new
|
438
|
-
@www_auth.basic_auth.force_auth = @proxy_auth.basic_auth.force_auth = force_basic_auth
|
439
|
-
@request_filter = [@proxy_auth, @www_auth]
|
440
|
-
@debug_dev = nil
|
441
|
-
@redirect_uri_callback = method(:default_redirect_uri_callback)
|
442
|
-
@test_loopback_response = []
|
443
|
-
@session_manager = SessionManager.new(self)
|
444
|
-
@session_manager.agent_name = agent_name || DEFAULT_AGENT_NAME
|
445
|
-
@session_manager.from = from
|
446
|
-
@session_manager.ssl_config = @ssl_config = SSLConfig.new(self)
|
447
|
-
@cookie_manager = CookieManager.new
|
448
|
-
@follow_redirect_count = 10
|
449
|
-
load_environment
|
450
|
-
self.proxy = proxy if proxy
|
451
|
-
keep_webmock_compat
|
452
|
-
instance_eval(&block) if block
|
453
|
-
end
|
454
|
-
|
455
|
-
# webmock 1.6.2 depends on HTTP::Message#body.content to work.
|
456
|
-
# let's keep it work iif webmock is loaded for a while.
|
457
|
-
def keep_webmock_compat
|
458
|
-
if respond_to?(:do_get_block_with_webmock)
|
459
|
-
::HTTP::Message.module_eval do
|
460
|
-
def body
|
461
|
-
def (o = self.content).content
|
462
|
-
self
|
463
|
-
end
|
464
|
-
o
|
465
|
-
end
|
466
|
-
end
|
467
|
-
end
|
468
|
-
end
|
469
|
-
|
470
|
-
# Returns debug device if exists. See debug_dev=.
|
471
|
-
def debug_dev
|
472
|
-
@debug_dev
|
473
|
-
end
|
474
|
-
|
475
|
-
# Sets debug device. Once debug device is set, all HTTP requests and
|
476
|
-
# responses are dumped to given device. dev must respond to << for dump.
|
477
|
-
#
|
478
|
-
# Calling this method resets all existing sessions.
|
479
|
-
def debug_dev=(dev)
|
480
|
-
@debug_dev = dev
|
481
|
-
reset_all
|
482
|
-
@session_manager.debug_dev = dev
|
483
|
-
end
|
484
|
-
|
485
|
-
# Returns URI object of HTTP proxy if exists.
|
486
|
-
def proxy
|
487
|
-
@proxy
|
488
|
-
end
|
489
|
-
|
490
|
-
# Sets HTTP proxy used for HTTP connection. Given proxy can be an URI,
|
491
|
-
# a String or nil. You can set user/password for proxy authentication like
|
492
|
-
# HTTPClient#proxy = 'http://user:passwd@myproxy:8080'
|
493
|
-
#
|
494
|
-
# You can use environment variable 'http_proxy' or 'HTTP_PROXY' for it.
|
495
|
-
# You need to use 'cgi_http_proxy' or 'CGI_HTTP_PROXY' instead if you run
|
496
|
-
# HTTPClient from CGI environment from security reason. (HTTPClient checks
|
497
|
-
# 'REQUEST_METHOD' environment variable whether it's CGI or not)
|
498
|
-
#
|
499
|
-
# Calling this method resets all existing sessions.
|
500
|
-
def proxy=(proxy)
|
501
|
-
if proxy.nil? || proxy.to_s.empty?
|
502
|
-
@proxy = nil
|
503
|
-
@proxy_auth.reset_challenge
|
504
|
-
else
|
505
|
-
@proxy = urify(proxy)
|
506
|
-
if @proxy.scheme == nil or @proxy.scheme.downcase != 'http' or
|
507
|
-
@proxy.host == nil or @proxy.port == nil
|
508
|
-
raise ArgumentError.new("unsupported proxy #{proxy}")
|
509
|
-
end
|
510
|
-
@proxy_auth.reset_challenge
|
511
|
-
if @proxy.user || @proxy.password
|
512
|
-
@proxy_auth.set_auth(@proxy.user, @proxy.password)
|
513
|
-
end
|
514
|
-
end
|
515
|
-
reset_all
|
516
|
-
@session_manager.proxy = @proxy
|
517
|
-
@proxy
|
518
|
-
end
|
519
|
-
|
520
|
-
# Returns NO_PROXY setting String if given.
|
521
|
-
def no_proxy
|
522
|
-
@no_proxy
|
523
|
-
end
|
524
|
-
|
525
|
-
# Sets NO_PROXY setting String. no_proxy must be a comma separated String.
|
526
|
-
# Each entry must be 'host' or 'host:port' such as;
|
527
|
-
# HTTPClient#no_proxy = 'example.com,example.co.jp:443'
|
528
|
-
#
|
529
|
-
# 'localhost' is treated as a no_proxy site regardless of explicitly listed.
|
530
|
-
# HTTPClient checks given URI objects before accessing it.
|
531
|
-
# 'host' is tail string match. No IP-addr conversion.
|
532
|
-
#
|
533
|
-
# You can use environment variable 'no_proxy' or 'NO_PROXY' for it.
|
534
|
-
#
|
535
|
-
# Calling this method resets all existing sessions.
|
536
|
-
def no_proxy=(no_proxy)
|
537
|
-
@no_proxy = no_proxy
|
538
|
-
@no_proxy_regexps.clear
|
539
|
-
if @no_proxy
|
540
|
-
@no_proxy.scan(/([^\s:,]+)(?::(\d+))?/) do |host, port|
|
541
|
-
if host[0] == ?.
|
542
|
-
regexp = /#{Regexp.quote(host)}\z/i
|
543
|
-
else
|
544
|
-
regexp = /(\A|\.)#{Regexp.quote(host)}\z/i
|
545
|
-
end
|
546
|
-
@no_proxy_regexps << [regexp, port]
|
547
|
-
end
|
548
|
-
end
|
549
|
-
reset_all
|
550
|
-
end
|
551
|
-
|
552
|
-
# Sets credential for Web server authentication.
|
553
|
-
# domain:: a String or an URI to specify where HTTPClient should use this
|
554
|
-
# credential. If you set uri to nil, HTTPClient uses this credential
|
555
|
-
# wherever a server requires it.
|
556
|
-
# user:: username String.
|
557
|
-
# passwd:: password String.
|
558
|
-
#
|
559
|
-
# You can set multiple credentials for each uri.
|
560
|
-
#
|
561
|
-
# clnt.set_auth('http://www.example.com/foo/', 'foo_user', 'passwd')
|
562
|
-
# clnt.set_auth('http://www.example.com/bar/', 'bar_user', 'passwd')
|
563
|
-
#
|
564
|
-
# Calling this method resets all existing sessions.
|
565
|
-
def set_auth(domain, user, passwd)
|
566
|
-
uri = to_resource_url(domain)
|
567
|
-
@www_auth.set_auth(uri, user, passwd)
|
568
|
-
reset_all
|
569
|
-
end
|
570
|
-
|
571
|
-
# Deprecated. Use set_auth instead.
|
572
|
-
def set_basic_auth(domain, user, passwd)
|
573
|
-
uri = to_resource_url(domain)
|
574
|
-
@www_auth.basic_auth.set(uri, user, passwd)
|
575
|
-
reset_all
|
576
|
-
end
|
577
|
-
|
578
|
-
# Sets credential for Proxy authentication.
|
579
|
-
# user:: username String.
|
580
|
-
# passwd:: password String.
|
581
|
-
#
|
582
|
-
# Calling this method resets all existing sessions.
|
583
|
-
def set_proxy_auth(user, passwd)
|
584
|
-
@proxy_auth.set_auth(user, passwd)
|
585
|
-
reset_all
|
586
|
-
end
|
587
|
-
|
588
|
-
# Turn on/off the BasicAuth force flag. Generally HTTP client must
|
589
|
-
# send Authorization header after it gets 401 error from server from
|
590
|
-
# security reason. But in some situation (e.g. API client) you might
|
591
|
-
# want to send Authorization from the beginning.
|
592
|
-
def force_basic_auth=(force_basic_auth)
|
593
|
-
@www_auth.basic_auth.force_auth = @proxy_auth.basic_auth.force_auth = force_basic_auth
|
594
|
-
end
|
595
|
-
|
596
|
-
# Sets the filename where non-volatile Cookies be saved by calling
|
597
|
-
# save_cookie_store.
|
598
|
-
# This method tries to load and managing Cookies from the specified file.
|
599
|
-
#
|
600
|
-
# Calling this method resets all existing sessions.
|
601
|
-
def set_cookie_store(filename)
|
602
|
-
@cookie_manager.cookies_file = filename
|
603
|
-
@cookie_manager.load_cookies if filename
|
604
|
-
reset_all
|
605
|
-
end
|
606
|
-
|
607
|
-
# Try to save Cookies to the file specified in set_cookie_store. Unexpected
|
608
|
-
# error will be raised if you don't call set_cookie_store first.
|
609
|
-
def save_cookie_store
|
610
|
-
@cookie_manager.save_cookies
|
611
|
-
end
|
612
|
-
|
613
|
-
# Returns stored cookies.
|
614
|
-
def cookies
|
615
|
-
if @cookie_manager
|
616
|
-
@cookie_manager.cookies
|
617
|
-
end
|
618
|
-
end
|
619
|
-
|
620
|
-
# Sets callback proc when HTTP redirect status is returned for get_content
|
621
|
-
# and post_content. default_redirect_uri_callback is used by default.
|
622
|
-
#
|
623
|
-
# If you need strict implementation which does not allow relative URI
|
624
|
-
# redirection, set strict_redirect_uri_callback instead.
|
625
|
-
#
|
626
|
-
# clnt.redirect_uri_callback = clnt.method(:strict_redirect_uri_callback)
|
627
|
-
#
|
628
|
-
def redirect_uri_callback=(redirect_uri_callback)
|
629
|
-
@redirect_uri_callback = redirect_uri_callback
|
630
|
-
end
|
631
|
-
|
632
|
-
# Retrieves a web resource.
|
633
|
-
#
|
634
|
-
# uri:: a String or an URI object which represents an URL of web resource.
|
635
|
-
# query:: a Hash or an Array of query part of URL.
|
636
|
-
# e.g. { "a" => "b" } => 'http://host/part?a=b'.
|
637
|
-
# Give an array to pass multiple value like
|
638
|
-
# [["a", "b"], ["a", "c"]] => 'http://host/part?a=b&a=c'.
|
639
|
-
# header:: a Hash or an Array of extra headers. e.g.
|
640
|
-
# { 'Accept' => 'text/html' } or
|
641
|
-
# [['Accept', 'image/jpeg'], ['Accept', 'image/png']].
|
642
|
-
# &block:: Give a block to get chunked message-body of response like
|
643
|
-
# get_content(uri) { |chunked_body| ... }.
|
644
|
-
# Size of each chunk may not be the same.
|
645
|
-
#
|
646
|
-
# get_content follows HTTP redirect status (see HTTP::Status.redirect?)
|
647
|
-
# internally and try to retrieve content from redirected URL. See
|
648
|
-
# redirect_uri_callback= how HTTP redirection is handled.
|
649
|
-
#
|
650
|
-
# If you need to get full HTTP response including HTTP status and headers,
|
651
|
-
# use get method. get returns HTTP::Message as a response and you need to
|
652
|
-
# follow HTTP redirect by yourself if you need.
|
653
|
-
def get_content(uri, *args, &block)
|
654
|
-
query, header = keyword_argument(args, :query, :header)
|
655
|
-
success_content(follow_redirect(:get, uri, query, nil, header || {}, &block))
|
656
|
-
end
|
657
|
-
|
658
|
-
# Posts a content.
|
659
|
-
#
|
660
|
-
# uri:: a String or an URI object which represents an URL of web resource.
|
661
|
-
# body:: a Hash or an Array of body part. e.g.
|
662
|
-
# { "a" => "b" } => 'a=b'
|
663
|
-
# Give an array to pass multiple value like
|
664
|
-
# [["a", "b"], ["a", "c"]] => 'a=b&a=c'
|
665
|
-
# When you pass a File as a value, it will be posted as a
|
666
|
-
# multipart/form-data. e.g.
|
667
|
-
# { 'upload' => file }
|
668
|
-
# You can also send custom multipart by passing an array of hashes.
|
669
|
-
# Each part must have a :content attribute which can be a file, all
|
670
|
-
# other keys will become headers.
|
671
|
-
# [{ 'Content-Type' => 'text/plain', :content => "some text" },
|
672
|
-
# { 'Content-Type' => 'video/mp4', :content => File.new('video.mp4') }]
|
673
|
-
# => <Two parts with custom Content-Type header>
|
674
|
-
# header:: a Hash or an Array of extra headers. e.g.
|
675
|
-
# { 'Accept' => 'text/html' }
|
676
|
-
# or
|
677
|
-
# [['Accept', 'image/jpeg'], ['Accept', 'image/png']].
|
678
|
-
# &block:: Give a block to get chunked message-body of response like
|
679
|
-
# post_content(uri) { |chunked_body| ... }.
|
680
|
-
# Size of each chunk may not be the same.
|
681
|
-
#
|
682
|
-
# post_content follows HTTP redirect status (see HTTP::Status.redirect?)
|
683
|
-
# internally and try to post the content to redirected URL. See
|
684
|
-
# redirect_uri_callback= how HTTP redirection is handled.
|
685
|
-
# Bear in mind that you should not depend on post_content because it sends
|
686
|
-
# the same POST method to the new location which is prohibited in HTTP spec.
|
687
|
-
#
|
688
|
-
# If you need to get full HTTP response including HTTP status and headers,
|
689
|
-
# use post method.
|
690
|
-
def post_content(uri, *args, &block)
|
691
|
-
if hashy_argument_has_keys(args, :query, :body)
|
692
|
-
query, body, header = keyword_argument(args, :query, :body, :header)
|
693
|
-
else
|
694
|
-
query = nil
|
695
|
-
body, header = keyword_argument(args, :body, :header)
|
696
|
-
end
|
697
|
-
success_content(follow_redirect(:post, uri, query, body, header || {}, &block))
|
698
|
-
end
|
699
|
-
|
700
|
-
# A method for redirect uri callback. How to use:
|
701
|
-
# clnt.redirect_uri_callback = clnt.method(:strict_redirect_uri_callback)
|
702
|
-
# This callback does not allow relative redirect such as
|
703
|
-
# Location: ../foo/
|
704
|
-
# in HTTP header. (raises BadResponseError instead)
|
705
|
-
def strict_redirect_uri_callback(uri, res)
|
706
|
-
newuri = urify(res.header['location'][0])
|
707
|
-
if https?(uri) && !https?(newuri)
|
708
|
-
raise BadResponseError.new("redirecting to non-https resource")
|
709
|
-
end
|
710
|
-
if !http?(newuri) && !https?(newuri)
|
711
|
-
raise BadResponseError.new("unexpected location: #{newuri}", res)
|
712
|
-
end
|
713
|
-
puts "redirect to: #{newuri}" if $DEBUG
|
714
|
-
newuri
|
715
|
-
end
|
716
|
-
|
717
|
-
# A default method for redirect uri callback. This method is used by
|
718
|
-
# HTTPClient instance by default.
|
719
|
-
# This callback allows relative redirect such as
|
720
|
-
# Location: ../foo/
|
721
|
-
# in HTTP header.
|
722
|
-
def default_redirect_uri_callback(uri, res)
|
723
|
-
newuri = urify(res.header['location'][0])
|
724
|
-
if !http?(newuri) && !https?(newuri)
|
725
|
-
warn("#{newuri}: a relative URI in location header which is not recommended")
|
726
|
-
warn("'The field value consists of a single absolute URI' in HTTP spec")
|
727
|
-
newuri = uri + newuri
|
728
|
-
end
|
729
|
-
if https?(uri) && !https?(newuri)
|
730
|
-
raise BadResponseError.new("redirecting to non-https resource")
|
731
|
-
end
|
732
|
-
puts "redirect to: #{newuri}" if $DEBUG
|
733
|
-
newuri
|
734
|
-
end
|
735
|
-
|
736
|
-
# Sends HEAD request to the specified URL. See request for arguments.
|
737
|
-
def head(uri, *args)
|
738
|
-
request(:head, uri, argument_to_hash(args, :query, :header, :follow_redirect))
|
739
|
-
end
|
740
|
-
|
741
|
-
# Sends GET request to the specified URL. See request for arguments.
|
742
|
-
def get(uri, *args, &block)
|
743
|
-
request(:get, uri, argument_to_hash(args, :query, :header, :follow_redirect), &block)
|
744
|
-
end
|
745
|
-
|
746
|
-
# Sends PATCH request to the specified URL. See request for arguments.
|
747
|
-
def patch(uri, *args, &block)
|
748
|
-
if hashy_argument_has_keys(args, :query, :body)
|
749
|
-
new_args = args[0]
|
750
|
-
else
|
751
|
-
new_args = argument_to_hash(args, :body, :header)
|
752
|
-
end
|
753
|
-
request(:patch, uri, new_args, &block)
|
754
|
-
end
|
755
|
-
|
756
|
-
# Sends POST request to the specified URL. See request for arguments.
|
757
|
-
# You should not depend on :follow_redirect => true for POST method. It
|
758
|
-
# sends the same POST method to the new location which is prohibited in HTTP spec.
|
759
|
-
def post(uri, *args, &block)
|
760
|
-
if hashy_argument_has_keys(args, :query, :body)
|
761
|
-
new_args = args[0]
|
762
|
-
else
|
763
|
-
new_args = argument_to_hash(args, :body, :header, :follow_redirect)
|
764
|
-
end
|
765
|
-
request(:post, uri, new_args, &block)
|
766
|
-
end
|
767
|
-
|
768
|
-
# Sends PUT request to the specified URL. See request for arguments.
|
769
|
-
def put(uri, *args, &block)
|
770
|
-
if hashy_argument_has_keys(args, :query, :body)
|
771
|
-
new_args = args[0]
|
772
|
-
else
|
773
|
-
new_args = argument_to_hash(args, :body, :header)
|
774
|
-
end
|
775
|
-
request(:put, uri, new_args, &block)
|
776
|
-
end
|
777
|
-
|
778
|
-
# Sends DELETE request to the specified URL. See request for arguments.
|
779
|
-
def delete(uri, *args, &block)
|
780
|
-
request(:delete, uri, argument_to_hash(args, :body, :header, :query), &block)
|
781
|
-
end
|
782
|
-
|
783
|
-
# Sends OPTIONS request to the specified URL. See request for arguments.
|
784
|
-
def options(uri, *args, &block)
|
785
|
-
new_args = argument_to_hash(args, :header, :query, :body)
|
786
|
-
request(:options, uri, new_args, &block)
|
787
|
-
end
|
788
|
-
|
789
|
-
# Sends PROPFIND request to the specified URL. See request for arguments.
|
790
|
-
def propfind(uri, *args, &block)
|
791
|
-
request(:propfind, uri, argument_to_hash(args, :header), &block)
|
792
|
-
end
|
793
|
-
|
794
|
-
# Sends PROPPATCH request to the specified URL. See request for arguments.
|
795
|
-
def proppatch(uri, *args, &block)
|
796
|
-
request(:proppatch, uri, argument_to_hash(args, :body, :header), &block)
|
797
|
-
end
|
798
|
-
|
799
|
-
# Sends TRACE request to the specified URL. See request for arguments.
|
800
|
-
def trace(uri, *args, &block)
|
801
|
-
request('TRACE', uri, argument_to_hash(args, :query, :header), &block)
|
802
|
-
end
|
803
|
-
|
804
|
-
# Sends a request to the specified URL.
|
805
|
-
#
|
806
|
-
# method:: HTTP method to be sent. method.to_s.upcase is used.
|
807
|
-
# uri:: a String or an URI object which represents an URL of web resource.
|
808
|
-
# query:: a Hash or an Array of query part of URL.
|
809
|
-
# e.g. { "a" => "b" } => 'http://host/part?a=b'
|
810
|
-
# Give an array to pass multiple value like
|
811
|
-
# [["a", "b"], ["a", "c"]] => 'http://host/part?a=b&a=c'
|
812
|
-
# body:: a Hash or an Array of body part. e.g.
|
813
|
-
# { "a" => "b" }
|
814
|
-
# => 'a=b'
|
815
|
-
# Give an array to pass multiple value like
|
816
|
-
# [["a", "b"], ["a", "c"]]
|
817
|
-
# => 'a=b&a=c'.
|
818
|
-
# When the given method is 'POST' and the given body contains a file
|
819
|
-
# as a value, it will be posted as a multipart/form-data. e.g.
|
820
|
-
# { 'upload' => file }
|
821
|
-
# You can also send custom multipart by passing an array of hashes.
|
822
|
-
# Each part must have a :content attribute which can be a file, all
|
823
|
-
# other keys will become headers.
|
824
|
-
# [{ 'Content-Type' => 'text/plain', :content => "some text" },
|
825
|
-
# { 'Content-Type' => 'video/mp4', :content => File.new('video.mp4') }]
|
826
|
-
# => <Two parts with custom Content-Type header>
|
827
|
-
# See HTTP::Message.file? for actual condition of 'a file'.
|
828
|
-
# header:: a Hash or an Array of extra headers. e.g.
|
829
|
-
# { 'Accept' => 'text/html' } or
|
830
|
-
# [['Accept', 'image/jpeg'], ['Accept', 'image/png']].
|
831
|
-
# &block:: Give a block to get chunked message-body of response like
|
832
|
-
# get(uri) { |chunked_body| ... }.
|
833
|
-
# Size of each chunk may not be the same.
|
834
|
-
#
|
835
|
-
# You can also pass a String as a body. HTTPClient just sends a String as
|
836
|
-
# a HTTP request message body.
|
837
|
-
#
|
838
|
-
# When you pass an IO as a body, HTTPClient sends it as a HTTP request with
|
839
|
-
# chunked encoding (Transfer-Encoding: chunked in HTTP header) if IO does not
|
840
|
-
# respond to :size. Bear in mind that some server application does not support
|
841
|
-
# chunked request. At least cgi.rb does not support it.
|
842
|
-
def request(method, uri, *args, &block)
|
843
|
-
query, body, header, follow_redirect = keyword_argument(args, :query, :body, :header, :follow_redirect)
|
844
|
-
if method == :propfind
|
845
|
-
header ||= PROPFIND_DEFAULT_EXTHEADER
|
846
|
-
else
|
847
|
-
header ||= {}
|
848
|
-
end
|
849
|
-
uri = to_resource_url(uri)
|
850
|
-
if block
|
851
|
-
filtered_block = adapt_block(&block)
|
852
|
-
end
|
853
|
-
if follow_redirect
|
854
|
-
follow_redirect(method, uri, query, body, header, &block)
|
855
|
-
else
|
856
|
-
do_request(method, uri, query, body, header, &filtered_block)
|
857
|
-
end
|
858
|
-
end
|
859
|
-
|
860
|
-
# Sends HEAD request in async style. See request_async for arguments.
|
861
|
-
# It immediately returns a HTTPClient::Connection instance as a result.
|
862
|
-
def head_async(uri, *args)
|
863
|
-
request_async2(:head, uri, argument_to_hash(args, :query, :header))
|
864
|
-
end
|
865
|
-
|
866
|
-
# Sends GET request in async style. See request_async for arguments.
|
867
|
-
# It immediately returns a HTTPClient::Connection instance as a result.
|
868
|
-
def get_async(uri, *args)
|
869
|
-
request_async2(:get, uri, argument_to_hash(args, :query, :header))
|
870
|
-
end
|
871
|
-
|
872
|
-
# Sends PATCH request in async style. See request_async2 for arguments.
|
873
|
-
# It immediately returns a HTTPClient::Connection instance as a result.
|
874
|
-
def patch_async(uri, *args)
|
875
|
-
if hashy_argument_has_keys(args, :query, :body)
|
876
|
-
new_args = args[0]
|
877
|
-
else
|
878
|
-
new_args = argument_to_hash(args, :body, :header)
|
879
|
-
end
|
880
|
-
request_async2(:patch, uri, new_args)
|
881
|
-
end
|
882
|
-
|
883
|
-
# Sends POST request in async style. See request_async for arguments.
|
884
|
-
# It immediately returns a HTTPClient::Connection instance as a result.
|
885
|
-
def post_async(uri, *args)
|
886
|
-
if hashy_argument_has_keys(args, :query, :body)
|
887
|
-
new_args = args[0]
|
888
|
-
else
|
889
|
-
new_args = argument_to_hash(args, :body, :header)
|
890
|
-
end
|
891
|
-
request_async2(:post, uri, new_args)
|
892
|
-
end
|
893
|
-
|
894
|
-
# Sends PUT request in async style. See request_async2 for arguments.
|
895
|
-
# It immediately returns a HTTPClient::Connection instance as a result.
|
896
|
-
def put_async(uri, *args)
|
897
|
-
if hashy_argument_has_keys(args, :query, :body)
|
898
|
-
new_args = args[0]
|
899
|
-
else
|
900
|
-
new_args = argument_to_hash(args, :body, :header)
|
901
|
-
end
|
902
|
-
request_async2(:put, uri, new_args)
|
903
|
-
end
|
904
|
-
|
905
|
-
# Sends DELETE request in async style. See request_async2 for arguments.
|
906
|
-
# It immediately returns a HTTPClient::Connection instance as a result.
|
907
|
-
def delete_async(uri, *args)
|
908
|
-
request_async2(:delete, uri, argument_to_hash(args, :body, :header, :query))
|
909
|
-
end
|
910
|
-
|
911
|
-
# Sends OPTIONS request in async style. See request_async2 for arguments.
|
912
|
-
# It immediately returns a HTTPClient::Connection instance as a result.
|
913
|
-
def options_async(uri, *args)
|
914
|
-
request_async2(:options, uri, argument_to_hash(args, :header, :query, :body))
|
915
|
-
end
|
916
|
-
|
917
|
-
# Sends PROPFIND request in async style. See request_async2 for arguments.
|
918
|
-
# It immediately returns a HTTPClient::Connection instance as a result.
|
919
|
-
def propfind_async(uri, *args)
|
920
|
-
request_async2(:propfind, uri, argument_to_hash(args, :body, :header))
|
921
|
-
end
|
922
|
-
|
923
|
-
# Sends PROPPATCH request in async style. See request_async2 for arguments.
|
924
|
-
# It immediately returns a HTTPClient::Connection instance as a result.
|
925
|
-
def proppatch_async(uri, *args)
|
926
|
-
request_async2(:proppatch, uri, argument_to_hash(args, :body, :header))
|
927
|
-
end
|
928
|
-
|
929
|
-
# Sends TRACE request in async style. See request_async2 for arguments.
|
930
|
-
# It immediately returns a HTTPClient::Connection instance as a result.
|
931
|
-
def trace_async(uri, *args)
|
932
|
-
request_async2(:trace, uri, argument_to_hash(args, :query, :header))
|
933
|
-
end
|
934
|
-
|
935
|
-
# Sends a request in async style. request method creates new Thread for
|
936
|
-
# HTTP connection and returns a HTTPClient::Connection instance immediately.
|
937
|
-
#
|
938
|
-
# Arguments definition is the same as request.
|
939
|
-
def request_async(method, uri, query = nil, body = nil, header = {})
|
940
|
-
uri = to_resource_url(uri)
|
941
|
-
do_request_async(method, uri, query, body, header)
|
942
|
-
end
|
943
|
-
|
944
|
-
# new method that has same signature as 'request'
|
945
|
-
def request_async2(method, uri, *args)
|
946
|
-
query, body, header = keyword_argument(args, :query, :body, :header)
|
947
|
-
if [:post, :put].include?(method)
|
948
|
-
body ||= ''
|
949
|
-
end
|
950
|
-
if method == :propfind
|
951
|
-
header ||= PROPFIND_DEFAULT_EXTHEADER
|
952
|
-
else
|
953
|
-
header ||= {}
|
954
|
-
end
|
955
|
-
uri = to_resource_url(uri)
|
956
|
-
do_request_async(method, uri, query, body, header)
|
957
|
-
end
|
958
|
-
|
959
|
-
# Resets internal session for the given URL. Keep-alive connection for the
|
960
|
-
# site (host-port pair) is disconnected if exists.
|
961
|
-
def reset(uri)
|
962
|
-
uri = to_resource_url(uri)
|
963
|
-
@session_manager.reset(uri)
|
964
|
-
end
|
965
|
-
|
966
|
-
# Resets all of internal sessions. Keep-alive connections are disconnected.
|
967
|
-
def reset_all
|
968
|
-
@session_manager.reset_all
|
969
|
-
end
|
970
|
-
|
971
|
-
private
|
972
|
-
|
973
|
-
class RetryableResponse < StandardError # :nodoc:
|
974
|
-
attr_reader :res
|
975
|
-
|
976
|
-
def initialize(res = nil)
|
977
|
-
@res = res
|
978
|
-
end
|
979
|
-
end
|
980
|
-
|
981
|
-
class KeepAliveDisconnected < StandardError # :nodoc:
|
982
|
-
attr_reader :sess
|
983
|
-
attr_reader :cause
|
984
|
-
def initialize(sess = nil, cause = nil)
|
985
|
-
super("#{self.class.name}: #{cause ? cause.message : nil}")
|
986
|
-
@sess = sess
|
987
|
-
@cause = cause
|
988
|
-
end
|
989
|
-
end
|
990
|
-
|
991
|
-
def hashy_argument_has_keys(args, *key)
|
992
|
-
# if the given arg is a single Hash and...
|
993
|
-
args.size == 1 and Hash === args[0] and
|
994
|
-
# it has any one of the key
|
995
|
-
key.all? { |e| args[0].key?(e) }
|
996
|
-
end
|
997
|
-
|
998
|
-
def do_request(method, uri, query, body, header, &block)
|
999
|
-
res = nil
|
1000
|
-
if HTTP::Message.file?(body)
|
1001
|
-
pos = body.pos rescue nil
|
1002
|
-
end
|
1003
|
-
retry_count = @session_manager.protocol_retry_count
|
1004
|
-
proxy = no_proxy?(uri) ? nil : @proxy
|
1005
|
-
previous_request = previous_response = nil
|
1006
|
-
while retry_count > 0
|
1007
|
-
body.pos = pos if pos
|
1008
|
-
req = create_request(method, uri, query, body, header)
|
1009
|
-
if previous_request
|
1010
|
-
# to remember IO positions to read
|
1011
|
-
req.http_body.positions = previous_request.http_body.positions
|
1012
|
-
end
|
1013
|
-
begin
|
1014
|
-
protect_keep_alive_disconnected do
|
1015
|
-
# TODO: remove Connection.new
|
1016
|
-
# We want to delete Connection usage in do_get_block but Newrelic gem depends on it.
|
1017
|
-
# https://github.com/newrelic/rpm/blob/master/lib/new_relic/agent/instrumentation/httpclient.rb#L34-L36
|
1018
|
-
conn = Connection.new
|
1019
|
-
res = do_get_block(req, proxy, conn, &block)
|
1020
|
-
# Webmock's do_get_block returns ConditionVariable
|
1021
|
-
if !res.respond_to?(:previous)
|
1022
|
-
res = conn.pop
|
1023
|
-
end
|
1024
|
-
end
|
1025
|
-
res.previous = previous_response
|
1026
|
-
break
|
1027
|
-
rescue RetryableResponse => e
|
1028
|
-
previous_request = req
|
1029
|
-
previous_response = res = e.res
|
1030
|
-
retry_count -= 1
|
1031
|
-
end
|
1032
|
-
end
|
1033
|
-
res
|
1034
|
-
end
|
1035
|
-
|
1036
|
-
def do_request_async(method, uri, query, body, header)
|
1037
|
-
conn = Connection.new
|
1038
|
-
t = Thread.new(conn) { |tconn|
|
1039
|
-
begin
|
1040
|
-
if HTTP::Message.file?(body)
|
1041
|
-
pos = body.pos rescue nil
|
1042
|
-
end
|
1043
|
-
retry_count = @session_manager.protocol_retry_count
|
1044
|
-
proxy = no_proxy?(uri) ? nil : @proxy
|
1045
|
-
while retry_count > 0
|
1046
|
-
body.pos = pos if pos
|
1047
|
-
req = create_request(method, uri, query, body, header)
|
1048
|
-
begin
|
1049
|
-
protect_keep_alive_disconnected do
|
1050
|
-
do_get_stream(req, proxy, tconn)
|
1051
|
-
end
|
1052
|
-
break
|
1053
|
-
rescue RetryableResponse
|
1054
|
-
retry_count -= 1
|
1055
|
-
end
|
1056
|
-
end
|
1057
|
-
rescue Exception => e
|
1058
|
-
conn.push e
|
1059
|
-
end
|
1060
|
-
}
|
1061
|
-
conn.async_thread = t
|
1062
|
-
conn
|
1063
|
-
end
|
1064
|
-
|
1065
|
-
def load_environment
|
1066
|
-
# http_proxy
|
1067
|
-
if getenv('REQUEST_METHOD')
|
1068
|
-
# HTTP_PROXY conflicts with the environment variable usage in CGI where
|
1069
|
-
# HTTP_* is used for HTTP header information. Unlike open-uri, we
|
1070
|
-
# simply ignore http_proxy in CGI env and use cgi_http_proxy instead.
|
1071
|
-
self.proxy = getenv('cgi_http_proxy')
|
1072
|
-
else
|
1073
|
-
self.proxy = getenv('http_proxy')
|
1074
|
-
end
|
1075
|
-
# no_proxy
|
1076
|
-
self.no_proxy = getenv('no_proxy')
|
1077
|
-
end
|
1078
|
-
|
1079
|
-
def getenv(name)
|
1080
|
-
ENV[name.downcase] || ENV[name.upcase]
|
1081
|
-
end
|
1082
|
-
|
1083
|
-
def adapt_block(&block)
|
1084
|
-
return block if block.arity == 2
|
1085
|
-
proc { |r, str| block.call(str) }
|
1086
|
-
end
|
1087
|
-
|
1088
|
-
def follow_redirect(method, uri, query, body, header, &block)
|
1089
|
-
uri = to_resource_url(uri)
|
1090
|
-
if block
|
1091
|
-
b = adapt_block(&block)
|
1092
|
-
filtered_block = proc { |r, str|
|
1093
|
-
b.call(r, str) if r.ok?
|
1094
|
-
}
|
1095
|
-
end
|
1096
|
-
if HTTP::Message.file?(body)
|
1097
|
-
pos = body.pos rescue nil
|
1098
|
-
end
|
1099
|
-
retry_number = 0
|
1100
|
-
previous = nil
|
1101
|
-
request_query = query
|
1102
|
-
while retry_number < @follow_redirect_count
|
1103
|
-
body.pos = pos if pos
|
1104
|
-
res = do_request(method, uri, request_query, body, header, &filtered_block)
|
1105
|
-
res.previous = previous
|
1106
|
-
if res.redirect?
|
1107
|
-
if res.header['location'].empty?
|
1108
|
-
raise BadResponseError.new("Missing Location header for redirect", res)
|
1109
|
-
end
|
1110
|
-
method = :get if res.see_other? # See RFC2616 10.3.4
|
1111
|
-
uri = urify(@redirect_uri_callback.call(uri, res))
|
1112
|
-
# To avoid duped query parameter. 'location' must include query part.
|
1113
|
-
request_query = nil
|
1114
|
-
previous = res
|
1115
|
-
retry_number += 1
|
1116
|
-
else
|
1117
|
-
return res
|
1118
|
-
end
|
1119
|
-
end
|
1120
|
-
raise BadResponseError.new("retry count exceeded", res)
|
1121
|
-
end
|
1122
|
-
|
1123
|
-
def success_content(res)
|
1124
|
-
if res.ok?
|
1125
|
-
return res.content
|
1126
|
-
else
|
1127
|
-
raise BadResponseError.new("unexpected response: #{res.header.inspect}", res)
|
1128
|
-
end
|
1129
|
-
end
|
1130
|
-
|
1131
|
-
def protect_keep_alive_disconnected
|
1132
|
-
begin
|
1133
|
-
yield
|
1134
|
-
rescue KeepAliveDisconnected
|
1135
|
-
# Force to create new connection
|
1136
|
-
Thread.current[:HTTPClient_AcquireNewConnection] = true
|
1137
|
-
begin
|
1138
|
-
yield
|
1139
|
-
ensure
|
1140
|
-
Thread.current[:HTTPClient_AcquireNewConnection] = false
|
1141
|
-
end
|
1142
|
-
end
|
1143
|
-
end
|
1144
|
-
|
1145
|
-
def create_request(method, uri, query, body, header)
|
1146
|
-
method = method.to_s.upcase
|
1147
|
-
if header.is_a?(Hash)
|
1148
|
-
header = @default_header.merge(header).to_a
|
1149
|
-
else
|
1150
|
-
header = @default_header.to_a + header.dup
|
1151
|
-
end
|
1152
|
-
boundary = nil
|
1153
|
-
if body
|
1154
|
-
_, content_type = header.find { |key, value|
|
1155
|
-
key.to_s.downcase == 'content-type'
|
1156
|
-
}
|
1157
|
-
if content_type
|
1158
|
-
if /\Amultipart/ =~ content_type
|
1159
|
-
if content_type =~ /boundary=(.+)\z/
|
1160
|
-
boundary = $1
|
1161
|
-
else
|
1162
|
-
boundary = create_boundary
|
1163
|
-
content_type = "#{content_type}; boundary=#{boundary}"
|
1164
|
-
header = override_header(header, 'content-type', content_type)
|
1165
|
-
end
|
1166
|
-
end
|
1167
|
-
else
|
1168
|
-
if file_in_form_data?(body)
|
1169
|
-
boundary = create_boundary
|
1170
|
-
content_type = "multipart/form-data; boundary=#{boundary}"
|
1171
|
-
else
|
1172
|
-
content_type = 'application/x-www-form-urlencoded'
|
1173
|
-
end
|
1174
|
-
header << ['Content-Type', content_type]
|
1175
|
-
end
|
1176
|
-
end
|
1177
|
-
req = HTTP::Message.new_request(method, uri, query, body, boundary)
|
1178
|
-
header.each do |key, value|
|
1179
|
-
req.header.add(key.to_s, value)
|
1180
|
-
end
|
1181
|
-
if @cookie_manager
|
1182
|
-
cookie_value = @cookie_manager.cookie_value(uri)
|
1183
|
-
if cookie_value
|
1184
|
-
req.header.add('Cookie', cookie_value)
|
1185
|
-
end
|
1186
|
-
end
|
1187
|
-
req
|
1188
|
-
end
|
1189
|
-
|
1190
|
-
def create_boundary
|
1191
|
-
Digest::SHA1.hexdigest(Time.now.to_s)
|
1192
|
-
end
|
1193
|
-
|
1194
|
-
def file_in_form_data?(body)
|
1195
|
-
HTTP::Message.multiparam_query?(body) &&
|
1196
|
-
body.any? { |k, v| HTTP::Message.file?(v) }
|
1197
|
-
end
|
1198
|
-
|
1199
|
-
def override_header(header, key, value)
|
1200
|
-
result = []
|
1201
|
-
header.each do |k, v|
|
1202
|
-
if k.to_s.downcase == key
|
1203
|
-
result << [key, value]
|
1204
|
-
else
|
1205
|
-
result << [k, v]
|
1206
|
-
end
|
1207
|
-
end
|
1208
|
-
result
|
1209
|
-
end
|
1210
|
-
|
1211
|
-
NO_PROXY_HOSTS = ['localhost']
|
1212
|
-
|
1213
|
-
def no_proxy?(uri)
|
1214
|
-
if !@proxy or NO_PROXY_HOSTS.include?(uri.host)
|
1215
|
-
return true
|
1216
|
-
end
|
1217
|
-
@no_proxy_regexps.each do |regexp, port|
|
1218
|
-
if !port || uri.port == port.to_i
|
1219
|
-
if regexp =~ uri.host
|
1220
|
-
return true
|
1221
|
-
end
|
1222
|
-
end
|
1223
|
-
end
|
1224
|
-
false
|
1225
|
-
end
|
1226
|
-
|
1227
|
-
# !! CAUTION !!
|
1228
|
-
# Method 'do_get*' runs under MT conditon. Be careful to change.
|
1229
|
-
def do_get_block(req, proxy, conn, &block)
|
1230
|
-
@request_filter.each do |filter|
|
1231
|
-
filter.filter_request(req)
|
1232
|
-
end
|
1233
|
-
if str = @test_loopback_response.shift
|
1234
|
-
dump_dummy_request_response(req.http_body.dump, str) if @debug_dev
|
1235
|
-
res = HTTP::Message.new_response(str, req.header)
|
1236
|
-
conn.push(res)
|
1237
|
-
return res
|
1238
|
-
end
|
1239
|
-
content = block ? nil : ''
|
1240
|
-
res = HTTP::Message.new_response(content, req.header)
|
1241
|
-
@debug_dev << "= Request\n\n" if @debug_dev
|
1242
|
-
sess = @session_manager.query(req, proxy)
|
1243
|
-
res.peer_cert = sess.ssl_peer_cert
|
1244
|
-
@debug_dev << "\n\n= Response\n\n" if @debug_dev
|
1245
|
-
do_get_header(req, res, sess)
|
1246
|
-
conn.push(res)
|
1247
|
-
sess.get_body do |part|
|
1248
|
-
set_encoding(part, res.body_encoding)
|
1249
|
-
if block
|
1250
|
-
block.call(res, part.dup)
|
1251
|
-
else
|
1252
|
-
content << part
|
1253
|
-
end
|
1254
|
-
end
|
1255
|
-
# there could be a race condition but it's OK to cache unreusable
|
1256
|
-
# connection because we do retry for that case.
|
1257
|
-
@session_manager.keep(sess) unless sess.closed?
|
1258
|
-
commands = @request_filter.collect { |filter|
|
1259
|
-
filter.filter_response(req, res)
|
1260
|
-
}
|
1261
|
-
if commands.find { |command| command == :retry }
|
1262
|
-
raise RetryableResponse.new(res)
|
1263
|
-
end
|
1264
|
-
res
|
1265
|
-
end
|
1266
|
-
|
1267
|
-
def do_get_stream(req, proxy, conn)
|
1268
|
-
@request_filter.each do |filter|
|
1269
|
-
filter.filter_request(req)
|
1270
|
-
end
|
1271
|
-
if str = @test_loopback_response.shift
|
1272
|
-
dump_dummy_request_response(req.http_body.dump, str) if @debug_dev
|
1273
|
-
conn.push(HTTP::Message.new_response(StringIO.new(str), req.header))
|
1274
|
-
return
|
1275
|
-
end
|
1276
|
-
piper, pipew = IO.pipe
|
1277
|
-
pipew.binmode
|
1278
|
-
res = HTTP::Message.new_response(piper, req.header)
|
1279
|
-
@debug_dev << "= Request\n\n" if @debug_dev
|
1280
|
-
sess = @session_manager.query(req, proxy)
|
1281
|
-
res.peer_cert = sess.ssl_peer_cert
|
1282
|
-
@debug_dev << "\n\n= Response\n\n" if @debug_dev
|
1283
|
-
do_get_header(req, res, sess)
|
1284
|
-
conn.push(res)
|
1285
|
-
sess.get_body do |part|
|
1286
|
-
set_encoding(part, res.body_encoding)
|
1287
|
-
pipew.write(part)
|
1288
|
-
end
|
1289
|
-
pipew.close
|
1290
|
-
@session_manager.keep(sess) unless sess.closed?
|
1291
|
-
_ = @request_filter.collect { |filter|
|
1292
|
-
filter.filter_response(req, res)
|
1293
|
-
}
|
1294
|
-
# ignore commands (not retryable in async mode)
|
1295
|
-
res
|
1296
|
-
end
|
1297
|
-
|
1298
|
-
def do_get_header(req, res, sess)
|
1299
|
-
res.http_version, res.status, res.reason, headers = sess.get_header
|
1300
|
-
res.header.set_headers(headers)
|
1301
|
-
if @cookie_manager
|
1302
|
-
res.header['set-cookie'].each do |cookie|
|
1303
|
-
@cookie_manager.parse(cookie, req.header.request_uri)
|
1304
|
-
end
|
1305
|
-
end
|
1306
|
-
end
|
1307
|
-
|
1308
|
-
def dump_dummy_request_response(req, res)
|
1309
|
-
@debug_dev << "= Dummy Request\n\n"
|
1310
|
-
@debug_dev << req
|
1311
|
-
@debug_dev << "\n\n= Dummy Response\n\n"
|
1312
|
-
@debug_dev << res
|
1313
|
-
end
|
1314
|
-
|
1315
|
-
def set_encoding(str, encoding)
|
1316
|
-
str.force_encoding(encoding) if encoding
|
1317
|
-
end
|
1318
|
-
|
1319
|
-
def to_resource_url(uri)
|
1320
|
-
u = urify(uri)
|
1321
|
-
if @base_url && u.scheme.nil? && u.host.nil?
|
1322
|
-
urify(@base_url) + uri
|
1323
|
-
else
|
1324
|
-
u
|
1325
|
-
end
|
1326
|
-
end
|
1327
|
-
end
|