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
data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/example_status_persister.rb
DELETED
@@ -1,235 +0,0 @@
|
|
1
|
-
RSpec::Support.require_rspec_support "directory_maker"
|
2
|
-
|
3
|
-
module RSpec
|
4
|
-
module Core
|
5
|
-
# Persists example ids and their statuses so that we can filter
|
6
|
-
# to just the ones that failed the last time they ran.
|
7
|
-
# @private
|
8
|
-
class ExampleStatusPersister
|
9
|
-
def self.load_from(file_name)
|
10
|
-
return [] unless File.exist?(file_name)
|
11
|
-
ExampleStatusParser.parse(File.read(file_name))
|
12
|
-
end
|
13
|
-
|
14
|
-
def self.persist(examples, file_name)
|
15
|
-
new(examples, file_name).persist
|
16
|
-
end
|
17
|
-
|
18
|
-
def initialize(examples, file_name)
|
19
|
-
@examples = examples
|
20
|
-
@file_name = file_name
|
21
|
-
end
|
22
|
-
|
23
|
-
def persist
|
24
|
-
RSpec::Support::DirectoryMaker.mkdir_p(File.dirname(@file_name))
|
25
|
-
File.open(@file_name, File::RDWR | File::CREAT) do |f|
|
26
|
-
# lock the file while reading / persisting to avoid a race
|
27
|
-
# condition where parallel or unrelated spec runs race to
|
28
|
-
# update the same file
|
29
|
-
f.flock(File::LOCK_EX)
|
30
|
-
unparsed_previous_runs = f.read
|
31
|
-
f.rewind
|
32
|
-
f.write(dump_statuses(unparsed_previous_runs))
|
33
|
-
f.flush
|
34
|
-
f.truncate(f.pos)
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
private
|
39
|
-
|
40
|
-
def dump_statuses(unparsed_previous_runs)
|
41
|
-
statuses_from_previous_runs = ExampleStatusParser.parse(unparsed_previous_runs)
|
42
|
-
merged_statuses = ExampleStatusMerger.merge(statuses_from_this_run, statuses_from_previous_runs)
|
43
|
-
ExampleStatusDumper.dump(merged_statuses)
|
44
|
-
end
|
45
|
-
|
46
|
-
def statuses_from_this_run
|
47
|
-
@examples.map do |ex|
|
48
|
-
result = ex.execution_result
|
49
|
-
|
50
|
-
{
|
51
|
-
:example_id => ex.id,
|
52
|
-
:status => result.status ? result.status.to_s : Configuration::UNKNOWN_STATUS,
|
53
|
-
:run_time => result.run_time ? Formatters::Helpers.format_duration(result.run_time) : ""
|
54
|
-
}
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
58
|
-
|
59
|
-
# Merges together a list of example statuses from this run
|
60
|
-
# and a list from previous runs (presumably loaded from disk).
|
61
|
-
# Each example status object is expected to be a hash with
|
62
|
-
# at least an `:example_id` and a `:status` key. Examples that
|
63
|
-
# were loaded but not executed (due to filtering, `--fail-fast`
|
64
|
-
# or whatever) should have a `:status` of `UNKNOWN_STATUS`.
|
65
|
-
#
|
66
|
-
# This willl produce a new list that:
|
67
|
-
# - Will be missing examples from previous runs that we know for sure
|
68
|
-
# no longer exist.
|
69
|
-
# - Will have the latest known status for any examples that either
|
70
|
-
# definitively do exist or may still exist.
|
71
|
-
# - Is sorted by file name and example definition order, so that
|
72
|
-
# the saved file is easily scannable if users want to inspect it.
|
73
|
-
# @private
|
74
|
-
class ExampleStatusMerger
|
75
|
-
def self.merge(this_run, from_previous_runs)
|
76
|
-
new(this_run, from_previous_runs).merge
|
77
|
-
end
|
78
|
-
|
79
|
-
def initialize(this_run, from_previous_runs)
|
80
|
-
@this_run = hash_from(this_run)
|
81
|
-
@from_previous_runs = hash_from(from_previous_runs)
|
82
|
-
@file_exists_cache = Hash.new { |hash, file| hash[file] = File.exist?(file) }
|
83
|
-
end
|
84
|
-
|
85
|
-
def merge
|
86
|
-
delete_previous_examples_that_no_longer_exist
|
87
|
-
|
88
|
-
@this_run.merge(@from_previous_runs) do |_ex_id, new, old|
|
89
|
-
new.fetch(:status) == Configuration::UNKNOWN_STATUS ? old : new
|
90
|
-
end.values.sort_by(&method(:sort_value_from))
|
91
|
-
end
|
92
|
-
|
93
|
-
private
|
94
|
-
|
95
|
-
def hash_from(example_list)
|
96
|
-
example_list.inject({}) do |hash, example|
|
97
|
-
hash[example.fetch(:example_id)] = example
|
98
|
-
hash
|
99
|
-
end
|
100
|
-
end
|
101
|
-
|
102
|
-
def delete_previous_examples_that_no_longer_exist
|
103
|
-
@from_previous_runs.delete_if do |ex_id, _|
|
104
|
-
example_must_no_longer_exist?(ex_id)
|
105
|
-
end
|
106
|
-
end
|
107
|
-
|
108
|
-
def example_must_no_longer_exist?(ex_id)
|
109
|
-
# Obviously, it exists if it was loaded for this spec run...
|
110
|
-
return false if @this_run.key?(ex_id)
|
111
|
-
|
112
|
-
spec_file = spec_file_from(ex_id)
|
113
|
-
|
114
|
-
# `this_run` includes examples that were loaded but not executed.
|
115
|
-
# Given that, if the spec file for this example was loaded,
|
116
|
-
# but the id does not still exist, it's safe to assume that
|
117
|
-
# the example must no longer exist.
|
118
|
-
return true if loaded_spec_files.include?(spec_file)
|
119
|
-
|
120
|
-
# The example may still exist as long as the file exists...
|
121
|
-
!@file_exists_cache[spec_file]
|
122
|
-
end
|
123
|
-
|
124
|
-
def loaded_spec_files
|
125
|
-
@loaded_spec_files ||= Set.new(@this_run.keys.map(&method(:spec_file_from)))
|
126
|
-
end
|
127
|
-
|
128
|
-
def spec_file_from(ex_id)
|
129
|
-
ex_id.split("[").first
|
130
|
-
end
|
131
|
-
|
132
|
-
def sort_value_from(example)
|
133
|
-
file, scoped_id = Example.parse_id(example.fetch(:example_id))
|
134
|
-
[file, *scoped_id.split(":").map(&method(:Integer))]
|
135
|
-
end
|
136
|
-
end
|
137
|
-
|
138
|
-
# Dumps a list of hashes in a pretty, human readable format
|
139
|
-
# for later parsing. The hashes are expected to have symbol
|
140
|
-
# keys and string values, and each hash should have the same
|
141
|
-
# set of keys.
|
142
|
-
# @private
|
143
|
-
class ExampleStatusDumper
|
144
|
-
def self.dump(examples)
|
145
|
-
new(examples).dump
|
146
|
-
end
|
147
|
-
|
148
|
-
def initialize(examples)
|
149
|
-
@examples = examples
|
150
|
-
end
|
151
|
-
|
152
|
-
def dump
|
153
|
-
return nil if @examples.empty?
|
154
|
-
(formatted_header_rows + formatted_value_rows).join("\n") << "\n"
|
155
|
-
end
|
156
|
-
|
157
|
-
private
|
158
|
-
|
159
|
-
def formatted_header_rows
|
160
|
-
@formatted_header_rows ||= begin
|
161
|
-
dividers = column_widths.map { |w| "-" * w }
|
162
|
-
[formatted_row_from(headers.map(&:to_s)), formatted_row_from(dividers)]
|
163
|
-
end
|
164
|
-
end
|
165
|
-
|
166
|
-
def formatted_value_rows
|
167
|
-
@foramtted_value_rows ||= rows.map do |row|
|
168
|
-
formatted_row_from(row)
|
169
|
-
end
|
170
|
-
end
|
171
|
-
|
172
|
-
def rows
|
173
|
-
@rows ||= @examples.map { |ex| ex.values_at(*headers) }
|
174
|
-
end
|
175
|
-
|
176
|
-
def formatted_row_from(row_values)
|
177
|
-
padded_values = row_values.each_with_index.map do |value, index|
|
178
|
-
value.ljust(column_widths[index])
|
179
|
-
end
|
180
|
-
|
181
|
-
padded_values.join(" | ") << " |"
|
182
|
-
end
|
183
|
-
|
184
|
-
def headers
|
185
|
-
@headers ||= @examples.first.keys
|
186
|
-
end
|
187
|
-
|
188
|
-
def column_widths
|
189
|
-
@column_widths ||= begin
|
190
|
-
value_sets = rows.transpose
|
191
|
-
|
192
|
-
headers.each_with_index.map do |header, index|
|
193
|
-
values = value_sets[index] << header.to_s
|
194
|
-
values.map(&:length).max
|
195
|
-
end
|
196
|
-
end
|
197
|
-
end
|
198
|
-
end
|
199
|
-
|
200
|
-
# Parses a string that has been previously dumped by ExampleStatusDumper.
|
201
|
-
# Note that this parser is a bit naive in that it does a simple split on
|
202
|
-
# "\n" and " | ", with no concern for handling escaping. For now, that's
|
203
|
-
# OK because the values we plan to persist (example id, status, and perhaps
|
204
|
-
# example duration) are highly unlikely to contain "\n" or " | " -- after
|
205
|
-
# all, who puts those in file names?
|
206
|
-
# @private
|
207
|
-
class ExampleStatusParser
|
208
|
-
def self.parse(string)
|
209
|
-
new(string).parse
|
210
|
-
end
|
211
|
-
|
212
|
-
def initialize(string)
|
213
|
-
@header_line, _, *@row_lines = string.lines.to_a
|
214
|
-
end
|
215
|
-
|
216
|
-
def parse
|
217
|
-
@row_lines.map { |line| parse_row(line) }
|
218
|
-
end
|
219
|
-
|
220
|
-
private
|
221
|
-
|
222
|
-
def parse_row(line)
|
223
|
-
Hash[headers.zip(split_line(line))]
|
224
|
-
end
|
225
|
-
|
226
|
-
def headers
|
227
|
-
@headers ||= split_line(@header_line).grep(/\S/).map(&:to_sym)
|
228
|
-
end
|
229
|
-
|
230
|
-
def split_line(line)
|
231
|
-
line.split(/\s+\|\s+?/, -1)
|
232
|
-
end
|
233
|
-
end
|
234
|
-
end
|
235
|
-
end
|
@@ -1,231 +0,0 @@
|
|
1
|
-
module RSpec
|
2
|
-
module Core
|
3
|
-
# @private
|
4
|
-
class FilterManager
|
5
|
-
attr_reader :exclusions, :inclusions
|
6
|
-
|
7
|
-
def initialize
|
8
|
-
@exclusions, @inclusions = FilterRules.build
|
9
|
-
end
|
10
|
-
|
11
|
-
# @api private
|
12
|
-
#
|
13
|
-
# @param file_path [String]
|
14
|
-
# @param line_numbers [Array]
|
15
|
-
def add_location(file_path, line_numbers)
|
16
|
-
# locations is a hash of expanded paths to arrays of line
|
17
|
-
# numbers to match against. e.g.
|
18
|
-
# { "path/to/file.rb" => [37, 42] }
|
19
|
-
add_path_to_arrays_filter(:locations, File.expand_path(file_path), line_numbers)
|
20
|
-
end
|
21
|
-
|
22
|
-
def add_ids(rerun_path, scoped_ids)
|
23
|
-
# ids is a hash of relative paths to arrays of ids
|
24
|
-
# to match against. e.g.
|
25
|
-
# { "./path/to/file.rb" => ["1:1", "2:4"] }
|
26
|
-
rerun_path = Metadata.relative_path(File.expand_path rerun_path)
|
27
|
-
add_path_to_arrays_filter(:ids, rerun_path, scoped_ids)
|
28
|
-
end
|
29
|
-
|
30
|
-
def empty?
|
31
|
-
inclusions.empty? && exclusions.empty?
|
32
|
-
end
|
33
|
-
|
34
|
-
def prune(examples)
|
35
|
-
# Semantically, this is unnecessary (the filtering below will return the empty
|
36
|
-
# array unmodified), but for perf reasons it's worth exiting early here. Users
|
37
|
-
# commonly have top-level examples groups that do not have any direct examples
|
38
|
-
# and instead have nested groups with examples. In that kind of situation,
|
39
|
-
# `examples` will be empty.
|
40
|
-
return examples if examples.empty?
|
41
|
-
|
42
|
-
examples = prune_conditionally_filtered_examples(examples)
|
43
|
-
|
44
|
-
if inclusions.standalone?
|
45
|
-
examples.select { |e| inclusions.include_example?(e) }
|
46
|
-
else
|
47
|
-
locations, ids, non_scoped_inclusions = inclusions.split_file_scoped_rules
|
48
|
-
|
49
|
-
examples.select do |ex|
|
50
|
-
file_scoped_include?(ex.metadata, ids, locations) do
|
51
|
-
!exclusions.include_example?(ex) && non_scoped_inclusions.include_example?(ex)
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
end
|
56
|
-
|
57
|
-
def exclude(*args)
|
58
|
-
exclusions.add(args.last)
|
59
|
-
end
|
60
|
-
|
61
|
-
def exclude_only(*args)
|
62
|
-
exclusions.use_only(args.last)
|
63
|
-
end
|
64
|
-
|
65
|
-
def exclude_with_low_priority(*args)
|
66
|
-
exclusions.add_with_low_priority(args.last)
|
67
|
-
end
|
68
|
-
|
69
|
-
def include(*args)
|
70
|
-
inclusions.add(args.last)
|
71
|
-
end
|
72
|
-
|
73
|
-
def include_only(*args)
|
74
|
-
inclusions.use_only(args.last)
|
75
|
-
end
|
76
|
-
|
77
|
-
def include_with_low_priority(*args)
|
78
|
-
inclusions.add_with_low_priority(args.last)
|
79
|
-
end
|
80
|
-
|
81
|
-
private
|
82
|
-
|
83
|
-
def add_path_to_arrays_filter(filter_key, path, values)
|
84
|
-
filter = inclusions.delete(filter_key) || Hash.new { |h, k| h[k] = [] }
|
85
|
-
filter[path].concat(values)
|
86
|
-
inclusions.add(filter_key => filter)
|
87
|
-
end
|
88
|
-
|
89
|
-
def prune_conditionally_filtered_examples(examples)
|
90
|
-
examples.reject do |ex|
|
91
|
-
meta = ex.metadata
|
92
|
-
!meta.fetch(:if, true) || meta[:unless]
|
93
|
-
end
|
94
|
-
end
|
95
|
-
|
96
|
-
# When a user specifies a particular spec location, that takes priority
|
97
|
-
# over any exclusion filters (such as if the spec is tagged with `:slow`
|
98
|
-
# and there is a `:slow => true` exclusion filter), but only for specs
|
99
|
-
# defined in the same file as the location filters. Excluded specs in
|
100
|
-
# other files should still be excluded.
|
101
|
-
def file_scoped_include?(ex_metadata, ids, locations)
|
102
|
-
no_id_filters = ids[ex_metadata[:rerun_file_path]].empty?
|
103
|
-
no_location_filters = locations[
|
104
|
-
File.expand_path(ex_metadata[:rerun_file_path])
|
105
|
-
].empty?
|
106
|
-
|
107
|
-
return yield if no_location_filters && no_id_filters
|
108
|
-
|
109
|
-
MetadataFilter.filter_applies?(:ids, ids, ex_metadata) ||
|
110
|
-
MetadataFilter.filter_applies?(:locations, locations, ex_metadata)
|
111
|
-
end
|
112
|
-
end
|
113
|
-
|
114
|
-
# @private
|
115
|
-
class FilterRules
|
116
|
-
PROC_HEX_NUMBER = /0x[0-9a-f]+@?/
|
117
|
-
PROJECT_DIR = File.expand_path('.')
|
118
|
-
|
119
|
-
attr_accessor :opposite
|
120
|
-
attr_reader :rules
|
121
|
-
|
122
|
-
def self.build
|
123
|
-
exclusions = ExclusionRules.new
|
124
|
-
inclusions = InclusionRules.new
|
125
|
-
exclusions.opposite = inclusions
|
126
|
-
inclusions.opposite = exclusions
|
127
|
-
[exclusions, inclusions]
|
128
|
-
end
|
129
|
-
|
130
|
-
def initialize(rules={})
|
131
|
-
@rules = rules
|
132
|
-
end
|
133
|
-
|
134
|
-
def add(updated)
|
135
|
-
@rules.merge!(updated).each_key { |k| opposite.delete(k) }
|
136
|
-
end
|
137
|
-
|
138
|
-
def add_with_low_priority(updated)
|
139
|
-
updated = updated.merge(@rules)
|
140
|
-
opposite.each_pair { |k, v| updated.delete(k) if updated[k] == v }
|
141
|
-
@rules.replace(updated)
|
142
|
-
end
|
143
|
-
|
144
|
-
def use_only(updated)
|
145
|
-
updated.each_key { |k| opposite.delete(k) }
|
146
|
-
@rules.replace(updated)
|
147
|
-
end
|
148
|
-
|
149
|
-
def clear
|
150
|
-
@rules.clear
|
151
|
-
end
|
152
|
-
|
153
|
-
def delete(key)
|
154
|
-
@rules.delete(key)
|
155
|
-
end
|
156
|
-
|
157
|
-
def fetch(*args, &block)
|
158
|
-
@rules.fetch(*args, &block)
|
159
|
-
end
|
160
|
-
|
161
|
-
def [](key)
|
162
|
-
@rules[key]
|
163
|
-
end
|
164
|
-
|
165
|
-
def empty?
|
166
|
-
rules.empty?
|
167
|
-
end
|
168
|
-
|
169
|
-
def each_pair(&block)
|
170
|
-
@rules.each_pair(&block)
|
171
|
-
end
|
172
|
-
|
173
|
-
def description
|
174
|
-
rules.inspect.gsub(PROC_HEX_NUMBER, '').gsub(PROJECT_DIR, '.').gsub(' (lambda)', '')
|
175
|
-
end
|
176
|
-
|
177
|
-
def include_example?(example)
|
178
|
-
MetadataFilter.apply?(:any?, @rules, example.metadata)
|
179
|
-
end
|
180
|
-
end
|
181
|
-
|
182
|
-
# @private
|
183
|
-
ExclusionRules = FilterRules
|
184
|
-
|
185
|
-
# @private
|
186
|
-
class InclusionRules < FilterRules
|
187
|
-
def add(*args)
|
188
|
-
apply_standalone_filter(*args) || super
|
189
|
-
end
|
190
|
-
|
191
|
-
def add_with_low_priority(*args)
|
192
|
-
apply_standalone_filter(*args) || super
|
193
|
-
end
|
194
|
-
|
195
|
-
def include_example?(example)
|
196
|
-
@rules.empty? || super
|
197
|
-
end
|
198
|
-
|
199
|
-
def standalone?
|
200
|
-
is_standalone_filter?(@rules)
|
201
|
-
end
|
202
|
-
|
203
|
-
def split_file_scoped_rules
|
204
|
-
rules_dup = @rules.dup
|
205
|
-
locations = rules_dup.delete(:locations) { Hash.new([]) }
|
206
|
-
ids = rules_dup.delete(:ids) { Hash.new([]) }
|
207
|
-
|
208
|
-
return locations, ids, self.class.new(rules_dup)
|
209
|
-
end
|
210
|
-
|
211
|
-
private
|
212
|
-
|
213
|
-
def apply_standalone_filter(updated)
|
214
|
-
return true if standalone?
|
215
|
-
return nil unless is_standalone_filter?(updated)
|
216
|
-
|
217
|
-
replace_filters(updated)
|
218
|
-
true
|
219
|
-
end
|
220
|
-
|
221
|
-
def replace_filters(new_rules)
|
222
|
-
@rules.replace(new_rules)
|
223
|
-
opposite.clear
|
224
|
-
end
|
225
|
-
|
226
|
-
def is_standalone_filter?(rules)
|
227
|
-
rules.key?(:full_description)
|
228
|
-
end
|
229
|
-
end
|
230
|
-
end
|
231
|
-
end
|
@@ -1,20 +0,0 @@
|
|
1
|
-
module RSpec
|
2
|
-
module Core
|
3
|
-
# @private
|
4
|
-
module FlatMap
|
5
|
-
if [].respond_to?(:flat_map)
|
6
|
-
def flat_map(array, &block)
|
7
|
-
array.flat_map(&block)
|
8
|
-
end
|
9
|
-
else # for 1.8.7
|
10
|
-
# :nocov:
|
11
|
-
def flat_map(array, &block)
|
12
|
-
array.map(&block).flatten(1)
|
13
|
-
end
|
14
|
-
# :nocov:
|
15
|
-
end
|
16
|
-
|
17
|
-
module_function :flat_map
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
@@ -1,45 +0,0 @@
|
|
1
|
-
RSpec::Support.require_rspec_core "bisect/utilities"
|
2
|
-
|
3
|
-
module RSpec
|
4
|
-
module Core
|
5
|
-
module Formatters
|
6
|
-
# Contains common logic for formatters used by `--bisect` to communicate results
|
7
|
-
# back to the bisect runner.
|
8
|
-
#
|
9
|
-
# Subclasses must define a `notify_results(all_example_ids, failed_example_ids)`
|
10
|
-
# method.
|
11
|
-
# @private
|
12
|
-
class BaseBisectFormatter
|
13
|
-
def self.inherited(formatter)
|
14
|
-
Formatters.register formatter, :start_dump, :example_failed, :example_finished
|
15
|
-
end
|
16
|
-
|
17
|
-
def initialize(expected_failures)
|
18
|
-
@all_example_ids = []
|
19
|
-
@failed_example_ids = []
|
20
|
-
@remaining_failures = expected_failures
|
21
|
-
end
|
22
|
-
|
23
|
-
def example_failed(notification)
|
24
|
-
@failed_example_ids << notification.example.id
|
25
|
-
end
|
26
|
-
|
27
|
-
def example_finished(notification)
|
28
|
-
@all_example_ids << notification.example.id
|
29
|
-
return unless @remaining_failures.include?(notification.example.id)
|
30
|
-
@remaining_failures.delete(notification.example.id)
|
31
|
-
|
32
|
-
status = notification.example.execution_result.status
|
33
|
-
return if status == :failed && !@remaining_failures.empty?
|
34
|
-
RSpec.world.wants_to_quit = true
|
35
|
-
end
|
36
|
-
|
37
|
-
def start_dump(_notification)
|
38
|
-
# `notify_results` is defined in the subclass
|
39
|
-
notify_results(Bisect::ExampleSetDescriptor.new(
|
40
|
-
@all_example_ids, @failed_example_ids))
|
41
|
-
end
|
42
|
-
end
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end
|
data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/base_formatter.rb
DELETED
@@ -1,70 +0,0 @@
|
|
1
|
-
RSpec::Support.require_rspec_core "formatters/helpers"
|
2
|
-
require 'stringio'
|
3
|
-
|
4
|
-
module RSpec
|
5
|
-
module Core
|
6
|
-
module Formatters
|
7
|
-
# RSpec's built-in formatters are all subclasses of
|
8
|
-
# RSpec::Core::Formatters::BaseFormatter.
|
9
|
-
#
|
10
|
-
# @see RSpec::Core::Formatters::BaseTextFormatter
|
11
|
-
# @see RSpec::Core::Reporter
|
12
|
-
# @see RSpec::Core::Formatters::Protocol
|
13
|
-
class BaseFormatter
|
14
|
-
# All formatters inheriting from this formatter will receive these
|
15
|
-
# notifications.
|
16
|
-
Formatters.register self, :start, :example_group_started, :close
|
17
|
-
attr_accessor :example_group
|
18
|
-
attr_reader :output
|
19
|
-
|
20
|
-
# @api public
|
21
|
-
# @param output [IO] the formatter output
|
22
|
-
# @see RSpec::Core::Formatters::Protocol#initialize
|
23
|
-
def initialize(output)
|
24
|
-
@output = output || StringIO.new
|
25
|
-
@example_group = nil
|
26
|
-
end
|
27
|
-
|
28
|
-
# @api public
|
29
|
-
#
|
30
|
-
# @param notification [StartNotification]
|
31
|
-
# @see RSpec::Core::Formatters::Protocol#start
|
32
|
-
def start(notification)
|
33
|
-
start_sync_output
|
34
|
-
@example_count = notification.count
|
35
|
-
end
|
36
|
-
|
37
|
-
# @api public
|
38
|
-
#
|
39
|
-
# @param notification [GroupNotification] containing example_group
|
40
|
-
# subclass of `RSpec::Core::ExampleGroup`
|
41
|
-
# @see RSpec::Core::Formatters::Protocol#example_group_started
|
42
|
-
def example_group_started(notification)
|
43
|
-
@example_group = notification.group
|
44
|
-
end
|
45
|
-
|
46
|
-
# @api public
|
47
|
-
#
|
48
|
-
# @param _notification [NullNotification] (Ignored)
|
49
|
-
# @see RSpec::Core::Formatters::Protocol#close
|
50
|
-
def close(_notification)
|
51
|
-
restore_sync_output
|
52
|
-
end
|
53
|
-
|
54
|
-
private
|
55
|
-
|
56
|
-
def start_sync_output
|
57
|
-
@old_sync, output.sync = output.sync, true if output_supports_sync
|
58
|
-
end
|
59
|
-
|
60
|
-
def restore_sync_output
|
61
|
-
output.sync = @old_sync if output_supports_sync && !output.closed?
|
62
|
-
end
|
63
|
-
|
64
|
-
def output_supports_sync
|
65
|
-
output.respond_to?(:sync=)
|
66
|
-
end
|
67
|
-
end
|
68
|
-
end
|
69
|
-
end
|
70
|
-
end
|
@@ -1,75 +0,0 @@
|
|
1
|
-
RSpec::Support.require_rspec_core "formatters/base_formatter"
|
2
|
-
|
3
|
-
module RSpec
|
4
|
-
module Core
|
5
|
-
module Formatters
|
6
|
-
# Base for all of RSpec's built-in formatters. See
|
7
|
-
# RSpec::Core::Formatters::BaseFormatter to learn more about all of the
|
8
|
-
# methods called by the reporter.
|
9
|
-
#
|
10
|
-
# @see RSpec::Core::Formatters::BaseFormatter
|
11
|
-
# @see RSpec::Core::Reporter
|
12
|
-
class BaseTextFormatter < BaseFormatter
|
13
|
-
Formatters.register self,
|
14
|
-
:message, :dump_summary, :dump_failures, :dump_pending, :seed
|
15
|
-
|
16
|
-
# @api public
|
17
|
-
#
|
18
|
-
# Used by the reporter to send messages to the output stream.
|
19
|
-
#
|
20
|
-
# @param notification [MessageNotification] containing message
|
21
|
-
def message(notification)
|
22
|
-
output.puts notification.message
|
23
|
-
end
|
24
|
-
|
25
|
-
# @api public
|
26
|
-
#
|
27
|
-
# Dumps detailed information about each example failure.
|
28
|
-
#
|
29
|
-
# @param notification [NullNotification]
|
30
|
-
def dump_failures(notification)
|
31
|
-
return if notification.failure_notifications.empty?
|
32
|
-
output.puts notification.fully_formatted_failed_examples
|
33
|
-
end
|
34
|
-
|
35
|
-
# @api public
|
36
|
-
#
|
37
|
-
# This method is invoked after the dumping of examples and failures.
|
38
|
-
# Each parameter is assigned to a corresponding attribute.
|
39
|
-
#
|
40
|
-
# @param summary [SummaryNotification] containing duration,
|
41
|
-
# example_count, failure_count and pending_count
|
42
|
-
def dump_summary(summary)
|
43
|
-
output.puts summary.fully_formatted
|
44
|
-
end
|
45
|
-
|
46
|
-
# @private
|
47
|
-
def dump_pending(notification)
|
48
|
-
return if notification.pending_examples.empty?
|
49
|
-
output.puts notification.fully_formatted_pending_examples
|
50
|
-
end
|
51
|
-
|
52
|
-
# @private
|
53
|
-
def seed(notification)
|
54
|
-
return unless notification.seed_used?
|
55
|
-
output.puts notification.fully_formatted
|
56
|
-
end
|
57
|
-
|
58
|
-
# @api public
|
59
|
-
#
|
60
|
-
# Invoked at the end of a suite run. Allows the formatter to do any
|
61
|
-
# tidying up, but be aware that formatter output streams may be used
|
62
|
-
# elsewhere so don't actually close them.
|
63
|
-
#
|
64
|
-
# @param _notification [NullNotification] (Ignored)
|
65
|
-
def close(_notification)
|
66
|
-
return if output.closed?
|
67
|
-
|
68
|
-
output.puts
|
69
|
-
|
70
|
-
output.flush
|
71
|
-
end
|
72
|
-
end
|
73
|
-
end
|
74
|
-
end
|
75
|
-
end
|
@@ -1,29 +0,0 @@
|
|
1
|
-
require 'drb/drb'
|
2
|
-
RSpec::Support.require_rspec_core "formatters/base_bisect_formatter"
|
3
|
-
|
4
|
-
module RSpec
|
5
|
-
module Core
|
6
|
-
module Formatters
|
7
|
-
# Used by `--bisect`. When it shells out and runs a portion of the suite, it uses
|
8
|
-
# this formatter as a means to have the status reported back to it, via DRb.
|
9
|
-
#
|
10
|
-
# Note that since DRb calls carry considerable overhead compared to normal
|
11
|
-
# method calls, we try to minimize the number of DRb calls for perf reasons,
|
12
|
-
# opting to communicate only at the start and the end of the run, rather than
|
13
|
-
# after each example.
|
14
|
-
# @private
|
15
|
-
class BisectDRbFormatter < BaseBisectFormatter
|
16
|
-
def initialize(_output)
|
17
|
-
drb_uri = "druby://localhost:#{RSpec.configuration.drb_port}"
|
18
|
-
@bisect_server = DRbObject.new_with_uri(drb_uri)
|
19
|
-
RSpec.configuration.files_or_directories_to_run = @bisect_server.files_or_directories_to_run
|
20
|
-
super(Set.new(@bisect_server.expected_failures))
|
21
|
-
end
|
22
|
-
|
23
|
-
def notify_results(results)
|
24
|
-
@bisect_server.latest_run_results = results
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|