vagrant-unbundled 2.2.19.0 → 2.3.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.envrc +5 -0
- data/.gitignore +22 -2
- data/.gitmodules +3 -0
- data/CHANGELOG.md +60 -0
- data/Dockerfile +41 -0
- data/Gemfile.lock +67 -37
- data/LICENSE +1 -3
- data/Makefile +67 -0
- data/bin/vagrant +60 -42
- data/binstubs/vagrant +29 -0
- data/flake.lock +43 -0
- data/flake.nix +24 -0
- data/gen.go +23 -0
- data/go.mod +175 -0
- data/go.sum +994 -0
- data/lib/vagrant/action/builder.rb +36 -1
- data/lib/vagrant/action/builtin/box_add.rb +2 -2
- data/lib/vagrant/action/builtin/mixin_synced_folders.rb +2 -0
- data/lib/vagrant/action/builtin/remote/mixin_synced_folders.rb +39 -0
- data/lib/vagrant/action/builtin/remote/ssh_run.rb +18 -0
- data/lib/vagrant/action/builtin/ssh_run.rb +5 -1
- data/lib/vagrant/action/primary_runner.rb +15 -0
- data/lib/vagrant/action/runner.rb +12 -0
- data/lib/vagrant/action.rb +10 -4
- data/lib/vagrant/box/remote.rb +80 -0
- data/lib/vagrant/box.rb +19 -1
- data/lib/vagrant/box_collection/remote.rb +53 -0
- data/lib/vagrant/box_collection.rb +8 -1
- data/lib/vagrant/box_metadata/remote.rb +97 -0
- data/lib/vagrant/box_metadata.rb +6 -3
- data/lib/vagrant/bundler.rb +6 -1
- data/lib/vagrant/config/loader.rb +46 -1
- data/lib/vagrant/config/v2/dummy_config.rb +46 -2
- data/lib/vagrant/config/v2/root.rb +3 -2
- data/lib/vagrant/environment/remote.rb +173 -0
- data/lib/vagrant/environment.rb +31 -7
- data/lib/vagrant/errors.rb +20 -0
- data/lib/vagrant/guest/remote.rb +81 -0
- data/lib/vagrant/guest.rb +2 -0
- data/lib/vagrant/host/remote.rb +52 -0
- data/lib/vagrant/host.rb +2 -0
- data/lib/vagrant/machine/remote.rb +330 -0
- data/lib/vagrant/machine.rb +5 -3
- data/lib/vagrant/machine_index/remote.rb +155 -0
- data/lib/vagrant/machine_index.rb +13 -2
- data/lib/vagrant/patches/fake_ftp.rb +25 -0
- data/lib/vagrant/patches/log4r.rb +39 -0
- data/lib/vagrant/plugin/remote/command.rb +27 -0
- data/lib/vagrant/plugin/remote/communicator.rb +72 -0
- data/lib/vagrant/plugin/remote/guest.rb +24 -0
- data/lib/vagrant/plugin/remote/host.rb +23 -0
- data/lib/vagrant/plugin/remote/manager.rb +300 -0
- data/lib/vagrant/plugin/remote/plugin.rb +24 -0
- data/lib/vagrant/plugin/remote/provider.rb +75 -0
- data/lib/vagrant/plugin/remote/provisioner.rb +47 -0
- data/lib/vagrant/plugin/remote/push.rb +25 -0
- data/lib/vagrant/plugin/remote/synced_folder.rb +104 -0
- data/lib/vagrant/plugin/remote.rb +17 -0
- data/lib/vagrant/plugin/v2/command.rb +1 -1
- data/lib/vagrant/plugin/v2/communicator.rb +3 -0
- data/lib/vagrant/plugin/v2/config.rb +27 -1
- data/lib/vagrant/plugin/v2/plugin.rb +21 -2
- data/lib/vagrant/plugin/v2/synced_folder.rb +2 -0
- data/lib/vagrant/plugin.rb +1 -0
- data/lib/vagrant/protobufs/proto/plugin/grpc_broker_pb.rb +18 -0
- data/lib/vagrant/protobufs/proto/plugin/grpc_broker_services_pb.rb +22 -0
- data/lib/vagrant/protobufs/proto/protostructure_pb.rb +42 -0
- data/lib/vagrant/protobufs/proto/ruby_vagrant/ruby-server_pb.rb +71 -0
- data/lib/vagrant/protobufs/proto/ruby_vagrant/ruby-server_services_pb.rb +31 -0
- data/lib/vagrant/protobufs/proto/vagrant_plugin_sdk/plugin_pb.rb +1283 -0
- data/lib/vagrant/protobufs/proto/vagrant_plugin_sdk/plugin_services_pb.rb +648 -0
- data/lib/vagrant/protobufs/proto/vagrant_server/server_pb.rb +1073 -0
- data/lib/vagrant/protobufs/proto/vagrant_server/server_services_pb.rb +135 -0
- data/lib/vagrant/registry.rb +9 -0
- data/lib/vagrant/shared_helpers.rb +53 -1
- data/lib/vagrant/ui/remote.rb +77 -0
- data/lib/vagrant/ui.rb +14 -1
- data/lib/vagrant/util/downloader.rb +1 -1
- data/lib/vagrant/util/install_cli_autocomplete.rb +3 -3
- data/lib/vagrant/util/logging_formatter.rb +39 -1
- data/lib/vagrant/util/remote/safe_puts.rb +28 -0
- data/lib/vagrant/util/remote/ssh.rb +42 -0
- data/lib/vagrant/util/ssh.rb +10 -2
- data/lib/vagrant/util/subprocess.rb +2 -2
- data/lib/vagrant/util.rb +7 -0
- data/lib/vagrant/vagrantfile/remote.rb +80 -0
- data/lib/vagrant/vagrantfile.rb +2 -1
- data/lib/vagrant.rb +23 -25
- data/nix/go-changelog.nix +17 -0
- data/nix/go-mockery.nix +23 -0
- data/nix/go-protobuf-json.nix +16 -0
- data/nix/go-protobuf.nix +18 -0
- data/nix/go-tools.nix +22 -0
- data/nix/grpc-tools.nix +10 -0
- data/nix/overlay.nix +20 -0
- data/nix/vagrant.nix +73 -0
- data/pkg/vagrant-unbundled-2.3.2.0.gem +0 -0
- data/plugins/README.md +6 -0
- data/plugins/commands/autocomplete/command/root.rb +10 -8
- data/plugins/commands/box/command/list.rb +2 -1
- data/plugins/commands/box/command/outdated.rb +1 -0
- data/plugins/commands/box/command/root.rb +12 -11
- data/plugins/commands/cap/command.rb +2 -1
- data/plugins/commands/cloud/auth/root.rb +12 -11
- data/plugins/commands/cloud/box/root.rb +12 -11
- data/plugins/commands/cloud/plugin.rb +5 -5
- data/plugins/commands/cloud/provider/root.rb +12 -11
- data/plugins/commands/cloud/root.rb +12 -11
- data/plugins/commands/cloud/version/root.rb +12 -11
- data/plugins/commands/plugin/command/root.rb +12 -11
- data/plugins/commands/port/command.rb +0 -2
- data/plugins/commands/serve/broker.rb +161 -0
- data/plugins/commands/serve/client/basis.rb +92 -0
- data/plugins/commands/serve/client/box.rb +117 -0
- data/plugins/commands/serve/client/box_collection.rb +73 -0
- data/plugins/commands/serve/client/box_metadata.rb +55 -0
- data/plugins/commands/serve/client/capability_platform.rb +62 -0
- data/plugins/commands/serve/client/command.rb +57 -0
- data/plugins/commands/serve/client/communicator.rb +180 -0
- data/plugins/commands/serve/client/core_plugin_manager.rb +16 -0
- data/plugins/commands/serve/client/guest.rb +44 -0
- data/plugins/commands/serve/client/host.rb +24 -0
- data/plugins/commands/serve/client/plugin_manager.rb +56 -0
- data/plugins/commands/serve/client/project.rb +187 -0
- data/plugins/commands/serve/client/provider.rb +152 -0
- data/plugins/commands/serve/client/provisioner.rb +47 -0
- data/plugins/commands/serve/client/push.rb +23 -0
- data/plugins/commands/serve/client/state_bag.rb +48 -0
- data/plugins/commands/serve/client/synced_folder.rb +115 -0
- data/plugins/commands/serve/client/target/machine.rb +141 -0
- data/plugins/commands/serve/client/target.rb +145 -0
- data/plugins/commands/serve/client/target_index.rb +76 -0
- data/plugins/commands/serve/client/terminal.rb +118 -0
- data/plugins/commands/serve/client/vagrantfile.rb +80 -0
- data/plugins/commands/serve/client.rb +38 -0
- data/plugins/commands/serve/command.rb +143 -0
- data/plugins/commands/serve/mappers/basis.rb +44 -0
- data/plugins/commands/serve/mappers/box.rb +53 -0
- data/plugins/commands/serve/mappers/capabilities.rb +56 -0
- data/plugins/commands/serve/mappers/command.rb +143 -0
- data/plugins/commands/serve/mappers/communicator.rb +50 -0
- data/plugins/commands/serve/mappers/config_data.rb +227 -0
- data/plugins/commands/serve/mappers/core_plugin_manager.rb +41 -0
- data/plugins/commands/serve/mappers/direct.rb +76 -0
- data/plugins/commands/serve/mappers/duration.rb +51 -0
- data/plugins/commands/serve/mappers/environment.rb +78 -0
- data/plugins/commands/serve/mappers/folders.rb +60 -0
- data/plugins/commands/serve/mappers/guest.rb +56 -0
- data/plugins/commands/serve/mappers/host.rb +109 -0
- data/plugins/commands/serve/mappers/internal/graph/mappers.rb +332 -0
- data/plugins/commands/serve/mappers/internal/graph/search.rb +329 -0
- data/plugins/commands/serve/mappers/internal/graph/vertex/final.rb +35 -0
- data/plugins/commands/serve/mappers/internal/graph/vertex/input.rb +57 -0
- data/plugins/commands/serve/mappers/internal/graph/vertex/method.rb +59 -0
- data/plugins/commands/serve/mappers/internal/graph/vertex/named_value.rb +25 -0
- data/plugins/commands/serve/mappers/internal/graph/vertex/output.rb +39 -0
- data/plugins/commands/serve/mappers/internal/graph/vertex/root.rb +15 -0
- data/plugins/commands/serve/mappers/internal/graph/vertex/value.rb +32 -0
- data/plugins/commands/serve/mappers/internal/graph/vertex.rb +78 -0
- data/plugins/commands/serve/mappers/internal/graph/weighted_vertex.rb +44 -0
- data/plugins/commands/serve/mappers/internal/graph.rb +285 -0
- data/plugins/commands/serve/mappers/internal.rb +9 -0
- data/plugins/commands/serve/mappers/known_types.rb +360 -0
- data/plugins/commands/serve/mappers/machine.rb +150 -0
- data/plugins/commands/serve/mappers/mapper.rb +193 -0
- data/plugins/commands/serve/mappers/options.rb +61 -0
- data/plugins/commands/serve/mappers/pathname.rb +52 -0
- data/plugins/commands/serve/mappers/plugin_manager.rb +22 -0
- data/plugins/commands/serve/mappers/proc.rb +78 -0
- data/plugins/commands/serve/mappers/project.rb +75 -0
- data/plugins/commands/serve/mappers/provider.rb +38 -0
- data/plugins/commands/serve/mappers/provisioner.rb +20 -0
- data/plugins/commands/serve/mappers/push.rb +20 -0
- data/plugins/commands/serve/mappers/state_bag.rb +59 -0
- data/plugins/commands/serve/mappers/synced_folder.rb +68 -0
- data/plugins/commands/serve/mappers/target.rb +73 -0
- data/plugins/commands/serve/mappers/target_index.rb +89 -0
- data/plugins/commands/serve/mappers/terminal.rb +85 -0
- data/plugins/commands/serve/mappers/ui.rb +48 -0
- data/plugins/commands/serve/mappers/vagrantfile.rb +63 -0
- data/plugins/commands/serve/mappers/wrappers.rb +227 -0
- data/plugins/commands/serve/mappers.rb +525 -0
- data/plugins/commands/serve/plugin.rb +17 -0
- data/plugins/commands/serve/service/capability_platform_service.rb +100 -0
- data/plugins/commands/serve/service/command_service.rb +308 -0
- data/plugins/commands/serve/service/communicator_service.rb +248 -0
- data/plugins/commands/serve/service/config_service.rb +87 -0
- data/plugins/commands/serve/service/guest_service.rb +81 -0
- data/plugins/commands/serve/service/host_service.rb +75 -0
- data/plugins/commands/serve/service/internal_service.rb +174 -0
- data/plugins/commands/serve/service/provider_service.rb +163 -0
- data/plugins/commands/serve/service/provisioner_service.rb +90 -0
- data/plugins/commands/serve/service/push_service.rb +36 -0
- data/plugins/commands/serve/service/synced_folder_service.rb +147 -0
- data/plugins/commands/serve/service.rb +81 -0
- data/plugins/commands/serve/type/boolean.rb +12 -0
- data/plugins/commands/serve/type/command_arguments.rb +64 -0
- data/plugins/commands/serve/type/command_info.rb +54 -0
- data/plugins/commands/serve/type/communicator_command_arguments.rb +8 -0
- data/plugins/commands/serve/type/direct.rb +19 -0
- data/plugins/commands/serve/type/duration.rb +8 -0
- data/plugins/commands/serve/type/folders.rb +12 -0
- data/plugins/commands/serve/type/named_argument.rb +13 -0
- data/plugins/commands/serve/type/options.rb +17 -0
- data/plugins/commands/serve/type/ssh_info.rb +8 -0
- data/plugins/commands/serve/type/winrm_info.rb +8 -0
- data/plugins/commands/serve/type.rb +23 -0
- data/plugins/commands/serve/util/cacher.rb +88 -0
- data/plugins/commands/serve/util/client_setup.rb +38 -0
- data/plugins/commands/serve/util/connector.rb +45 -0
- data/plugins/commands/serve/util/direct_conversions.rb +667 -0
- data/plugins/commands/serve/util/exception_transformer.rb +95 -0
- data/plugins/commands/serve/util/func_spec.rb +152 -0
- data/plugins/commands/serve/util/has_broker.rb +28 -0
- data/plugins/commands/serve/util/has_logger.rb +16 -0
- data/plugins/commands/serve/util/has_mapper.rb +20 -0
- data/plugins/commands/serve/util/has_seeds.rb +48 -0
- data/plugins/commands/serve/util/named_plugin.rb +30 -0
- data/plugins/commands/serve/util/service_info.rb +76 -0
- data/plugins/commands/serve/util/usage_tracker.rb +71 -0
- data/plugins/commands/serve/util.rb +19 -0
- data/plugins/commands/snapshot/command/root.rb +12 -11
- data/plugins/communicators/ssh/communicator.rb +1 -1
- data/plugins/guests/alma/cap/flavor.rb +23 -0
- data/plugins/guests/alma/guest.rb +10 -0
- data/plugins/guests/alma/plugin.rb +20 -0
- data/plugins/guests/centos/cap/flavor.rb +16 -11
- data/plugins/guests/centos/guest.rb +6 -4
- data/plugins/guests/openwrt/guest.rb +1 -1
- data/plugins/guests/redhat/cap/flavor.rb +16 -11
- data/plugins/guests/redhat/cap/nfs_client.rb +3 -1
- data/plugins/guests/solaris/cap/remove_public_key.rb +2 -2
- data/plugins/hosts/darwin/cap/path.rb +2 -1
- data/plugins/hosts/gentoo/host.rb +1 -1
- data/plugins/hosts/linux/cap/nfs.rb +4 -3
- data/plugins/hosts/slackware/host.rb +1 -1
- data/plugins/kernel_v2/config/push.rb +9 -0
- data/plugins/kernel_v2/config/vm.rb +24 -0
- data/plugins/kernel_v2/config/vm_provisioner.rb +1 -2
- data/plugins/providers/docker/action/wait_for_running.rb +5 -3
- data/plugins/providers/virtualbox/action/import.rb +8 -1
- data/plugins/providers/virtualbox/action/network.rb +8 -5
- data/plugins/providers/virtualbox/driver/base.rb +3 -1
- data/plugins/providers/virtualbox/driver/meta.rb +1 -0
- data/plugins/providers/virtualbox/driver/version_5_0.rb +40 -36
- data/plugins/providers/virtualbox/driver/version_7_0.rb +285 -0
- data/plugins/providers/virtualbox/plugin.rb +1 -0
- data/plugins/provisioners/ansible/cap/guest/debian/ansible_install.rb +1 -1
- data/plugins/provisioners/ansible/provisioner/host.rb +1 -1
- data/plugins/provisioners/chef/config/chef_zero.rb +1 -1
- data/plugins/provisioners/puppet/config/puppet.rb +1 -0
- data/plugins/provisioners/shell/provisioner.rb +1 -2
- data/plugins/pushes/ftp/push.rb +13 -5
- data/plugins/pushes/heroku/push.rb +8 -1
- data/plugins/pushes/local-exec/push.rb +6 -2
- data/plugins/synced_folders/rsync/helper.rb +1 -0
- data/plugins/synced_folders/smb/cap/mount_options.rb +1 -0
- data/scripts/sign.sh +4 -4
- data/shell.nix +5 -0
- data/tasks/test.rake +1 -1
- data/templates/locales/en.yml +26 -0
- data/thirdparty/proto/api-common-protos/.bazelrc +2 -0
- data/thirdparty/proto/api-common-protos/.git +1 -0
- data/thirdparty/proto/api-common-protos/.gitignore +11 -0
- data/thirdparty/proto/api-common-protos/BUILD.bazel +129 -0
- data/thirdparty/proto/api-common-protos/CODE_OF_CONDUCT.md +43 -0
- data/thirdparty/proto/api-common-protos/CONTRIBUTING.md +42 -0
- data/thirdparty/proto/api-common-protos/Dockerfile +18 -0
- data/thirdparty/proto/api-common-protos/LICENSE +201 -0
- data/thirdparty/proto/api-common-protos/README.md +113 -0
- data/thirdparty/proto/api-common-protos/SECURITY.md +7 -0
- data/thirdparty/proto/api-common-protos/WORKSPACE +154 -0
- data/thirdparty/proto/api-common-protos/google/api/BUILD.bazel +246 -0
- data/thirdparty/proto/api-common-protos/google/api/README.md +46 -0
- data/thirdparty/proto/api-common-protos/google/api/annotations.proto +31 -0
- data/thirdparty/proto/api-common-protos/google/api/auth.proto +181 -0
- data/thirdparty/proto/api-common-protos/google/api/backend.proto +51 -0
- data/thirdparty/proto/api-common-protos/google/api/billing.proto +67 -0
- data/thirdparty/proto/api-common-protos/google/api/client.proto +99 -0
- data/thirdparty/proto/api-common-protos/google/api/config_change.proto +85 -0
- data/thirdparty/proto/api-common-protos/google/api/consumer.proto +83 -0
- data/thirdparty/proto/api-common-protos/google/api/context.proto +63 -0
- data/thirdparty/proto/api-common-protos/google/api/control.proto +33 -0
- data/thirdparty/proto/api-common-protos/google/api/distribution.proto +213 -0
- data/thirdparty/proto/api-common-protos/google/api/documentation.proto +157 -0
- data/thirdparty/proto/api-common-protos/google/api/endpoint.proto +71 -0
- data/thirdparty/proto/api-common-protos/google/api/field_behavior.proto +84 -0
- data/thirdparty/proto/api-common-protos/google/api/http.proto +318 -0
- data/thirdparty/proto/api-common-protos/google/api/httpbody.proto +76 -0
- data/thirdparty/proto/api-common-protos/google/api/label.proto +49 -0
- data/thirdparty/proto/api-common-protos/google/api/launch_stage.proto +67 -0
- data/thirdparty/proto/api-common-protos/google/api/log.proto +55 -0
- data/thirdparty/proto/api-common-protos/google/api/logging.proto +83 -0
- data/thirdparty/proto/api-common-protos/google/api/metric.proto +192 -0
- data/thirdparty/proto/api-common-protos/google/api/monitored_resource.proto +116 -0
- data/thirdparty/proto/api-common-protos/google/api/monitoring.proto +89 -0
- data/thirdparty/proto/api-common-protos/google/api/quota.proto +259 -0
- data/thirdparty/proto/api-common-protos/google/api/resource.proto +299 -0
- data/thirdparty/proto/api-common-protos/google/api/routing.proto +461 -0
- data/thirdparty/proto/api-common-protos/google/api/service.proto +175 -0
- data/thirdparty/proto/api-common-protos/google/api/source_info.proto +32 -0
- data/thirdparty/proto/api-common-protos/google/api/system_parameter.proto +96 -0
- data/thirdparty/proto/api-common-protos/google/api/usage.proto +92 -0
- data/thirdparty/proto/api-common-protos/google/cloud/extended_operations.proto +150 -0
- data/thirdparty/proto/api-common-protos/google/iam/README.md +14 -0
- data/thirdparty/proto/api-common-protos/google/iam/admin/v1/iam.proto +1087 -0
- data/thirdparty/proto/api-common-protos/google/iam/v1/iam_policy.proto +145 -0
- data/thirdparty/proto/api-common-protos/google/iam/v1/logging/audit_data.proto +34 -0
- data/thirdparty/proto/api-common-protos/google/iam/v1/options.proto +41 -0
- data/thirdparty/proto/api-common-protos/google/iam/v1/policy.proto +240 -0
- data/thirdparty/proto/api-common-protos/google/logging/type/README.md +12 -0
- data/thirdparty/proto/api-common-protos/google/logging/type/http_request.proto +92 -0
- data/thirdparty/proto/api-common-protos/google/logging/type/log_severity.proto +72 -0
- data/thirdparty/proto/api-common-protos/google/longrunning/README.md +31 -0
- data/thirdparty/proto/api-common-protos/google/longrunning/operations.proto +247 -0
- data/thirdparty/proto/api-common-protos/google/rpc/README.md +18 -0
- data/thirdparty/proto/api-common-protos/google/rpc/code.proto +186 -0
- data/thirdparty/proto/api-common-protos/google/rpc/context/attribute_context.proto +287 -0
- data/thirdparty/proto/api-common-protos/google/rpc/error_details.proto +246 -0
- data/thirdparty/proto/api-common-protos/google/rpc/status.proto +47 -0
- data/thirdparty/proto/api-common-protos/google/type/README.md +7 -0
- data/thirdparty/proto/api-common-protos/google/type/calendar_period.proto +57 -0
- data/thirdparty/proto/api-common-protos/google/type/color.proto +170 -0
- data/thirdparty/proto/api-common-protos/google/type/date.proto +50 -0
- data/thirdparty/proto/api-common-protos/google/type/datetime.proto +97 -0
- data/thirdparty/proto/api-common-protos/google/type/dayofweek.proto +51 -0
- data/thirdparty/proto/api-common-protos/google/type/expr.proto +51 -0
- data/thirdparty/proto/api-common-protos/google/type/fraction.proto +34 -0
- data/thirdparty/proto/api-common-protos/google/type/latlng.proto +37 -0
- data/thirdparty/proto/api-common-protos/google/type/money.proto +43 -0
- data/thirdparty/proto/api-common-protos/google/type/month.proto +66 -0
- data/thirdparty/proto/api-common-protos/google/type/postal_address.proto +135 -0
- data/thirdparty/proto/api-common-protos/google/type/quaternion.proto +95 -0
- data/thirdparty/proto/api-common-protos/google/type/timeofday.proto +44 -0
- data/thirdparty/proto/api-common-protos/renovate.json +5 -0
- data/thirdparty/proto/api-common-protos/repository_rules.bzl +222 -0
- data/{vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/bcrypt_pbkdf-1.1.0/gem.build_complete → vagrant-config.hcl} +0 -0
- data/vagrant.gemspec +31 -6
- data/version.txt +1 -1
- metadata +348 -3724
- data/lib/vagrant/patches/net-ssh.rb +0 -279
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/.gitignore +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/.travis.yml +0 -8
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/Gemfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/README.md +0 -319
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/Rakefile +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/cli/plugin_spec.rb +0 -156
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/output/plugin_output.rb +0 -42
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provider/network_forwarded_port_spec.rb +0 -23
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provider/network_private_network_spec.rb +0 -23
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provider/synced_folder_spec.rb +0 -33
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -14
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/configuration.rb +0 -81
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/rspec.rb +0 -9
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance/runner.rb +0 -91
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/cli.rb +0 -45
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/components.rb +0 -70
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/vagrant-plugin/command.rb +0 -67
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -17
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec.rb +0 -25
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/components_spec.rb +0 -63
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/vagrant-spec.gemspec +0 -50
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/.gitignore +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/.travis.yml +0 -8
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/Gemfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/README.md +0 -319
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/Rakefile +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/cli/plugin_spec.rb +0 -156
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/output/plugin_output.rb +0 -25
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provider/network_forwarded_port_spec.rb +0 -23
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provider/network_private_network_spec.rb +0 -23
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provider/synced_folder_spec.rb +0 -33
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -14
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/configuration.rb +0 -74
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec.rb +0 -9
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/runner.rb +0 -84
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/cli.rb +0 -44
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/components.rb +0 -70
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec.rb +0 -20
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/components_spec.rb +0 -63
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/vagrant-spec.gemspec +0 -50
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/.gitignore +0 -18
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/.travis.yml +0 -10
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/Gemfile +0 -5
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/README.md +0 -319
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/Rakefile +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/plugin_spec.rb +0 -164
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/output/plugin_output.rb +0 -34
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/network_forwarded_port_spec.rb +0 -25
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/network_private_network_spec.rb +0 -25
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/synced_folder_spec.rb +0 -33
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -14
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/Vagrantfile +0 -44
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/fail.sh +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/script.sh +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/test.sh +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-basic/Vagrantfile +0 -25
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/triggers/triggers_advanced_spec.rb +0 -57
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/triggers/triggers_basic_spec.rb +0 -33
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/configuration.rb +0 -81
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec.rb +0 -9
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/runner.rb +0 -76
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/cli.rb +0 -48
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/components.rb +0 -57
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/vagrant-plugin/command.rb +0 -67
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -17
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec.rb +0 -25
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/spec/components_spec.rb +0 -62
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/2.6.0/bundler/gems/vagrant-spec-abfc34474d12/vagrant-spec.gemspec +0 -47
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/.gitignore +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/.travis.yml +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/Gemfile +0 -8
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/README.md +0 -319
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/Rakefile +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/cli/plugin_spec.rb +0 -164
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/output/plugin_output.rb +0 -34
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provider/network_forwarded_port_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provider/network_private_network_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provider/synced_folder_spec.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_chef_solo/CustomConfiguration.chef +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/triggers-advanced/Vagrantfile +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/triggers-advanced/fail.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/triggers-advanced/script.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/triggers-advanced/test.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/support-skeletons/triggers-basic/Vagrantfile +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/triggers/triggers_advanced_spec.rb +0 -57
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/acceptance/triggers/triggers_basic_spec.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/configuration.rb +0 -81
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/rspec.rb +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance/runner.rb +0 -76
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/cli.rb +0 -48
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/components.rb +0 -57
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/vagrant-plugin/command.rb +0 -67
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/lib/vagrant-spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/spec/components_spec.rb +0 -62
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-148cb63d6d06/vagrant-spec.gemspec +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/.gitignore +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/.travis.yml +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/Gemfile +0 -8
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/README.md +0 -319
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/Rakefile +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/cli/plugin_spec.rb +0 -164
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/disk/basic_spec.rb +0 -65
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/disk/dvd_multiple_spec.rb +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/disk/dvd_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/disk/primary_spec.rb +0 -37
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/disk/secondary_spec.rb +0 -37
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/output/plugin_output.rb +0 -34
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provider/network_forwarded_port_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provider/network_private_network_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provider/synced_folder_spec.rb +0 -54
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_basic/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_basic/example.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd/example.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd_four/Vagrantfile +0 -8
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd_four/example1.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd_four/example2.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd_four/example3.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd_four/example4.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd_two/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd_two/example1.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_dvd_two/example3.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_empty/Vagrantfile +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_primary/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_primary_bigger/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_secondary/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/disk_secondary_bigger/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_chef_solo/CustomConfiguration.chef +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/synced_folder_smb/Vagrantfile +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/synced_folder_smb/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/triggers-advanced/Vagrantfile +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/triggers-advanced/fail.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/triggers-advanced/script.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/triggers-advanced/test.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/support-skeletons/triggers-basic/Vagrantfile +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/synced_folder/smb_spec.rb +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/triggers/triggers_advanced_spec.rb +0 -57
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/acceptance/triggers/triggers_basic_spec.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/configuration.rb +0 -81
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/rspec.rb +0 -13
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance/runner.rb +0 -76
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/cli.rb +0 -48
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/components.rb +0 -57
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/vagrant-plugin/command.rb +0 -67
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/lib/vagrant-spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/spec/components_spec.rb +0 -62
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-93c587f3c98a/vagrant-spec.gemspec +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/.gitignore +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/.travis.yml +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/Gemfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/README.md +0 -319
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/Rakefile +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/plugin_spec.rb +0 -164
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/output/plugin_output.rb +0 -34
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/network_forwarded_port_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/network_private_network_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/synced_folder_spec.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -14
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/Vagrantfile +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/fail.sh +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/script.sh +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/test.sh +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-basic/Vagrantfile +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/triggers/triggers_advanced_spec.rb +0 -57
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/triggers/triggers_basic_spec.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/configuration.rb +0 -81
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec.rb +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/runner.rb +0 -76
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/cli.rb +0 -48
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/components.rb +0 -57
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/vagrant-plugin/command.rb +0 -67
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/spec/components_spec.rb +0 -62
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-abfc34474d12/vagrant-spec.gemspec +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/.gitignore +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/.travis.yml +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/Gemfile +0 -8
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/README.md +0 -319
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/Rakefile +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/cli/plugin_spec.rb +0 -164
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/basic_spec.rb +0 -65
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/dvd_multiple_spec.rb +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/dvd_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/primary_spec.rb +0 -37
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/secondary_spec.rb +0 -37
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/output/plugin_output.rb +0 -34
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/network_forwarded_port_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/network_private_network_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/synced_folder_spec.rb +0 -54
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_basic/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_basic/example.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd/example.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/Vagrantfile +0 -8
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/example1.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/example2.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/example3.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/example4.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_two/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_two/example1.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_two/example3.iso +0 -0
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_empty/Vagrantfile +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_primary/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_primary_bigger/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_secondary/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_secondary_bigger/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/CustomConfiguration.chef +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_smb/Vagrantfile +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_smb/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-advanced/Vagrantfile +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-advanced/fail.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-advanced/script.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-advanced/test.sh +0 -3
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-basic/Vagrantfile +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/synced_folder/smb_spec.rb +0 -45
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/triggers/triggers_advanced_spec.rb +0 -57
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/triggers/triggers_basic_spec.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/configuration.rb +0 -81
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/runner.rb +0 -76
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/cli.rb +0 -48
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/components.rb +0 -57
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/vagrant-plugin/command.rb +0 -67
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -17
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/components_spec.rb +0 -62
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-spec-b6b56c8b8135/vagrant-spec.gemspec +0 -41
- data/vendor/bundle/ruby/3.0.0/bin/htmldiff +0 -31
- data/vendor/bundle/ruby/3.0.0/bin/httpclient +0 -29
- data/vendor/bundle/ruby/3.0.0/bin/ldiff +0 -31
- data/vendor/bundle/ruby/3.0.0/bin/listen +0 -29
- data/vendor/bundle/ruby/3.0.0/bin/rake +0 -29
- data/vendor/bundle/ruby/3.0.0/bin/rspec +0 -29
- data/vendor/bundle/ruby/3.0.0/bin/rwinrm +0 -29
- data/vendor/bundle/ruby/3.0.0/bin/rwinrmcp +0 -29
- data/vendor/bundle/ruby/3.0.0/bin/thor +0 -29
- data/vendor/bundle/ruby/3.0.0/bin/vagrant +0 -29
- data/vendor/bundle/ruby/3.0.0/bin/vagrant-spec +0 -29
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/.gitignore +0 -18
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/.travis.yml +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/Gemfile +0 -8
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/README.md +0 -319
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/Rakefile +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/cli/plugin_spec.rb +0 -164
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/disk/basic_spec.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/disk/dvd_multiple_spec.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/disk/dvd_spec.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/disk/primary_spec.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/disk/secondary_spec.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/output/plugin_output.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provider/network_forwarded_port_spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provider/network_private_network_spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provider/synced_folder_spec.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_basic/Vagrantfile +0 -7
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_basic/example.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd/example.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd_four/Vagrantfile +0 -8
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd_four/example1.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd_four/example2.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd_four/example3.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd_four/example4.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd_two/Vagrantfile +0 -6
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd_two/example1.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_dvd_two/example3.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_empty/Vagrantfile +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_primary/Vagrantfile +0 -6
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_primary_bigger/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_secondary/Vagrantfile +0 -6
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/disk_secondary_bigger/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_chef_solo/CustomConfiguration.chef +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -15
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/synced_folder_smb/Vagrantfile +0 -9
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/synced_folder_smb/foo +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -9
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/triggers-advanced/Vagrantfile +0 -44
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/triggers-advanced/fail.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/triggers-advanced/script.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/triggers-advanced/test.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/support-skeletons/triggers-basic/Vagrantfile +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/synced_folder/smb_spec.rb +0 -45
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/triggers/triggers_advanced_spec.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/acceptance/triggers/triggers_basic_spec.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/configuration.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/rspec.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance/runner.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/cli.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/components.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/vagrant-plugin/command.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/lib/vagrant-spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/spec/components_spec.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-03d88fe24677/vagrant-spec.gemspec +0 -41
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/.gitignore +0 -18
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/.travis.yml +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/Gemfile +0 -8
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/README.md +0 -319
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/Rakefile +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/cli/plugin_spec.rb +0 -164
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/basic_spec.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/dvd_multiple_spec.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/dvd_spec.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/primary_spec.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/disk/secondary_spec.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/output/plugin_output.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/network_forwarded_port_spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/network_private_network_spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provider/synced_folder_spec.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_basic/Vagrantfile +0 -7
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_basic/example.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd/example.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/Vagrantfile +0 -8
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/example1.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/example2.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/example3.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_four/example4.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_two/Vagrantfile +0 -6
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_two/example1.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_dvd_two/example3.iso +0 -0
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_empty/Vagrantfile +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_primary/Vagrantfile +0 -6
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_primary_bigger/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_secondary/Vagrantfile +0 -6
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/disk_secondary_bigger/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/CustomConfiguration.chef +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -15
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_smb/Vagrantfile +0 -9
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folder_smb/foo +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -9
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-advanced/Vagrantfile +0 -44
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-advanced/fail.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-advanced/script.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-advanced/test.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/support-skeletons/triggers-basic/Vagrantfile +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/synced_folder/smb_spec.rb +0 -45
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/triggers/triggers_advanced_spec.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/acceptance/triggers/triggers_basic_spec.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/configuration.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/rspec.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance/runner.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/cli.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/components.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/vagrant-plugin/command.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/lib/vagrant-spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/components_spec.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/bundler/gems/vagrant-spec-b6b56c8b8135/vagrant-spec.gemspec +0 -41
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/HEAD +0 -1
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/config +0 -6
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/description +0 -1
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/applypatch-msg.sample +0 -15
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/commit-msg.sample +0 -24
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/fsmonitor-watchman.sample +0 -173
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/post-update.sample +0 -8
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/pre-applypatch.sample +0 -14
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/pre-commit.sample +0 -49
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/pre-merge-commit.sample +0 -13
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/pre-push.sample +0 -53
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/pre-rebase.sample +0 -169
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/pre-receive.sample +0 -24
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/prepare-commit-msg.sample +0 -42
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/push-to-checkout.sample +0 -78
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/update.sample +0 -128
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/info/exclude +0 -6
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/objects/pack/pack-5eb5537164b07752b28575bbe48b252a69a849da.idx +0 -0
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/objects/pack/pack-5eb5537164b07752b28575bbe48b252a69a849da.pack +0 -0
- data/vendor/bundle/ruby/3.0.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/packed-refs +0 -2
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/bcrypt_pbkdf-1.1.0/bcrypt_pbkdf_ext.so +0 -0
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/bcrypt_pbkdf-1.1.0/gem_make.out +0 -19
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/ed25519-1.2.4/ed25519_ref10.so +0 -0
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/ed25519-1.2.4/gem.build_complete +0 -0
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/ed25519-1.2.4/gem_make.out +0 -1768
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/ffi-1.15.4/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/ffi-1.15.4/gem.build_complete +0 -0
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/ffi-1.15.4/gem_make.out +0 -43
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/ffi-1.15.4/mkmf.log +0 -232
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/wdm-0.1.1/gem.build_complete +0 -0
- data/vendor/bundle/ruby/3.0.0/extensions/x86_64-linux/3.0.0/wdm-0.1.1/gem_make.out +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/.travis.yml +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/CHANGELOG.md +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/COPYING +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/Gemfile +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/README.md +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/Rakefile +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/bcrypt_pbkdf.gemspec +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/.sitearchdir.time +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/Makefile +0 -266
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/bcrypt_pbkdf.c +0 -169
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/bcrypt_pbkdf.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/bcrypt_pbkdf_ext.c +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/bcrypt_pbkdf_ext.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/bcrypt_pbkdf_ext.so +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/blf.h +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/blowfish.c +0 -698
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/blowfish.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/crypto_api.h +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/crypto_hash_sha512.h +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/explicit_bzero.c +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/explicit_bzero.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/extconf.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/hash_sha512.c +0 -320
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/hash_sha512.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/includes.h +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/sha2.h +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/util.h +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/ext/mri/utils.h +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/lib/bcrypt_pbkdf.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/test/bcrypt_pnkdf/engine_test.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/bcrypt_pbkdf-1.1.0/test/test_helper.rb +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/CHANGES +0 -119
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/MIT-LICENSE +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/README.md +0 -258
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/Rakefile +0 -194
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/builder.blurb +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/builder.gemspec +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/doc/jamis.rb +0 -592
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/doc/releases/builder-1.2.4.rdoc +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/doc/releases/builder-2.0.0.rdoc +0 -46
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/doc/releases/builder-2.1.1.rdoc +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/lib/blankslate.rb +0 -138
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/lib/builder/blankslate.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/lib/builder/version.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/lib/builder/xchar.rb +0 -198
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/lib/builder/xmlbase.rb +0 -200
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/lib/builder/xmlevents.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/lib/builder/xmlmarkup.rb +0 -345
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/lib/builder.rb +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/rakelib/publish.rake +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/rakelib/tags.rake +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/rakelib/testing.rake +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/helper.rb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/performance.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/preload.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/test_blankslate.rb +0 -208
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/test_eventbuilder.rb +0 -151
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/test_markupbuilder.rb +0 -617
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/test_method_caching.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/test_namecollision.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/builder-3.2.4/test/test_xchar.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/.document +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/.gitignore +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/.rspec +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/.travis.yml +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/CHANGELOG.md +0 -83
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/Gemfile +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/LICENSE +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/README.md +0 -230
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/Rakefile +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/appveyor.yml +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/childprocess.gemspec +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/abstract_io.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/abstract_process.rb +0 -192
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/errors.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/jruby/io.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/jruby/process.rb +0 -184
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/jruby/pump.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/jruby.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/tools/generator.rb +0 -146
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/fork_exec_process.rb +0 -78
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/io.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/lib.rb +0 -186
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/platform/arm64-macosx.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/platform/i386-linux.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/platform/i386-solaris.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/platform/x86_64-linux.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/platform/x86_64-macosx.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/posix_spawn_process.rb +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix/process.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/unix.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/windows/handle.rb +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/windows/io.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/windows/lib.rb +0 -416
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/windows/process.rb +0 -131
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/windows/process_builder.rb +0 -178
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/windows/structs.rb +0 -149
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess/windows.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/lib/childprocess.rb +0 -210
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/abstract_io_spec.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/childprocess_spec.rb +0 -447
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/get_env.ps1 +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/io_spec.rb +0 -228
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/jruby_spec.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/pid_behavior.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/platform_detection_spec.rb +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/spec_helper.rb +0 -270
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/unix_spec.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/childprocess-4.1.0/spec/windows_spec.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/CHANGELOG.md +0 -528
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/Gemfile +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/LICENSE.txt +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/README.md +0 -408
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/Rakefile +0 -339
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/ConcurrentRubyService.java +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java +0 -175
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/JRubyMapBackendLibrary.java +0 -248
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicBooleanLibrary.java +0 -93
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicFixnumLibrary.java +0 -113
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaSemaphoreLibrary.java +0 -159
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java +0 -307
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMap.java +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMapV8.java +0 -3863
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/LongAdder.java +0 -203
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/Striped64.java +0 -342
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/ConcurrentHashMapV8.java +0 -3800
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/LongAdder.java +0 -204
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/Striped64.java +0 -291
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166y/ThreadLocalRandom.java +0 -199
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/agent.rb +0 -587
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/array.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/async.rb +0 -448
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atom.rb +0 -222
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/abstract_thread_local_var.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/atomic_boolean.rb +0 -126
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/atomic_fixnum.rb +0 -143
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/atomic_markable_reference.rb +0 -164
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/atomic_reference.rb +0 -204
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/count_down_latch.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/cyclic_barrier.rb +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/event.rb +0 -109
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/java_count_down_latch.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/java_thread_local_var.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_boolean.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_fixnum.rb +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/mutex_count_down_latch.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/mutex_semaphore.rb +0 -115
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/read_write_lock.rb +0 -254
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/reentrant_read_write_lock.rb +0 -379
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/ruby_thread_local_var.rb +0 -181
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/semaphore.rb +0 -145
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/thread_local_var.rb +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic_reference/mutex_atomic.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic_reference/numeric_cas_wrapper.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomics.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/copy_on_notify_observer_set.rb +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/copy_on_write_observer_set.rb +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/java_non_concurrent_priority_queue.rb +0 -84
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/lock_free_stack.rb +0 -158
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/atomic_reference_map_backend.rb +0 -927
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/mri_map_backend.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/non_concurrent_map_backend.rb +0 -140
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/synchronized_map_backend.rb +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/truffleruby_map_backend.rb +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/non_concurrent_priority_queue.rb +0 -143
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/ruby_non_concurrent_priority_queue.rb +0 -160
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/deprecation.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/dereferenceable.rb +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/logging.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/obligation.rb +0 -220
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/observable.rb +0 -110
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concurrent_ruby.jar +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/configuration.rb +0 -188
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/constants.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/dataflow.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/delay.rb +0 -199
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/errors.rb +0 -69
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/exchanger.rb +0 -352
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/abstract_executor_service.rb +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/cached_thread_pool.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/executor_service.rb +0 -185
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/fixed_thread_pool.rb +0 -210
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/immediate_executor.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/indirect_immediate_executor.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/java_single_thread_executor.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/java_thread_pool_executor.rb +0 -136
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/ruby_executor_service.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/ruby_single_thread_executor.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/ruby_thread_pool_executor.rb +0 -377
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/safe_task_executor.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/serial_executor_service.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/serialized_execution.rb +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/serialized_execution_delegator.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/simple_executor_service.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/single_thread_executor.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/thread_pool_executor.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/timer_set.rb +0 -172
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executors.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/future.rb +0 -141
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/hash.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/immutable_struct.rb +0 -101
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/ivar.rb +0 -207
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/map.rb +0 -347
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/maybe.rb +0 -229
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/mutable_struct.rb +0 -239
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/mvar.rb +0 -242
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/options.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/promise.rb +0 -580
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/promises.rb +0 -2167
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/re_include.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/scheduled_task.rb +0 -318
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/set.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/settable_struct.rb +0 -139
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/abstract_lockable_object.rb +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/abstract_object.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/abstract_struct.rb +0 -171
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/condition.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/jruby_lockable_object.rb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/jruby_object.rb +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/lock.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/lockable_object.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/mri_object.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/mutex_lockable_object.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/object.rb +0 -183
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/rbx_lockable_object.rb +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/rbx_object.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/truffleruby_object.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/volatile.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/synchronized_delegator.rb +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/adder.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/cheap_lockable.rb +0 -118
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/data_structures.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/power_of_two_tuple.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/striped64.rb +0 -246
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/volatile.rb +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/xor_shift_random.rb +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/timer_task.rb +0 -333
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/tuple.rb +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/tvar.rb +0 -261
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/engine.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/monotonic_time.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/native_extension_loader.rb +0 -79
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/native_integer.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/processor_counter.rb +0 -163
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent-ruby.rb +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent.rb +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/.rspec +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/Code-of-Conduct.md +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/Contributing.md +0 -118
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/History.md +0 -319
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/License.md +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/Manifest.txt +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/README.rdoc +0 -84
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/Rakefile +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/autotest/discover.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/bin/htmldiff +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/bin/ldiff +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/docs/COPYING.txt +0 -339
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/docs/artistic.txt +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/array.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/backports.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/block.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/callbacks.rb +0 -325
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/change.rb +0 -174
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/htmldiff.rb +0 -150
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/hunk.rb +0 -358
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/internals.rb +0 -304
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/ldiff.rb +0 -171
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs/string.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff/lcs.rb +0 -739
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/lib/diff-lcs.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/change_spec.rb +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/diff_spec.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/aX +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/bXaX +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/ds1.csv +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/ds2.csv +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff-c +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff-e +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff-f +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff-u +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/hunk_spec.rb +0 -83
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/issues_spec.rb +0 -154
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/lcs_spec.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/ldiff_spec.rb +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/patch_spec.rb +0 -416
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/sdiff_spec.rb +0 -214
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/spec_helper.rb +0 -375
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/traverse_balanced_spec.rb +0 -310
- data/vendor/bundle/ruby/3.0.0/gems/diff-lcs-1.4.4/spec/traverse_sequences_spec.rb +0 -139
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/.gitignore +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/.rspec +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/.rubocop.yml +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/.travis.yml +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/CHANGES.md +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/CODE_OF_CONDUCT.md +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/Gemfile +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/LICENSE +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/README.md +0 -170
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/Rakefile +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/appveyor.yml +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ed25519.gemspec +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ed25519.png +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/LICENSE.txt +0 -123
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/README.md +0 -77
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAEngine.java +0 -491
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAKey.java +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAPrivateKey.java +0 -338
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAPublicKey.java +0 -275
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSASecurityProvider.java +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/KeyFactory.java +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/KeyPairGenerator.java +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/Utils.java +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/Constants.java +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/Curve.java +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/Encoding.java +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/Field.java +0 -99
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/FieldElement.java +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/GroupElement.java +0 -1034
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/ScalarOps.java +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/bigint/BigIntegerFieldElement.java +0 -131
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/bigint/BigIntegerLittleEndianEncoding.java +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/bigint/BigIntegerScalarOps.java +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/bigint/package.html +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/ed25519/Ed25519FieldElement.java +0 -988
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/ed25519/Ed25519LittleEndianEncoding.java +0 -256
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/ed25519/Ed25519ScalarOps.java +0 -693
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSAGenParameterSpec.java +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSANamedCurveSpec.java +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSANamedCurveTable.java +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSAParameterSpec.java +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSAPrivateKeySpec.java +0 -133
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSAPublicKeySpec.java +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_jruby/org/cryptorb/Ed25519Provider.java +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/.sitearchdir.time +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/Makefile +0 -266
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/api.h +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/base.h +0 -1344
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/base2.h +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/d.h +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/d2.h +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ed25519_ref10.c +0 -99
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ed25519_ref10.h +0 -33
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ed25519_ref10.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ed25519_ref10.so +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/extconf.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/fe.c +0 -1085
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/fe.h +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/fe.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge.c +0 -407
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge.h +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge_add.h +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge_madd.h +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge_msub.h +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge_p2_dbl.h +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge_sub.h +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/keypair.c +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/keypair.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/open.c +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/open.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/pow22523.h +0 -160
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/pow225521.h +0 -160
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sc.h +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sc_muladd.c +0 -366
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sc_muladd.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sc_reduce.c +0 -272
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sc_reduce.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sha512.c +0 -304
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sha512.h +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sha512.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sign.c +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sign.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sqrtm1.h +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/verify.c +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/ext/ed25519_ref10/verify.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/lib/ed25519/signing_key.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/lib/ed25519/verify_key.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/lib/ed25519/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/ed25519-1.2.4/lib/ed25519.rb +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/erubi-1.10.0/CHANGELOG +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/erubi-1.10.0/MIT-LICENSE +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/erubi-1.10.0/README.rdoc +0 -109
- data/vendor/bundle/ruby/3.0.0/gems/erubi-1.10.0/Rakefile +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/erubi-1.10.0/lib/erubi/capture_end.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/erubi-1.10.0/lib/erubi.rb +0 -227
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/CONTRIBUTING.md +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/CONTRIBUTORS.md +0 -140
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/LICENSE.md +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/README.md +0 -492
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/data/cacert.pem +0 -3232
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/excon.gemspec +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/connection.rb +0 -599
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/constants.rb +0 -172
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/error.rb +0 -229
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/extensions/uri.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/headers.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/instrumentors/logging_instrumentor.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/instrumentors/standard_instrumentor.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/base.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/capture_cookies.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/decompress.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/escape_path.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/expects.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/idempotent.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/instrumentor.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/mock.rb +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/redirect_follower.rb +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/middlewares/response_parser.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/pretty_printer.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/response.rb +0 -234
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/socket.rb +0 -297
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/ssl_socket.rb +0 -194
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/test/plugin/server/exec.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/test/plugin/server/puma.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/test/plugin/server/unicorn.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/test/plugin/server/webrick.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/test/server.rb +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/unix_socket.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/utils.rb +0 -143
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon/version.rb +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.88.0/lib/excon.rb +0 -255
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/CONTRIBUTING.md +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/CONTRIBUTORS.md +0 -140
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/LICENSE.md +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/README.md +0 -492
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/data/cacert.pem +0 -3232
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/excon.gemspec +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/connection.rb +0 -599
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/constants.rb +0 -172
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/error.rb +0 -229
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/extensions/uri.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/headers.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/instrumentors/logging_instrumentor.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/instrumentors/standard_instrumentor.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/base.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/capture_cookies.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/decompress.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/escape_path.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/expects.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/idempotent.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/instrumentor.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/mock.rb +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/redirect_follower.rb +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/response_parser.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/pretty_printer.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/response.rb +0 -234
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/socket.rb +0 -297
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/ssl_socket.rb +0 -194
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/plugin/server/exec.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/plugin/server/puma.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/plugin/server/unicorn.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/plugin/server/webrick.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/server.rb +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/unix_socket.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/utils.rb +0 -143
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/version.rb +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon.rb +0 -255
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/.gitignore +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/.rspec +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/.travis.yml +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/CONTRIBUTORS.md +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/Gemfile +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/Gemfile.lock +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/Guardfile +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/README.md +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/Rakefile +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/fake_ftp.gemspec +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/lib/fake_ftp/file.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/lib/fake_ftp/server.rb +0 -340
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/lib/fake_ftp/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/lib/fake_ftp.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/spec/fixtures/invisible_bike.jpg +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/spec/fixtures/text_file.txt +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/spec/functional/server_spec.rb +0 -468
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/spec/integration/server_spec.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/spec/models/fake_ftp/file_spec.rb +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/spec/models/fake_ftp/server_spec.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/fake_ftp-0.1.1/spec/spec_helper.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/CHANGELOG.md +0 -324
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/COPYING +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/Gemfile +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/LICENSE +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/LICENSE.SPECS +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/README.md +0 -136
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/Rakefile +0 -177
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/.sitearchdir.time +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/AbstractMemory.c +0 -1104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/AbstractMemory.h +0 -175
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/AbstractMemory.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ArrayType.c +0 -162
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ArrayType.h +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ArrayType.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Buffer.c +0 -360
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Buffer.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Call.c +0 -487
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Call.h +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Call.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ClosurePool.c +0 -333
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ClosurePool.h +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ClosurePool.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/DynamicLibrary.c +0 -334
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/DynamicLibrary.h +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/DynamicLibrary.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Function.c +0 -917
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Function.h +0 -83
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Function.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/FunctionInfo.c +0 -266
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/FunctionInfo.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/LastError.c +0 -225
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/LastError.h +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/LastError.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/LongDouble.c +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/LongDouble.h +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/LongDouble.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Makefile +0 -266
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MappedType.c +0 -168
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MappedType.h +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MappedType.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MemoryPointer.c +0 -192
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MemoryPointer.h +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MemoryPointer.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MethodHandle.c +0 -348
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MethodHandle.h +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/MethodHandle.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Platform.c +0 -78
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Platform.h +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Platform.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Pointer.c +0 -507
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Pointer.h +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Pointer.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Struct.c +0 -822
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Struct.h +0 -112
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Struct.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/StructByValue.c +0 -145
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/StructByValue.h +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/StructByValue.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/StructLayout.c +0 -700
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/StructLayout.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Thread.c +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Thread.h +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Thread.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Type.c +0 -379
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Type.h +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Type.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Types.c +0 -138
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Types.h +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Types.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Variadic.c +0 -303
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/Variadic.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/compat.h +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/extconf.h +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/extconf.rb +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ffi.c +0 -93
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ffi.o +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/.appveyor.yml +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/.gitattributes +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/.gitignore +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/.travis.yml +0 -83
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/ChangeLog.old +0 -7407
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/LICENSE +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +0 -353
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/Makefile.am +0 -150
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/Makefile.in +0 -2069
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/README.md +0 -486
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/acinclude.m4 +0 -479
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/autogen.sh +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/config.guess +0 -1687
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/config.sub +0 -1851
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/configure +0 -22046
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/configure.ac +0 -415
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/configure.host +0 -318
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/doc/Makefile.am +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/doc/Makefile.in +0 -815
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/doc/libffi.texi +0 -997
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/doc/version.texi +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/fficonfig.h.in +0 -223
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +0 -201
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/include/Makefile.am +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/include/Makefile.in +0 -608
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/include/ffi.h.in +0 -523
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/include/ffi_cfi.h +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/include/ffi_common.h +0 -153
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/install-sh +0 -541
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/libffi.map.in +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/libffi.pc.in +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +0 -997
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/libtool-ldflags +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/libtool-version +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/ltmain.sh +0 -11251
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/asmcfi.m4 +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_append_flag.m4 +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +0 -194
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +0 -122
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_configure_args.m4 +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +0 -302
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +0 -267
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/m4/ax_require_defined.m4 +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/make_sunver.pl +0 -333
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/man/Makefile.am +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/man/Makefile.in +0 -562
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/man/ffi.3 +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/man/ffi_call.3 +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/man/ffi_prep_cif.3 +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/missing +0 -215
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +0 -33
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +0 -511
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +0 -219
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/msvcc.sh +0 -353
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/aarch64/ffi.c +0 -1025
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/aarch64/ffitarget.h +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/aarch64/internal.h +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/aarch64/sysv.S +0 -451
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +0 -506
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/alpha/ffi.c +0 -521
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/alpha/ffitarget.h +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/alpha/internal.h +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/alpha/osf.S +0 -282
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/arc/arcompact.S +0 -135
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/arc/ffi.c +0 -266
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/arc/ffitarget.h +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/arm/ffi.c +0 -876
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/arm/ffitarget.h +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/arm/internal.h +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/arm/sysv.S +0 -385
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +0 -311
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/avr32/ffi.c +0 -423
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/avr32/ffitarget.h +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/avr32/sysv.S +0 -208
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/bfin/ffi.c +0 -196
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/bfin/ffitarget.h +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/bfin/sysv.S +0 -179
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/closures.c +0 -1021
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/cris/ffi.c +0 -386
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/cris/ffitarget.h +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/cris/sysv.S +0 -215
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/csky/ffi.c +0 -395
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/csky/ffitarget.h +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/csky/sysv.S +0 -371
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/debug.c +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/dlmalloc.c +0 -5166
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/frv/eabi.S +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/frv/ffi.c +0 -292
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/frv/ffitarget.h +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/ia64/ffi.c +0 -604
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/ia64/ffitarget.h +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/ia64/ia64_flags.h +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/ia64/unix.S +0 -567
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/java_raw_api.c +0 -374
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/kvx/asm.h +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/kvx/ffi.c +0 -273
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/kvx/ffitarget.h +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/kvx/sysv.S +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m32r/ffi.c +0 -232
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m32r/ffitarget.h +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m32r/sysv.S +0 -121
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m68k/ffi.c +0 -362
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m68k/ffitarget.h +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m68k/sysv.S +0 -357
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m88k/ffi.c +0 -400
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m88k/ffitarget.h +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/m88k/obsd.S +0 -209
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/metag/ffi.c +0 -330
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/metag/ffitarget.h +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/metag/sysv.S +0 -311
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/microblaze/ffi.c +0 -321
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/microblaze/ffitarget.h +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/microblaze/sysv.S +0 -302
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/mips/ffi.c +0 -1134
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/mips/ffitarget.h +0 -244
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/mips/n32.S +0 -663
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/mips/o32.S +0 -504
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/moxie/eabi.S +0 -101
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/moxie/ffi.c +0 -285
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/moxie/ffitarget.h +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/nios2/ffi.c +0 -304
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/nios2/ffitarget.h +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/nios2/sysv.S +0 -136
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/or1k/ffi.c +0 -328
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/or1k/ffitarget.h +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/or1k/sysv.S +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/pa/ffi.c +0 -674
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/pa/ffitarget.h +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/pa/hpux32.S +0 -370
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/pa/linux.S +0 -380
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/aix.S +0 -566
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/aix_closure.S +0 -694
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/asm.h +0 -125
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/darwin.S +0 -378
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +0 -571
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/ffi.c +0 -175
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +0 -1452
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +0 -1153
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +0 -105
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +0 -923
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/ffitarget.h +0 -204
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/linux64.S +0 -291
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +0 -564
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +0 -397
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/powerpc/sysv.S +0 -173
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/prep_cif.c +0 -263
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/raw_api.c +0 -267
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/riscv/ffi.c +0 -481
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/riscv/ffitarget.h +0 -69
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/riscv/sysv.S +0 -293
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/s390/ffi.c +0 -756
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/s390/ffitarget.h +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/s390/internal.h +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/s390/sysv.S +0 -325
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sh/ffi.c +0 -717
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sh/ffitarget.h +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sh/sysv.S +0 -850
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sh64/ffi.c +0 -469
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sh64/ffitarget.h +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sh64/sysv.S +0 -539
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sparc/ffi.c +0 -468
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sparc/ffi64.c +0 -608
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sparc/ffitarget.h +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sparc/internal.h +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sparc/v8.S +0 -443
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/sparc/v9.S +0 -440
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/tile/ffi.c +0 -355
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/tile/ffitarget.h +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/tile/tile.S +0 -360
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/types.c +0 -108
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/vax/elfbsd.S +0 -195
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/vax/ffi.c +0 -276
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/vax/ffitarget.h +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/asmnames.h +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/ffi.c +0 -770
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/ffi64.c +0 -895
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/ffitarget.h +0 -160
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/ffiw64.c +0 -318
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/internal.h +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/internal64.h +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/sysv.S +0 -1138
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/sysv_intel.S +0 -995
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/unix64.S +0 -621
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/win64.S +0 -241
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/x86/win64_intel.S +0 -238
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/xtensa/ffi.c +0 -298
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/xtensa/ffitarget.h +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/src/xtensa/sysv.S +0 -258
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/stamp-h.in +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/Makefile.am +0 -122
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/Makefile.in +0 -648
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/config/default.exp +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/lib/libffi.exp +0 -660
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +0 -283
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +0 -78
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +0 -1745
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +0 -2885
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +0 -743
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +0 -46
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +0 -46
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +0 -138
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/float.c +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/many.c +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +0 -78
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +0 -46
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +0 -114
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +0 -196
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +0 -121
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +0 -123
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +0 -125
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +0 -92
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +0 -94
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +0 -96
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +0 -93
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +0 -113
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +0 -109
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +0 -124
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +0 -113
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +0 -99
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +0 -93
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +0 -92
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +0 -115
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +0 -92
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +0 -93
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double.c +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +0 -105
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_args.c +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_float_double.c +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +0 -142
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +0 -114
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar_va.c +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort_va.c +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/err_bad_abi.c +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +0 -138
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +0 -343
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +0 -152
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +0 -161
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +0 -121
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +0 -110
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +0 -112
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +0 -131
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +0 -131
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +0 -131
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/problem1.c +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large.c +0 -145
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large2.c +0 -148
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +0 -124
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +0 -125
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +0 -78
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi.bsd.mk +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi.darwin.mk +0 -105
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi.gnu.mk +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi.mk +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi.vc.mk +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/libffi.vc64.mk +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/rbffi.h +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ext/ffi_c/rbffi_endian.h +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/ffi.gemspec +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/abstract_memory.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/autopointer.rb +0 -203
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/buffer.rb +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/callback.rb +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/data_converter.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/enum.rb +0 -296
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/errno.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/ffi.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/io.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/library.rb +0 -592
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/managedstruct.rb +0 -84
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/memorypointer.rb +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/aarch64-darwin/types.conf +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/aarch64-freebsd/types.conf +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/aarch64-freebsd12/types.conf +0 -181
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/aarch64-linux/types.conf +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/aarch64-openbsd/types.conf +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/arm-freebsd/types.conf +0 -152
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/arm-freebsd12/types.conf +0 -152
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/arm-linux/types.conf +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-cygwin/types.conf +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-darwin/types.conf +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-freebsd/types.conf +0 -152
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-freebsd12/types.conf +0 -152
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-gnu/types.conf +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-linux/types.conf +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-netbsd/types.conf +0 -126
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-openbsd/types.conf +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-solaris/types.conf +0 -122
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/i386-windows/types.conf +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/ia64-linux/types.conf +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/mips-linux/types.conf +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/mips64-linux/types.conf +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/mips64el-linux/types.conf +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/mipsel-linux/types.conf +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/mipsisa32r6-linux/types.conf +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/mipsisa32r6el-linux/types.conf +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/mipsisa64r6-linux/types.conf +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/mipsisa64r6el-linux/types.conf +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/powerpc-aix/types.conf +0 -180
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/powerpc-darwin/types.conf +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/powerpc-linux/types.conf +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/powerpc-openbsd/types.conf +0 -156
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/powerpc64-linux/types.conf +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/powerpc64le-linux/types.conf +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/riscv64-linux/types.conf +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/s390-linux/types.conf +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/s390x-linux/types.conf +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/sparc-linux/types.conf +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/sparc-solaris/types.conf +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/sparc64-linux/types.conf +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/sparcv9-openbsd/types.conf +0 -156
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/sparcv9-solaris/types.conf +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-cygwin/types.conf +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-darwin/types.conf +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-dragonflybsd/types.conf +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-freebsd/types.conf +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-freebsd12/types.conf +0 -158
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-haiku/types.conf +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-linux/types.conf +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-msys/types.conf +0 -119
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-netbsd/types.conf +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-openbsd/types.conf +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-solaris/types.conf +0 -122
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform/x86_64-windows/types.conf +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/platform.rb +0 -185
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/pointer.rb +0 -167
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/struct.rb +0 -316
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/struct_by_reference.rb +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/struct_layout.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/struct_layout_builder.rb +0 -227
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/tools/const_generator.rb +0 -231
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/tools/generator.rb +0 -105
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/tools/struct_generator.rb +0 -195
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/tools/types_generator.rb +0 -137
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/types.rb +0 -194
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/union.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/variadic.rb +0 -69
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi.rb +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/rakelib/ffi_gem_helper.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/samples/getlogin.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/samples/getpid.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/samples/gettimeofday.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/samples/hello.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/samples/inotify.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/samples/pty.rb +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/samples/qsort.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/.gitignore +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/COPYING +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/Changelog.md +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/Gemfile +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/README.md +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/Rakefile +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/VERSION +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/examples/gss_client.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/examples/gss_iov_client.rb +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/examples/gss_iov_helpers.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/examples/gss_iov_server.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/examples/gss_server.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/gssapi.gemspec +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/lib/gssapi/exceptions.rb +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/lib/gssapi/extensions.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/lib/gssapi/heimdal.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/lib/gssapi/lib_gssapi.rb +0 -416
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/lib/gssapi/lib_gssapi_loader.rb +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/lib/gssapi/simple.rb +0 -269
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/lib/gssapi.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/preamble +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/test/spec/gssapi_simple_spec.rb +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/gssapi-1.3.1/test/spec/test_buffer_spec.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/.gitignore +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/.rspec +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/.travis.yml +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/CHANGELOG.md +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/Gemfile +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/MIT-LICENSE +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/README.md +0 -192
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/Rakefile +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/gyoku.gemspec +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/lib/gyoku/array.rb +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/lib/gyoku/hash.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/lib/gyoku/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/lib/gyoku/xml_key.rb +0 -69
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/lib/gyoku/xml_value.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/lib/gyoku.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/spec/gyoku/array_spec.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/spec/gyoku/hash_spec.rb +0 -390
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/spec/gyoku/xml_key_spec.rb +0 -78
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/spec/gyoku/xml_value_spec.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/spec/gyoku_spec.rb +0 -84
- data/vendor/bundle/ruby/3.0.0/gems/gyoku-1.3.1/spec/spec_helper.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/.gitignore +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/Gemfile +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/LICENSE.txt +0 -354
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/README.md +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/Rakefile +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/lib/checkpoint/platform.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/lib/checkpoint/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/lib/checkpoint.rb +0 -125
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/ruby-checkpoint.gemspec +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/spec/checkpoint_spec.rb +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/hashicorp-checkpoint-0.1.5/spec/helper.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/README.md +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/bin/httpclient +0 -77
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/bin/jsonclient +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/hexdump.rb +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/http-access2/cookie.rb +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/http-access2/http.rb +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/http-access2.rb +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/auth.rb +0 -924
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/cacert.pem +0 -3952
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/cacert1024.pem +0 -3866
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/connection.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/cookie.rb +0 -220
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/http.rb +0 -1082
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/include_client.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/jruby_ssl_socket.rb +0 -588
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/session.rb +0 -960
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/ssl_config.rb +0 -424
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/ssl_socket.rb +0 -150
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/timeout.rb +0 -140
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/util.rb +0 -222
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient/webagent-cookie.rb +0 -459
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/httpclient.rb +0 -1327
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/jsonclient.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/lib/oauthclient.rb +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/async.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/auth.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/cookie.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/dav.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/howto.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/jsonclient.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/oauth_buzz.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/oauth_friendfeed.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/oauth_twitter.rb +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/ssl/0cert.pem +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/ssl/0key.pem +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/ssl/1000cert.pem +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/ssl/1000key.pem +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/ssl/htdocs/index.html +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/ssl/ssl_client.rb +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/ssl/webrick_httpsd.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/stream.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/thread.rb +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/sample/wcat.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/ca-chain.pem +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/ca.cert +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/client-pass.key +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/client.cert +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/client.key +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/helper.rb +0 -131
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/htdigest +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/htpasswd +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/jruby_ssl_socket/test_pemutils.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/runner.rb +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/server.cert +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/server.key +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/sslsvr.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/subca.cert +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_auth.rb +0 -492
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_cookie.rb +0 -309
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_hexdump.rb +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_http-access2.rb +0 -508
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_httpclient.rb +0 -2145
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_include_client.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_jsonclient.rb +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_ssl.rb +0 -559
- data/vendor/bundle/ruby/3.0.0/gems/httpclient-2.8.3/test/test_webagent-cookie.rb +0 -465
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/MIT-LICENSE +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/README.md +0 -122
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/base.rb +0 -285
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/cache.rb +0 -113
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/cache_file.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/cascade.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/chain.rb +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/fallbacks.rb +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/flatten.rb +0 -118
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/gettext.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/interpolation_compiler.rb +0 -123
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/key_value.rb +0 -206
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/memoize.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/metadata.rb +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/pluralization.rb +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/simple.rb +0 -109
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend/transliterator.rb +0 -108
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/backend.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/config.rb +0 -165
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/core_ext/hash.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/exceptions.rb +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/gettext/helpers.rb +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/gettext/po_parser.rb +0 -329
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/gettext.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/interpolate/ruby.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/locale/fallbacks.rb +0 -99
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/locale/tag/parents.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/locale/tag/rfc4646.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/locale/tag/simple.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/locale/tag.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/locale.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/middleware.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/basics.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/defaults.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/interpolation.rb +0 -163
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/link.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/localization/date.rb +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/localization/date_time.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/localization/procs.rb +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/localization/time.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/localization.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/lookup.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/pluralization.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests/procs.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/tests.rb +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.10/lib/i18n.rb +0 -415
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/MIT-LICENSE +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/README.md +0 -122
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/base.rb +0 -289
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/cache.rb +0 -113
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/cache_file.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/cascade.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/chain.rb +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/fallbacks.rb +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/flatten.rb +0 -118
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/gettext.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/interpolation_compiler.rb +0 -123
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/key_value.rb +0 -206
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/memoize.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/metadata.rb +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/pluralization.rb +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/simple.rb +0 -108
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/transliterator.rb +0 -108
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/config.rb +0 -165
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/core_ext/hash.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/exceptions.rb +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/gettext/helpers.rb +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/gettext/po_parser.rb +0 -329
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/gettext.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/interpolate/ruby.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/fallbacks.rb +0 -99
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/tag/parents.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/tag/rfc4646.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/tag/simple.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/tag.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/middleware.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/basics.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/defaults.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/interpolation.rb +0 -163
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/link.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization/date.rb +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization/date_time.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization/procs.rb +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization/time.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/lookup.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/pluralization.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/procs.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests.rb +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n.rb +0 -415
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/CHANGELOG.md +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/CONTRIBUTING.md +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/LICENSE.txt +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/README.md +0 -462
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/bin/listen +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/adapter/base.rb +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/adapter/bsd.rb +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/adapter/config.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/adapter/darwin.rb +0 -77
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/adapter/linux.rb +0 -108
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/adapter/polling.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/adapter/windows.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/adapter.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/backend.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/change.rb +0 -69
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/cli.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/directory.rb +0 -93
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/error.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/event/config.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/event/loop.rb +0 -94
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/event/processor.rb +0 -126
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/event/queue.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/file.rb +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/fsm.rb +0 -133
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/listener/config.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/listener.rb +0 -136
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/logger.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/monotonic_time.rb +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/options.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/queue_optimizer.rb +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/record/entry.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/record/symlink_detector.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/record.rb +0 -120
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/silencer/controller.rb +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/silencer.rb +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/thread.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/listen-3.7.0/lib/listen.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/little-plugger-1.1.4/.gitignore +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/little-plugger-1.1.4/History.txt +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/little-plugger-1.1.4/README.rdoc +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/little-plugger-1.1.4/Rakefile +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/little-plugger-1.1.4/lib/little-plugger.rb +0 -323
- data/vendor/bundle/ruby/3.0.0/gems/little-plugger-1.1.4/spec/little-plugger_spec.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/little-plugger-1.1.4/spec/spec_helper.rb +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/content/contact.html +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/content/contribute.html +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/content/index.html +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/content/license.html +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/content/manual.html +0 -449
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/dev/README.developers +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/dev/checklist +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/dev/things-to-do +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/images/log4r-logo.png +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/images/logo2.png +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/log4r.css +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/rdoc-log4r.css +0 -696
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/doc/templates/main.html +0 -147
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/README +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/ancestors.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/chainsaw_settings.xml +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/customlevels.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/filelog.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/fileroll.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/gmail.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/gmail.yaml +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/log4r_yaml.yaml +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/logclient.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/logserver.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/moderate.xml +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/moderateconfig.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/myformatter.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/outofthebox.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/rdoc-gen +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/rrconfig.xml +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/rrsetup.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/simpleconfig.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/syslogcustom.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/xmlconfig.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/examples/yaml.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/GDC.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/MDC.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/NDC.rb +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/base.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/config.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/configurator.rb +0 -224
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/formatter/formatter.rb +0 -105
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/formatter/log4jxmlformatter.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/formatter/patternformatter.rb +0 -145
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/lib/drbloader.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/lib/xmlloader.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/logevent.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/logger.rb +0 -199
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/loggerfactory.rb +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/logserver.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/consoleoutputters.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/datefileoutputter.rb +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/emailoutputter.rb +0 -143
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/fileoutputter.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/iooutputter.rb +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/outputter.rb +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/outputterfactory.rb +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/remoteoutputter.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/rollingfileoutputter.rb +0 -234
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/scribeoutputter.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/staticoutputter.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/syslogoutputter.rb +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/GDC +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/MDC +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/NDC +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/configurator +0 -243
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/emailoutputter +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/formatter +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/log4jxmlformatter +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/log4r +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/logger +0 -175
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/logserver +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/outputter +0 -108
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/patternformatter +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/scribeoutputter +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/syslogoutputter +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/win32eventoutputter +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/rdoc/yamlconfigurator +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/repository.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/staticlogger.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/version.rb +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r/yamlconfigurator.rb +0 -198
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/lib/log4r.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/README +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testGDC.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testMDC.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testNDC.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/test_helper.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testall.rb +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testbase.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testchainsaw.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testconf.xml +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testcustom.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testformatter.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testlogger.rb +0 -200
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testoutputter.rb +0 -143
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testpatternformatter.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testthreads.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testxmlconf.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testyaml.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testyaml_arrays.yaml +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/log4r-1.1.10/tests/testyaml_injection.yaml +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/.gitignore +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/.travis.yml +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/History.txt +0 -433
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/LICENSE +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/README.md +0 -138
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/Rakefile +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/appenders.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/classes.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/colorization.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/custom_log_levels.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/fork.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/formatting.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/hierarchies.rb +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/layouts.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/lazy.rb +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/loggers.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/mdc.rb +0 -83
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/names.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/rails4.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/reusing_layouts.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/rspec_integration.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/examples/simple.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appender.rb +0 -324
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appenders/buffering.rb +0 -485
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appenders/console.rb +0 -92
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appenders/file.rb +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appenders/io.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appenders/rolling_file.rb +0 -435
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appenders/string_io.rb +0 -92
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appenders/syslog.rb +0 -214
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/appenders.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/color_scheme.rb +0 -265
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/diagnostic_context.rb +0 -482
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/filter.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/filters/level.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/filters.rb +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/layout.rb +0 -260
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/layouts/basic.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/layouts/parseable.rb +0 -297
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/layouts/pattern.rb +0 -566
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/layouts.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/log_event.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/logger.rb +0 -518
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/proxy.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/rails_compat.rb +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/repository.rb +0 -216
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/root_logger.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/utils.rb +0 -170
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging/version.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/logging.rb +0 -597
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/rspec/logging_helper.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/lib/spec/logging_helper.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/logging.gemspec +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/script/bootstrap +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/script/console +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/appenders/test_async_flushing.rb +0 -194
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/appenders/test_buffered_io.rb +0 -224
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/appenders/test_console.rb +0 -108
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/appenders/test_file.rb +0 -150
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/appenders/test_io.rb +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/appenders/test_rolling_file.rb +0 -323
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/appenders/test_string_io.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/appenders/test_syslog.rb +0 -200
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/benchmark.rb +0 -113
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/layouts/test_basic.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/layouts/test_color_pattern.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/layouts/test_json.rb +0 -185
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/layouts/test_nested_exceptions.rb +0 -124
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/layouts/test_pattern.rb +0 -249
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/layouts/test_yaml.rb +0 -180
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/performance.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/setup.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_appender.rb +0 -205
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_color_scheme.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_filter.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_layout.rb +0 -165
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_log_event.rb +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_logger.rb +0 -739
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_logging.rb +0 -283
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_mapped_diagnostic_context.rb +0 -135
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_nested_diagnostic_context.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_proxy.rb +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_repository.rb +0 -149
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_root_logger.rb +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/logging-2.3.0/test/test_utils.rb +0 -79
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/Code-of-Conduct.md +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/Contributing.md +0 -143
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/History.md +0 -240
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/Licence.md +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/Manifest.txt +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/README.rdoc +0 -193
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/Rakefile +0 -284
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/type/columnar.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/type.rb +0 -587
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/_columnar.rb +0 -136
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/cache.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/columnar.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/container.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/deprecations.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/full.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/loader.rb +0 -146
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/logger.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types/registry.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime/types.rb +0 -231
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/lib/mime-types.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/bad-fixtures/malformed +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/fixture/json.json +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/fixture/old-data +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/fixture/yaml.yaml +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/minitest_helper.rb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/test_mime_type.rb +0 -610
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/test_mime_types.rb +0 -169
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/test_mime_types_cache.rb +0 -118
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/test_mime_types_class.rb +0 -159
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/test_mime_types_lazy.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.3.1/test/test_mime_types_loader.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Code-of-Conduct.md +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Contributing.md +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/History.md +0 -269
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Licence.md +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Manifest.txt +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/README.rdoc +0 -194
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Rakefile +0 -270
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/type/columnar.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/type.rb +0 -634
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/_columnar.rb +0 -137
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/cache.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/columnar.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/container.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/deprecations.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/full.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/loader.rb +0 -159
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/logger.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/registry.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types.rb +0 -233
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime-types.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/bad-fixtures/malformed +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/fixture/json.json +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/fixture/old-data +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/fixture/yaml.yaml +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/minitest_helper.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_type.rb +0 -621
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types.rb +0 -169
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types_cache.rb +0 -118
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types_class.rb +0 -159
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types_lazy.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types_loader.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/Code-of-Conduct.md +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/Contributing.md +0 -225
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/History.md +0 -479
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/Licence.md +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/Manifest.txt +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/README.md +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/Rakefile +0 -160
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime-types.json +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime.content_type.column +0 -2353
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime.docs.column +0 -2353
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime.encoding.column +0 -2353
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime.flags.column +0 -2353
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime.friendly.column +0 -2353
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime.pext.column +0 -2353
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime.use_instead.column +0 -2353
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/data/mime.xrefs.column +0 -2353
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/lib/mime/types/data.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/lib/mime-types-data.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/application.yaml +0 -17200
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/audio.yaml +0 -1716
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/chemical.yaml +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/conference.yaml +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/drawing.yaml +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/font.yaml +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/image.yaml +0 -1251
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/message.yaml +0 -200
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/model.yaml +0 -390
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/multipart.yaml +0 -179
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/text.yaml +0 -1157
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/video.yaml +0 -1121
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.0901/types/world.yaml +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Code-of-Conduct.md +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Contributing.md +0 -241
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/History.md +0 -494
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Licence.md +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Manifest.txt +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/README.md +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Rakefile +0 -155
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/content_type_mime.db +0 -878
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/ext_mime.db +0 -1198
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime-types.json +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.content_type.column +0 -2376
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.docs.column +0 -2376
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.encoding.column +0 -2376
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.flags.column +0 -2376
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.friendly.column +0 -2376
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.pext.column +0 -2376
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.use_instead.column +0 -2376
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.xrefs.column +0 -2376
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/lib/mime/types/data.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/lib/mime-types-data.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/application.yaml +0 -17254
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/audio.yaml +0 -1716
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/chemical.yaml +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/conference.yaml +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/drawing.yaml +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/font.yaml +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/image.yaml +0 -1251
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/message.yaml +0 -200
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/model.yaml +0 -390
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/multipart.yaml +0 -179
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/provisional-standard-types.yaml +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/text.yaml +0 -1166
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/video.yaml +0 -1121
- data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/world.yaml +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/CHANGELOG.md +0 -275
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/CONTRIBUTING.md +0 -46
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/LICENSE.md +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/README.md +0 -121
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapter.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapter_error.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/gson.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/jr_jackson.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/json_common.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/json_gem.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/json_pure.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/nsjsonserialization.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/oj.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/ok_json.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/adapters/yajl.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/convertible_hash_keys.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/options.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/options_cache.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/parse_error.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/vendor/okjson.rb +0 -606
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json/version.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/multi_json-1.15.0/lib/multi_json.rb +0 -161
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/.gitignore +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/.travis.yml +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/CHANGES.txt +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/Gemfile +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/LICENSE.txt +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/Manifest +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/README.rdoc +0 -124
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/Rakefile +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/lib/net/scp/download.rb +0 -165
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/lib/net/scp/errors.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/lib/net/scp/upload.rb +0 -142
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/lib/net/scp/version.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/lib/net/scp.rb +0 -448
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/lib/uri/open-scp.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/lib/uri/scp.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/net-scp-public_cert.pem +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/net-scp.gemspec +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/net-scp-3.0.0/setup.rb +0 -1331
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/.gitignore +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/.travis.yml +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/CHANGES.txt +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/Gemfile +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/LICENSE.txt +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/Manifest +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/README.rdoc +0 -118
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/Rakefile +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/constants.rb +0 -187
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/errors.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/operations/dir.rb +0 -93
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/operations/download.rb +0 -365
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/operations/file.rb +0 -198
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/operations/file_factory.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/operations/upload.rb +0 -395
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/packet.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/01/attributes.rb +0 -315
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/01/base.rb +0 -268
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/01/name.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/02/base.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/03/base.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/04/attributes.rb +0 -152
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/04/base.rb +0 -94
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/04/name.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/05/base.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/06/attributes.rb +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/06/base.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol/base.rb +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/protocol.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/request.rb +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/response.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/session.rb +0 -954
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp/version.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/lib/net/sftp.rb +0 -78
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/net-sftp-public_cert.pem +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/net-sftp.gemspec +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/net-sftp-3.0.0/setup.rb +0 -1331
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/.gitignore +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/.rubocop.yml +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/.rubocop_todo.yml +0 -982
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/.travis.yml +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/CHANGES.txt +0 -685
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/Gemfile +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/Gemfile.noed25519 +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/ISSUE_TEMPLATE.md +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/LICENSE.txt +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/Manifest +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/README.md +0 -287
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/Rakefile +0 -104
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/THANKS.txt +0 -110
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/appveyor.yml +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/agent.rb +0 -268
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/certificate.rb +0 -180
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/constants.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/ed25519.rb +0 -181
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/ed25519_loader.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/key_manager.rb +0 -298
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/methods/abstract.rb +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/methods/hostbased.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/methods/keyboard_interactive.rb +0 -77
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/methods/none.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/methods/password.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/methods/publickey.rb +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/pageant.rb +0 -497
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/pub_key_fingerprint.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/session.rb +0 -164
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/buffer.rb +0 -429
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/buffered_io.rb +0 -203
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/config.rb +0 -393
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/connection/channel.rb +0 -692
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/connection/constants.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/connection/event_loop.rb +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/connection/keepalive.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/connection/session.rb +0 -711
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/connection/term.rb +0 -182
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/errors.rb +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/key_factory.rb +0 -219
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/known_hosts.rb +0 -196
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/loggable.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/packet.rb +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/prompt.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/proxy/command.rb +0 -123
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/proxy/errors.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/proxy/http.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/proxy/https.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/proxy/jump.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/proxy/socks4.rb +0 -69
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/proxy/socks5.rb +0 -142
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/service/forward.rb +0 -426
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test/channel.rb +0 -149
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test/extensions.rb +0 -173
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test/kex.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test/local_packet.rb +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test/packet.rb +0 -101
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test/remote_packet.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test/script.rb +0 -182
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test/socket.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/test.rb +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/algorithms.rb +0 -499
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/cipher_factory.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/constants.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/ctr.rb +0 -115
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/abstract.rb +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/md5.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/md5_96.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/none.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/ripemd160.rb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/sha1.rb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/sha1_96.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/sha2_256.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/sha2_256_96.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/sha2_256_etm.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/sha2_512.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/sha2_512_96.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/sha2_512_etm.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/identity_cipher.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/abstract.rb +0 -123
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/abstract5656.rb +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/curve25519_sha256.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/curve25519_sha256_loader.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/diffie_hellman_group14_sha1.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb +0 -122
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha256.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/ecdh_sha2_nistp256.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/ecdh_sha2_nistp384.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex/ecdh_sha2_nistp521.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/kex.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/key_expander.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/openssl.rb +0 -249
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/packet_stream.rb +0 -281
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/server_version.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/session.rb +0 -352
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/state.rb +0 -208
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/verifiers/accept_new.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/verifiers/accept_new_or_local_tunnel.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/verifiers/always.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/verifiers/never.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/version.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh.rb +0 -331
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/net-ssh-public_cert.pem +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/net-ssh.gemspec +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/support/ssh_tunnel_bug.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/.gitignore +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/.rspec +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/.travis.yml +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/CHANGELOG.md +0 -212
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/Gemfile +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/LICENSE +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/README.md +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/Rakefile +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/benchmark/benchmark.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/benchmark/soap_response.xml +0 -266
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/core_ext/hash.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/core_ext/object.rb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/core_ext/string.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/core_ext.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/parser/nokogiri.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/parser/rexml.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/string_io_file.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/string_with_attributes.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori/xml_utility_node.rb +0 -261
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/lib/nori.rb +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/nori.gemspec +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/spec/nori/api_spec.rb +0 -184
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/spec/nori/core_ext/hash_spec.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/spec/nori/core_ext/object_spec.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/spec/nori/core_ext/string_spec.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/spec/nori/nori_spec.rb +0 -645
- data/vendor/bundle/ruby/3.0.0/gems/nori-2.6.0/spec/spec_helper.rb +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/History.rdoc +0 -2403
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/MIT-LICENSE +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/README.rdoc +0 -155
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/command_line_usage.rdoc +0 -158
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/example/Rakefile1 +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/example/Rakefile2 +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/example/a.c +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/example/b.c +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/example/main.c +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/glossary.rdoc +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/jamis.rb +0 -592
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/proto_rake.rdoc +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/rake.1 +0 -156
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/rakefile.rdoc +0 -622
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/rational.rdoc +0 -151
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/exe/rake +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/application.rb +0 -831
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/backtrace.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/clean.rb +0 -78
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/cloneable.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/cpu_counter.rb +0 -107
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/default_loader.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/dsl_definition.rb +0 -195
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/early_time.rb +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/ext/core.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/ext/string.rb +0 -176
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/file_creation_task.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/file_list.rb +0 -435
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/file_task.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/file_utils.rb +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/file_utils_ext.rb +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/invocation_chain.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/invocation_exception_mixin.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/late_time.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/linked_list.rb +0 -112
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/loaders/makefile.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/multi_task.rb +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/name_space.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/packagetask.rb +0 -222
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/phony.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/private_reader.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/promise.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/pseudo_status.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/rake_module.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/rake_test_loader.rb +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/rule_recursion_overflow_error.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/scope.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/task.rb +0 -434
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/task_argument_error.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/task_arguments.rb +0 -109
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/task_manager.rb +0 -331
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/tasklib.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/testtask.rb +0 -189
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/thread_history_display.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/thread_pool.rb +0 -163
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/trace_output.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/version.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/win32.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake.rb +0 -71
- data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/rake.gemspec +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/.gitignore +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/Gemfile +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/Guardfile +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/LICENSE.txt +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/README.md +0 -260
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/Rakefile +0 -33
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/bin/fsevent_watch +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/LICENSE +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/FSEventsFix.c +0 -626
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/FSEventsFix.h +0 -105
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/TSICTString.c +0 -373
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/TSICTString.h +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/cli.c +0 -201
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/cli.h +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/common.h +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/compat.c +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/compat.h +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/defines.h +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/main.c +0 -548
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/signal_handlers.c +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/fsevent_watch/signal_handlers.h +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/ext/rakefile.rb +0 -231
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/lib/otnetstring.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/lib/rb-fsevent/fsevent.rb +0 -157
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/lib/rb-fsevent/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/lib/rb-fsevent.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rb-fsevent-0.11.0/rb-fsevent.gemspec +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/.gitignore +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/.travis.yml +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/.yardopts +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/Gemfile +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/LICENSE.md +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/README.md +0 -113
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/Rakefile +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/lib/rb-inotify/errors.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/lib/rb-inotify/event.rb +0 -146
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/lib/rb-inotify/native/flags.rb +0 -94
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/lib/rb-inotify/native.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/lib/rb-inotify/notifier.rb +0 -326
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/lib/rb-inotify/version.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/lib/rb-inotify/watcher.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/lib/rb-inotify.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/rb-inotify.gemspec +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/spec/inotify_spec.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/spec/notifier_spec.rb +0 -180
- data/vendor/bundle/ruby/3.0.0/gems/rb-inotify-0.10.1/spec/spec_helper.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/.gitignore +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/.rspec +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/.yardopts +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/Gemfile +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/MIT-LICENSE +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/README.md +0 -92
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/Rakefile +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/event.rb +0 -92
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/native/flags.rb +0 -153
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/native.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/queue.rb +0 -371
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/watcher/file.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/watcher/process.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/watcher/read_write.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/watcher/signal.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/watcher/socket_read_write.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/watcher/timer.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue/watcher.rb +0 -124
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/lib/rb-kqueue.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/rb-kqueue.gemspec +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/spec/kqueue_queue_spec.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/rb-kqueue-0.2.7/spec/spec_helper.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/LICENSE.txt +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/NEWS.md +0 -178
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/README.md +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/context.rdoc +0 -143
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/child.rdoc +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/document.rdoc +0 -276
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/element.rdoc +0 -602
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/node.rdoc +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/parent.rdoc +0 -267
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/child_toc.rdoc +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/document_toc.rdoc +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/element_toc.rdoc +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/master_toc.rdoc +0 -135
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/node_toc.rdoc +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/parent_toc.rdoc +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/attlistdecl.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/attribute.rb +0 -205
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/cdata.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/child.rb +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/comment.rb +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/doctype.rb +0 -311
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/document.rb +0 -451
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/dtd/attlistdecl.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/dtd/dtd.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/dtd/elementdecl.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/dtd/entitydecl.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/dtd/notationdecl.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/element.rb +0 -2599
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/encoding.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/entity.rb +0 -171
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/formatters/default.rb +0 -116
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/formatters/pretty.rb +0 -142
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/formatters/transitive.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/functions.rb +0 -447
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/instruction.rb +0 -79
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/light/node.rb +0 -188
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/namespace.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/node.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/output.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parent.rb +0 -166
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parseexception.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parsers/baseparser.rb +0 -694
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parsers/lightparser.rb +0 -59
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parsers/pullparser.rb +0 -197
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parsers/sax2parser.rb +0 -273
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parsers/streamparser.rb +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parsers/treeparser.rb +0 -101
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parsers/ultralightparser.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/parsers/xpathparser.rb +0 -689
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/quickpath.rb +0 -266
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/rexml.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/sax2listener.rb +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/security.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/source.rb +0 -298
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/streamlistener.rb +0 -93
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/text.rb +0 -424
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/undefinednamespaceexception.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/validation/relaxng.rb +0 -539
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/validation/validation.rb +0 -144
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/validation/validationexception.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/xmldecl.rb +0 -130
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/xmltokens.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/xpath.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml/xpath_parser.rb +0 -974
- data/vendor/bundle/ruby/3.0.0/gems/rexml-3.2.5/lib/rexml.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rspec-3.10.0/LICENSE.md +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/rspec-3.10.0/README.md +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/rspec-3.10.0/lib/rspec/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/rspec-3.10.0/lib/rspec.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/.document +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/.yardopts +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/Changelog.md +0 -2327
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/LICENSE.md +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/README.md +0 -384
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/exe/rspec +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/autorun.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/backtrace_formatter.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/coordinator.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/example_minimizer.rb +0 -173
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/fork_runner.rb +0 -138
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/server.rb +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/shell_command.rb +0 -126
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/shell_runner.rb +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/bisect/utilities.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/configuration.rb +0 -2372
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/configuration_options.rb +0 -233
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/did_you_mean.rb +0 -46
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/drb.rb +0 -120
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/dsl.rb +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/example.rb +0 -663
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/example_group.rb +0 -901
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/example_status_persister.rb +0 -235
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/filter_manager.rb +0 -231
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/flat_map.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/base_bisect_formatter.rb +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/base_formatter.rb +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/base_text_formatter.rb +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/bisect_drb_formatter.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/bisect_progress_formatter.rb +0 -157
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/console_codes.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/deprecation_formatter.rb +0 -223
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/documentation_formatter.rb +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/exception_presenter.rb +0 -521
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/failure_list_formatter.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/fallback_message_formatter.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/helpers.rb +0 -110
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/html_formatter.rb +0 -153
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/html_printer.rb +0 -414
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/html_snippet_extractor.rb +0 -120
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/json_formatter.rb +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/profile_formatter.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/progress_formatter.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/protocol.rb +0 -182
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/snippet_extractor.rb +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters/syntax_highlighter.rb +0 -91
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/formatters.rb +0 -273
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/hooks.rb +0 -646
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/invocations.rb +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/memoized_helpers.rb +0 -554
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/metadata.rb +0 -498
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/metadata_filter.rb +0 -255
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/minitest_assertions_adapter.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/mocking_adapters/flexmock.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/mocking_adapters/mocha.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/mocking_adapters/null.rb +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/mocking_adapters/rr.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/mocking_adapters/rspec.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/notifications.rb +0 -521
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/option_parser.rb +0 -324
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/ordering.rb +0 -158
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/output_wrapper.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/pending.rb +0 -165
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/profiler.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/project_initializer/.rspec +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/project_initializer/spec/spec_helper.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/project_initializer.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/rake_task.rb +0 -188
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/reporter.rb +0 -265
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/ruby_project.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/runner.rb +0 -212
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/sandbox.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/set.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/shared_context.rb +0 -55
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/shared_example_group.rb +0 -271
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/shell_escape.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/test_unit_assertions_adapter.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/version.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/warnings.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core/world.rb +0 -277
- data/vendor/bundle/ruby/3.0.0/gems/rspec-core-3.10.1/lib/rspec/core.rb +0 -186
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/.document +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/.yardopts +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/Changelog.md +0 -1240
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/LICENSE.md +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/README.md +0 -320
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/block_snippet_extractor.rb +0 -253
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/configuration.rb +0 -230
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/expectation_target.rb +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/fail_with.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/failure_aggregator.rb +0 -212
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/handler.rb +0 -182
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/minitest_integration.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/syntax.rb +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations/version.rb +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/expectations.rb +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/aliased_matcher.rb +0 -116
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/all.rb +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/base_matcher.rb +0 -193
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be.rb +0 -191
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be_between.rb +0 -77
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be_instance_of.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be_kind_of.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/be_within.rb +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/change.rb +0 -428
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/compound.rb +0 -276
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/contain_exactly.rb +0 -302
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/count_expectation.rb +0 -169
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/cover.rb +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/eq.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/eql.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/equal.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/exist.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/has.rb +0 -167
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/have_attributes.rb +0 -114
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/include.rb +0 -206
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/match.rb +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/operators.rb +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/output.rb +0 -200
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/raise_error.rb +0 -259
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/respond_to.rb +0 -200
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/satisfy.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/start_or_end_with.rb +0 -94
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/throw_symbol.rb +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in/yield.rb +0 -355
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/built_in.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/composable.rb +0 -171
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/dsl.rb +0 -540
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/english_phrasing.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/fail_matchers.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/generated_descriptions.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/matcher_delegator.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers/matcher_protocol.rb +0 -99
- data/vendor/bundle/ruby/3.0.0/gems/rspec-expectations-3.10.1/lib/rspec/matchers.rb +0 -1041
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/.gitignore +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/.rspec +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/.travis.yml +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/Changelog.md +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/Gemfile +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/LICENSE.txt +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/README.md +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/Rakefile +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/features/its.feature +0 -176
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/features/step_definitions/additional_cli_steps.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/features/support/env.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/lib/rspec/its/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/lib/rspec/its.rb +0 -182
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/rspec-its.gemspec +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/script/test_all +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/script/update_rubygems_and_install_bundler +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/spec/rspec/its_spec.rb +0 -380
- data/vendor/bundle/ruby/3.0.0/gems/rspec-its-1.3.0/spec/spec_helper.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/.document +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/.yardopts +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/Changelog.md +0 -1167
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/LICENSE.md +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/README.md +0 -463
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/chain.rb +0 -111
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/error_generator.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/expect_chain_chain.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/expectation_chain.rb +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/message_chains.rb +0 -83
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/proxy.rb +0 -116
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/recorder.rb +0 -295
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/stub_chain.rb +0 -51
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance/stub_chain_chain.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/any_instance.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/argument_list_matcher.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/argument_matchers.rb +0 -322
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/configuration.rb +0 -212
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/error_generator.rb +0 -369
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/example_methods.rb +0 -434
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/instance_method_stasher.rb +0 -146
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/marshal_extension.rb +0 -41
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/matchers/expectation_customization.rb +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/matchers/have_received.rb +0 -134
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/matchers/receive.rb +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/matchers/receive_message_chain.rb +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/matchers/receive_messages.rb +0 -77
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/message_chain.rb +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/message_expectation.rb +0 -751
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/method_double.rb +0 -288
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/method_reference.rb +0 -202
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/minitest_integration.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/mutate_const.rb +0 -339
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/object_reference.rb +0 -149
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/order_group.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/proxy.rb +0 -519
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/space.rb +0 -238
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/standalone.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/syntax.rb +0 -325
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/targets.rb +0 -124
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/test_double.rb +0 -171
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/verifying_double.rb +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/verifying_message_expectation.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/verifying_proxy.rb +0 -220
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks/version.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/rspec-mocks-3.10.2/lib/rspec/mocks.rb +0 -133
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/Changelog.md +0 -332
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/LICENSE.md +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/README.md +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/caller_filter.rb +0 -83
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/comparable_version.rb +0 -46
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/differ.rb +0 -215
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/directory_maker.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/encoded_string.rb +0 -161
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/fuzzy_matcher.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/hunk_generator.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/matcher_definition.rb +0 -42
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/method_signature_verifier.rb +0 -438
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/mutex.rb +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/object_formatter.rb +0 -275
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/recursive_const_methods.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/reentrant_mutex.rb +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/ruby_features.rb +0 -191
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/source/location.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/source/node.rb +0 -110
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/source/token.rb +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/source.rb +0 -85
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/deprecation_helpers.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/diff_helpers.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/formatting_support.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/in_sub_process.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/library_wide_checks.rb +0 -150
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/shell_out.rb +0 -105
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/stderr_splitter.rb +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/string_matcher.rb +0 -45
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/with_isolated_directory.rb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec/with_isolated_stderr.rb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/spec.rb +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/version.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/warnings.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support/with_keywords_when_needed.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/gems/rspec-support-3.10.2/lib/rspec/support.rb +0 -154
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/.gitignore +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/.rspec +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/.travis.yml +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/CHANGELOG.md +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/Gemfile +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/LICENSE +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/README.md +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/Rakefile +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/examples/http.rb +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/examples/imap.rb +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/examples/smtp.rb +0 -94
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/blob.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/channel_binding.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/client/session.rb +0 -237
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/client.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/encode_util.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/exceptions.rb +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/field.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/field_set.rb +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/int16_le.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/int32_le.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/int64_le.rb +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/message/type0.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/message/type1.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/message/type2.rb +0 -102
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/message/type3.rb +0 -131
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/message.rb +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/security_buffer.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/string.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/target_info.rb +0 -89
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/version.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm.rb +0 -266
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/rubyntlm.rb +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/rubyntlm.gemspec +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/blob_spec.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/channel_binding_spec.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/client/session_spec.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/client_spec.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/encode_util_spec.rb +0 -16
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/field_set_spec.rb +0 -33
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/field_spec.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/int16_le_spec.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/int32_le_spec.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/int64_le_spec.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/message/type0_spec.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/message/type1_spec.rb +0 -131
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/message/type2_spec.rb +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/message/type3_spec.rb +0 -225
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/message_spec.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/security_buffer_spec.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/string_spec.rb +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/target_info_spec.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm/version_spec.rb +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/lib/net/ntlm_spec.rb +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/spec_helper.rb +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/support/certificates/sha_256_hash.pem +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/support/shared/examples/net/ntlm/field_shared.rb +0 -25
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/support/shared/examples/net/ntlm/fieldset_shared.rb +0 -239
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/support/shared/examples/net/ntlm/int_shared.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/spec/support/shared/examples/net/ntlm/message_shared.rb +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/README.md +0 -354
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/Rakefile +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/TODO +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/central_directory.rb +0 -212
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/compressor.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/constants.rb +0 -115
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/crypto/decrypted_io.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/crypto/encryption.rb +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/crypto/null_encryption.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/crypto/traditional_encryption.rb +0 -99
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/decompressor.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/deflater.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/dos_time.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/entry.rb +0 -719
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/entry_set.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/errors.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/extra_field/generic.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/extra_field/ntfs.rb +0 -94
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/extra_field/old_unix.rb +0 -46
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/extra_field/universal_time.rb +0 -77
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/extra_field/unix.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/extra_field/zip64.rb +0 -70
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/extra_field/zip64_placeholder.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/extra_field.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/file.rb +0 -468
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/filesystem.rb +0 -643
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/inflater.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/input_stream.rb +0 -180
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/ioextras/abstract_input_stream.rb +0 -122
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/ioextras/abstract_output_stream.rb +0 -43
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/ioextras.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/null_compressor.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/null_decompressor.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/null_input_stream.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/output_stream.rb +0 -198
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/pass_thru_compressor.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/pass_thru_decompressor.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/streamable_directory.rb +0 -15
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/streamable_stream.rb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/lib/zip.rb +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/samples/example.rb +0 -81
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/samples/example_filesystem.rb +0 -31
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/samples/example_recursive.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/samples/gtk_ruby_zip.rb +0 -84
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/samples/qtzip.rb +0 -92
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/samples/write_simple.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/rubyzip-2.3.2/samples/zipfind.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/.document +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/CHANGELOG.md +0 -139
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/LICENSE.md +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/README.md +0 -35
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/Thorfile +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/bin/thor +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/actions/create_file.rb +0 -105
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/actions/create_link.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/actions/directory.rb +0 -119
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/actions/empty_directory.rb +0 -137
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/actions/file_manipulation.rb +0 -314
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/actions/inject_into_file.rb +0 -109
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/actions.rb +0 -318
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/base.rb +0 -652
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/command.rb +0 -136
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/core_ext/hash_with_indifferent_access.rb +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/core_ext/io_binary_read.rb +0 -12
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/core_ext/ordered_hash.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/error.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/group.rb +0 -282
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/invocation.rb +0 -172
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/parser/argument.rb +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/parser/arguments.rb +0 -171
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/parser/option.rb +0 -121
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/parser/options.rb +0 -218
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/parser.rb +0 -4
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/rake_compat.rb +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/runner.rb +0 -322
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/shell/basic.rb +0 -393
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/shell/color.rb +0 -148
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/shell/html.rb +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/shell.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/util.rb +0 -270
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor.rb +0 -473
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/actions/create_file_spec.rb +0 -170
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/actions/create_link_spec.rb +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/actions/directory_spec.rb +0 -169
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/actions/empty_directory_spec.rb +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/actions/file_manipulation_spec.rb +0 -382
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/actions/inject_into_file_spec.rb +0 -135
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/actions_spec.rb +0 -331
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/base_spec.rb +0 -291
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/command_spec.rb +0 -80
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/core_ext/hash_with_indifferent_access_spec.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/core_ext/ordered_hash_spec.rb +0 -115
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/exit_condition_spec.rb +0 -19
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/application.rb +0 -2
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/app{1}/README +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/bundle/execute.rb +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/bundle/main.thor +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/command.thor +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/doc/%file_name%.rb.tt +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/doc/COMMENTER +0 -11
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/doc/README +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/doc/block_helper.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/doc/config.rb +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/doc/config.yaml.tt +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/doc/excluding/%file_name%.rb.tt +0 -1
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/enum.thor +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/group.thor +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/invoke.thor +0 -112
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/path with spaces +0 -0
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/preserve/script.sh +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/script.thor +0 -220
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/fixtures/subcommand.thor +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/group_spec.rb +0 -216
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/helper.rb +0 -67
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/invocation_spec.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/parser/argument_spec.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/parser/arguments_spec.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/parser/option_spec.rb +0 -202
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/parser/options_spec.rb +0 -400
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/rake_compat_spec.rb +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/register_spec.rb +0 -197
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/runner_spec.rb +0 -241
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/shell/basic_spec.rb +0 -311
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/shell/color_spec.rb +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/shell/html_spec.rb +0 -32
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/shell_spec.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/subcommand_spec.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/thor_spec.rb +0 -491
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/spec/util_spec.rb +0 -196
- data/vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/thor.gemspec +0 -24
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/LICENSE +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/README.md +0 -173
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/account.rb +0 -112
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/box/provider.rb +0 -176
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/box/version.rb +0 -163
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/box.rb +0 -146
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/client.rb +0 -478
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/data.rb +0 -293
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/error.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/instrumentor/collection.rb +0 -123
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/instrumentor/core.rb +0 -9
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/instrumentor/logger.rb +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/instrumentor.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/logger.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/organization.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/response/create_token.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/response/request_2fa.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/response/search.rb +0 -65
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/response.rb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/search.rb +0 -129
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud/version.rb +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/vagrant_cloud-3.0.5/lib/vagrant_cloud.rb +0 -21
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/LICENSE +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/README.md +0 -207
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/Makefile +0 -153
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/entry.c +0 -72
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/entry.h +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/extconf.rb +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/memory.c +0 -27
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/memory.h +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/monitor.c +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/monitor.h +0 -50
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/queue.c +0 -196
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/queue.h +0 -73
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/rb_change.c +0 -199
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/rb_change.h +0 -28
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/rb_monitor.c +0 -575
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/rb_monitor.h +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/utils.c +0 -77
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/utils.h +0 -26
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/wdm.c +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/wdm.h +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/wdm.sln +0 -20
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/wdm.vcxproj +0 -106
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/ext/wdm/wdm.vcxproj.filters +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/wdm-0.1.1/lib/wdm.rb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/Gemfile +0 -3
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/LICENSE.txt +0 -22
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/README.md +0 -61
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/Rakefile +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/bin/console +0 -14
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/bin/setup +0 -8
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/accesslog.rb +0 -157
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/cgi.rb +0 -313
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/compat.rb +0 -36
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/config.rb +0 -158
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/cookie.rb +0 -172
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/htmlutils.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpauth/authenticator.rb +0 -117
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpauth/basicauth.rb +0 -116
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpauth/digestauth.rb +0 -395
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpauth/htdigest.rb +0 -132
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpauth/htgroup.rb +0 -97
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpauth/htpasswd.rb +0 -158
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpauth/userdb.rb +0 -53
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpauth.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpproxy.rb +0 -354
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httprequest.rb +0 -636
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpresponse.rb +0 -564
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/https.rb +0 -152
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpserver.rb +0 -294
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpservlet/abstract.rb +0 -152
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpservlet/cgi_runner.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpservlet/cgihandler.rb +0 -126
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpservlet/erbhandler.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpservlet/filehandler.rb +0 -552
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpservlet/prochandler.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpservlet.rb +0 -23
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpstatus.rb +0 -194
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httputils.rb +0 -512
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/httpversion.rb +0 -76
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/log.rb +0 -156
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/server.rb +0 -381
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/ssl.rb +0 -215
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/utils.rb +0 -265
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick/version.rb +0 -18
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/lib/webrick.rb +0 -232
- data/vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/webrick.gemspec +0 -74
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/LICENSE +0 -202
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/README.md +0 -276
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/bin/rwinrm +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/connection.rb +0 -84
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/connection_opts.rb +0 -90
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/exceptions.rb +0 -88
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/http/response_handler.rb +0 -127
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/http/transport.rb +0 -462
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/http/transport_factory.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/output.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/create_pipeline.xml.erb +0 -167
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/fragment.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/init_runspace_pool.xml.erb +0 -224
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message.rb +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data/base.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data/error_record.rb +0 -68
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data/pipeline_host_call.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data/pipeline_output.rb +0 -48
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data/pipeline_state.rb +0 -38
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data/runspacepool_host_call.rb +0 -30
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data/runspacepool_state.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data/session_capability.rb +0 -34
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_data.rb +0 -40
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_defragmenter.rb +0 -62
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_factory.rb +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/message_fragmenter.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/powershell_output_decoder.rb +0 -142
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/receive_response_reader.rb +0 -95
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/session_capability.xml.erb +0 -7
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/psrp/uuid.rb +0 -39
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/shells/base.rb +0 -188
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/shells/cmd.rb +0 -63
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/shells/power_shell.rb +0 -207
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/shells/retryable.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/shells/shell_factory.rb +0 -56
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/version.rb +0 -5
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/base.rb +0 -57
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/cleanup_command.rb +0 -60
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/close_shell.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/command.rb +0 -100
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/command_output.rb +0 -75
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/command_output_decoder.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/configuration.rb +0 -44
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/create_pipeline.rb +0 -64
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/create_shell.rb +0 -115
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/header.rb +0 -213
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/init_runspace_pool.rb +0 -96
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/iso8601_duration.rb +0 -58
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/keep_alive.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/receive_response_reader.rb +0 -128
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/send_data.rb +0 -66
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/soap.rb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/wql_pull.rb +0 -54
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/wql_query.rb +0 -98
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm/wsmv/write_stdin.rb +0 -86
- data/vendor/bundle/ruby/3.0.0/gems/winrm-2.3.6/lib/winrm.rb +0 -37
- data/vendor/bundle/ruby/3.0.0/gems/winrm-elevated-1.2.3/LICENSE +0 -202
- data/vendor/bundle/ruby/3.0.0/gems/winrm-elevated-1.2.3/README.md +0 -99
- data/vendor/bundle/ruby/3.0.0/gems/winrm-elevated-1.2.3/lib/winrm/shells/elevated.rb +0 -103
- data/vendor/bundle/ruby/3.0.0/gems/winrm-elevated-1.2.3/lib/winrm-elevated/scripts/elevated_shell.ps1 +0 -150
- data/vendor/bundle/ruby/3.0.0/gems/winrm-elevated-1.2.3/lib/winrm-elevated.rb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/LICENSE +0 -202
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/README.md +0 -82
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/bin/rwinrmcp +0 -87
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/core/file_transporter.rb +0 -573
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/core/tmp_zip.rb +0 -178
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/exceptions.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/file_manager.rb +0 -171
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/scripts/check_files.ps1.erb +0 -49
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/scripts/checksum.ps1.erb +0 -13
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/scripts/create_dir.ps1.erb +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/scripts/delete.ps1.erb +0 -6
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/scripts/download.ps1.erb +0 -17
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/scripts/exists.ps1.erb +0 -10
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/scripts/extract_files.ps1.erb +0 -52
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs/scripts/scripts.rb +0 -47
- data/vendor/bundle/ruby/3.0.0/gems/winrm-fs-1.3.5/lib/winrm-fs.rb +0 -29
- data/vendor/bundle/ruby/3.0.0/specifications/bcrypt_pbkdf-1.1.0.gemspec +0 -43
- data/vendor/bundle/ruby/3.0.0/specifications/builder-3.2.4.gemspec +0 -23
- data/vendor/bundle/ruby/3.0.0/specifications/childprocess-4.1.0.gemspec +0 -35
- data/vendor/bundle/ruby/3.0.0/specifications/concurrent-ruby-1.1.9.gemspec +0 -24
- data/vendor/bundle/ruby/3.0.0/specifications/diff-lcs-1.4.4.gemspec +0 -50
- data/vendor/bundle/ruby/3.0.0/specifications/ed25519-1.2.4.gemspec +0 -35
- data/vendor/bundle/ruby/3.0.0/specifications/erubi-1.10.0.gemspec +0 -36
- data/vendor/bundle/ruby/3.0.0/specifications/excon-0.88.0.gemspec +0 -58
- data/vendor/bundle/ruby/3.0.0/specifications/excon-0.89.0.gemspec +0 -58
- data/vendor/bundle/ruby/3.0.0/specifications/fake_ftp-0.1.1.gemspec +0 -20
- data/vendor/bundle/ruby/3.0.0/specifications/ffi-1.15.4.gemspec +0 -42
- data/vendor/bundle/ruby/3.0.0/specifications/gssapi-1.3.1.gemspec +0 -36
- data/vendor/bundle/ruby/3.0.0/specifications/gyoku-1.3.1.gemspec +0 -35
- data/vendor/bundle/ruby/3.0.0/specifications/hashicorp-checkpoint-0.1.5.gemspec +0 -36
- data/vendor/bundle/ruby/3.0.0/specifications/httpclient-2.8.3.gemspec +0 -21
- data/vendor/bundle/ruby/3.0.0/specifications/i18n-1.8.10.gemspec +0 -32
- data/vendor/bundle/ruby/3.0.0/specifications/i18n-1.8.11.gemspec +0 -32
- data/vendor/bundle/ruby/3.0.0/specifications/listen-3.7.0.gemspec +0 -36
- data/vendor/bundle/ruby/3.0.0/specifications/little-plugger-1.1.4.gemspec +0 -32
- data/vendor/bundle/ruby/3.0.0/specifications/log4r-1.1.10.gemspec +0 -31
- data/vendor/bundle/ruby/3.0.0/specifications/logging-2.3.0.gemspec +0 -40
- data/vendor/bundle/ruby/3.0.0/specifications/mime-types-3.3.1.gemspec +0 -67
- data/vendor/bundle/ruby/3.0.0/specifications/mime-types-3.4.1.gemspec +0 -63
- data/vendor/bundle/ruby/3.0.0/specifications/mime-types-data-3.2021.0901.gemspec +0 -50
- data/vendor/bundle/ruby/3.0.0/specifications/mime-types-data-3.2021.1115.gemspec +0 -54
- data/vendor/bundle/ruby/3.0.0/specifications/multi_json-1.15.0.gemspec +0 -33
- data/vendor/bundle/ruby/3.0.0/specifications/net-scp-3.0.0.gemspec +0 -38
- data/vendor/bundle/ruby/3.0.0/specifications/net-sftp-3.0.0.gemspec +0 -38
- data/vendor/bundle/ruby/3.0.0/specifications/net-ssh-6.1.0.gemspec +0 -50
- data/vendor/bundle/ruby/3.0.0/specifications/nori-2.6.0.gemspec +0 -35
- data/vendor/bundle/ruby/3.0.0/specifications/rake-13.0.6.gemspec +0 -26
- data/vendor/bundle/ruby/3.0.0/specifications/rb-fsevent-0.11.0.gemspec +0 -35
- data/vendor/bundle/ruby/3.0.0/specifications/rb-inotify-0.10.1.gemspec +0 -38
- data/vendor/bundle/ruby/3.0.0/specifications/rb-kqueue-0.2.7.gemspec +0 -37
- data/vendor/bundle/ruby/3.0.0/specifications/rexml-3.2.5.gemspec +0 -38
- data/vendor/bundle/ruby/3.0.0/specifications/rspec-3.10.0.gemspec +0 -39
- data/vendor/bundle/ruby/3.0.0/specifications/rspec-core-3.10.1.gemspec +0 -53
- data/vendor/bundle/ruby/3.0.0/specifications/rspec-expectations-3.10.1.gemspec +0 -44
- data/vendor/bundle/ruby/3.0.0/specifications/rspec-its-1.3.0.gemspec +0 -41
- data/vendor/bundle/ruby/3.0.0/specifications/rspec-mocks-3.10.2.gemspec +0 -44
- data/vendor/bundle/ruby/3.0.0/specifications/rspec-support-3.10.2.gemspec +0 -36
- data/vendor/bundle/ruby/3.0.0/specifications/rubyntlm-0.6.3.gemspec +0 -39
- data/vendor/bundle/ruby/3.0.0/specifications/rubyzip-2.3.2.gemspec +0 -40
- data/vendor/bundle/ruby/3.0.0/specifications/thor-0.18.1.gemspec +0 -32
- data/vendor/bundle/ruby/3.0.0/specifications/vagrant_cloud-3.0.5.gemspec +0 -40
- data/vendor/bundle/ruby/3.0.0/specifications/wdm-0.1.1.gemspec +0 -41
- data/vendor/bundle/ruby/3.0.0/specifications/webrick-1.7.0.gemspec +0 -32
- data/vendor/bundle/ruby/3.0.0/specifications/winrm-2.3.6.gemspec +0 -61
- data/vendor/bundle/ruby/3.0.0/specifications/winrm-elevated-1.2.3.gemspec +0 -43
- data/vendor/bundle/ruby/3.0.0/specifications/winrm-fs-1.3.5.gemspec +0 -49
@@ -1,462 +0,0 @@
|
|
1
|
-
# Listen
|
2
|
-
|
3
|
-
The `listen` gem listens to file modifications and notifies you about the changes.
|
4
|
-
|
5
|
-
[![Development Status](https://github.com/guard/listen/workflows/Development/badge.svg)](https://github.com/guard/listen/actions?workflow=Development)
|
6
|
-
[![Gem Version](https://badge.fury.io/rb/listen.svg)](http://badge.fury.io/rb/listen)
|
7
|
-
[![Code Climate](https://codeclimate.com/github/guard/listen.svg)](https://codeclimate.com/github/guard/listen)
|
8
|
-
[![Coverage Status](https://coveralls.io/repos/guard/listen/badge.svg?branch=master)](https://coveralls.io/r/guard/listen)
|
9
|
-
|
10
|
-
## Features
|
11
|
-
|
12
|
-
* OS-optimized adapters on MRI for Mac OS X 10.6+, Linux, \*BSD and Windows, [more info](#listen-adapters) below.
|
13
|
-
* Detects file modification, addition and removal.
|
14
|
-
* You can watch multiple directories.
|
15
|
-
* Regexp-patterns for ignoring paths for more accuracy and speed
|
16
|
-
* Increased change detection accuracy on OS X HFS and VFAT volumes.
|
17
|
-
* Continuous Integration: tested on selected Ruby environments via [Github Workflows](https:///github.com/guard/listen/master/.github/workflows).
|
18
|
-
|
19
|
-
## Issues / limitations
|
20
|
-
|
21
|
-
* Limited support for symlinked directories ([#279](https://github.com/guard/listen/issues/279)):
|
22
|
-
* Symlinks are always followed ([#25](https://github.com/guard/listen/issues/25)).
|
23
|
-
* Symlinked directories pointing within a watched directory are not supported ([#273](https://github.com/guard/listen/pull/273).
|
24
|
-
* No directory/adapter-specific configuration options.
|
25
|
-
* Support for plugins planned for future.
|
26
|
-
* TCP functionality was removed in `listen` [3.0.0](https://github.com/guard/listen/releases/tag/v3.0.0) ([#319](https://github.com/guard/listen/issues/319), [#218](https://github.com/guard/listen/issues/218)). There are plans to extract this feature to separate gems ([#258](https://github.com/guard/listen/issues/258)), until this is finished, you can use by locking the `listen` gem to version `'~> 2.10'`.
|
27
|
-
* Some filesystems won't work without polling (VM/Vagrant Shared folders, NFS, Samba, sshfs, etc.).
|
28
|
-
* Windows and \*BSD adapter aren't continuously and automatically tested.
|
29
|
-
* OSX adapter has some performance limitations ([#342](https://github.com/guard/listen/issues/342)).
|
30
|
-
* Listeners do not notify across forked processes, if you wish for multiple processes to receive change notifications you must [listen inside of each process](https://github.com/guard/listen/issues/398#issuecomment-223957952).
|
31
|
-
|
32
|
-
Pull requests or help is very welcome for these.
|
33
|
-
|
34
|
-
## Install
|
35
|
-
|
36
|
-
The simplest way to install `listen` is to use [Bundler](http://bundler.io).
|
37
|
-
|
38
|
-
```ruby
|
39
|
-
gem 'listen'
|
40
|
-
```
|
41
|
-
|
42
|
-
## Complete Example
|
43
|
-
Here is a complete example of using the `listen` gem:
|
44
|
-
```ruby
|
45
|
-
require 'listen'
|
46
|
-
|
47
|
-
listener = Listen.to('/srv/app') do |modified, added, removed|
|
48
|
-
puts(modified: modified, added: added, removed: removed)
|
49
|
-
end
|
50
|
-
listener.start
|
51
|
-
sleep
|
52
|
-
```
|
53
|
-
Running the above in the background, you can see the callback block being called in response to each command:
|
54
|
-
```
|
55
|
-
$ cd /srv/app
|
56
|
-
$ touch a.txt
|
57
|
-
{:modified=>[], :added=>["/srv/app/a.txt"], :removed=>[]}
|
58
|
-
|
59
|
-
$ echo more >> a.txt
|
60
|
-
{:modified=>["/srv/app/a.txt"], :added=>[], :removed=>[]}
|
61
|
-
|
62
|
-
$ mv a.txt b.txt
|
63
|
-
{:modified=>[], :added=>["/srv/app/b.txt"], :removed=>["/srv/app/a.txt"]}
|
64
|
-
|
65
|
-
$ vi b.txt
|
66
|
-
# add a line to this new file and press ZZ to save and exit
|
67
|
-
{:modified=>["/srv/app/b.txt"], :added=>[], :removed=>[]}
|
68
|
-
|
69
|
-
$ vi c.txt
|
70
|
-
# add a line and press ZZ to save and exit
|
71
|
-
{:modified=>[], :added=>["/srv/app/c.txt"], :removed=>[]}
|
72
|
-
|
73
|
-
$ rm b.txt c.txt
|
74
|
-
{:modified=>[], :added=>[], :removed=>["/srv/app/b.txt", "/srv/app/c.txt"]}
|
75
|
-
```
|
76
|
-
|
77
|
-
## Usage
|
78
|
-
|
79
|
-
Call `Listen.to` with one or more directories and the "changes" callback passed as a block.
|
80
|
-
|
81
|
-
``` ruby
|
82
|
-
listener = Listen.to('dir/to/listen', 'dir/to/listen2') do |modified, added, removed|
|
83
|
-
puts "modified absolute path array: #{modified}"
|
84
|
-
puts "added absolute path array: #{added}"
|
85
|
-
puts "removed absolute path array: #{removed}"
|
86
|
-
end
|
87
|
-
listener.start # starts a listener thread--does not block
|
88
|
-
|
89
|
-
# do whatever you want here...just don't exit the process :)
|
90
|
-
|
91
|
-
sleep
|
92
|
-
```
|
93
|
-
## Changes Callback
|
94
|
-
|
95
|
-
Changes to the listened-to directories are reported by the listener thread in a callback.
|
96
|
-
The callback receives **three** array parameters: `modified`, `added` and `removed`, in that order.
|
97
|
-
Each of these three is always an array with 0 or more entries.
|
98
|
-
Each array entry is an absolute path.
|
99
|
-
|
100
|
-
### Pause / unpause / stop
|
101
|
-
|
102
|
-
Listeners can also be easily paused/unpaused:
|
103
|
-
|
104
|
-
``` ruby
|
105
|
-
listener = Listen.to('dir/path/to/listen') { |modified, added, removed| puts 'handle changes here...' }
|
106
|
-
|
107
|
-
listener.start
|
108
|
-
listener.paused? # => false
|
109
|
-
listener.processing? # => true
|
110
|
-
|
111
|
-
listener.pause # stops processing changes (but keeps on collecting them)
|
112
|
-
listener.paused? # => true
|
113
|
-
listener.processing? # => false
|
114
|
-
|
115
|
-
listener.unpause # resumes processing changes ("start" would do the same)
|
116
|
-
listener.stop # stop both listening to changes and processing them
|
117
|
-
```
|
118
|
-
|
119
|
-
Note: While paused, `listen` keeps on collecting changes in the background - to clear them, call `stop`.
|
120
|
-
|
121
|
-
Note: You should keep track of all started listeners and `stop` them properly on finish.
|
122
|
-
|
123
|
-
### Ignore / ignore!
|
124
|
-
|
125
|
-
`Listen` ignores some directories and extensions by default (See DEFAULT_IGNORED_DIRECTORIES and DEFAULT_IGNORED_EXTENSIONS in Listen::Silencer).
|
126
|
-
You can add ignoring patterns with the `ignore` option/method or overwrite default with `ignore!` option/method.
|
127
|
-
|
128
|
-
``` ruby
|
129
|
-
listener = Listen.to('dir/path/to/listen', ignore: /\.txt/) { |modified, added, removed| # ... }
|
130
|
-
listener.start
|
131
|
-
listener.ignore! /\.pkg/ # overwrite all patterns and only ignore pkg extension.
|
132
|
-
listener.ignore /\.rb/ # ignore rb extension in addition of pkg.
|
133
|
-
sleep
|
134
|
-
```
|
135
|
-
|
136
|
-
Note: `:ignore` regexp patterns are evaluated against relative paths.
|
137
|
-
|
138
|
-
Note: Ignoring paths does not improve performance, except when Polling ([#274](https://github.com/guard/listen/issues/274)).
|
139
|
-
|
140
|
-
### Only
|
141
|
-
|
142
|
-
`Listen` watches all files (less the ignored ones) by default. If you want to only listen to a specific type of file (i.e., just `.rb` extension), you should use the `only` option/method.
|
143
|
-
|
144
|
-
``` ruby
|
145
|
-
listener = Listen.to('dir/path/to/listen', only: /\.rb$/) { |modified, added, removed| # ... }
|
146
|
-
listener.start
|
147
|
-
listener.only /_spec\.rb$/ # overwrite all existing only patterns.
|
148
|
-
sleep
|
149
|
-
```
|
150
|
-
|
151
|
-
Note: `:only` regexp patterns are evaluated only against relative **file** paths.
|
152
|
-
|
153
|
-
|
154
|
-
## Options
|
155
|
-
|
156
|
-
All the following options can be set through the `Listen.to` after the directory path(s) params.
|
157
|
-
|
158
|
-
```ruby
|
159
|
-
ignore: [%r{/foo/bar}, /\.pid$/, /\.coffee$/] # Ignore a list of paths
|
160
|
-
# default: See DEFAULT_IGNORED_DIRECTORIES and DEFAULT_IGNORED_EXTENSIONS in Listen::Silencer
|
161
|
-
|
162
|
-
ignore!: %r{/foo/bar} # Same as ignore options, but overwrite default ignored paths.
|
163
|
-
|
164
|
-
only: %r{.rb$} # Only listen to specific files
|
165
|
-
# default: none
|
166
|
-
|
167
|
-
latency: 0.5 # Set the delay (**in seconds**) between checking for changes
|
168
|
-
# default: 0.25 sec (1.0 sec for polling)
|
169
|
-
|
170
|
-
wait_for_delay: 4 # Set the delay (**in seconds**) between calls to the callback when changes exist
|
171
|
-
# default: 0.10 sec
|
172
|
-
|
173
|
-
force_polling: true # Force the use of the polling adapter
|
174
|
-
# default: none
|
175
|
-
|
176
|
-
relative: false # Whether changes should be relative to current dir or not
|
177
|
-
# default: false
|
178
|
-
|
179
|
-
polling_fallback_message: 'custom message' # Set a custom polling fallback message (or disable it with false)
|
180
|
-
# default: "Listen will be polling for changes. Learn more at https://github.com/guard/listen#listen-adapters."
|
181
|
-
```
|
182
|
-
|
183
|
-
## Logging and Debugging
|
184
|
-
|
185
|
-
`Listen` logs its activity to `Listen.logger`.
|
186
|
-
This is the primary method of debugging.
|
187
|
-
|
188
|
-
### Custom Logger
|
189
|
-
You can call `Listen.logger =` to set a custom `listen` logger for the process. For example:
|
190
|
-
```
|
191
|
-
Listen.logger = Rails.logger
|
192
|
-
```
|
193
|
-
|
194
|
-
### Default Logger
|
195
|
-
If no custom logger is set, a default `listen` logger which logs to to `STDERR` will be created and assigned to `Listen.logger`.
|
196
|
-
|
197
|
-
The default logger defaults to the `error` logging level (severity).
|
198
|
-
You can override the logging level by setting the environment variable `LISTEN_GEM_DEBUGGING=<level>`.
|
199
|
-
For `<level>`, all standard `::Logger` levels are supported, with any mix of upper-/lower-case:
|
200
|
-
```
|
201
|
-
export LISTEN_GEM_DEBUGGING=debug # or 2 [deprecated]
|
202
|
-
export LISTEN_GEM_DEBUGGING=info # or 1 or true or yes [deprecated]
|
203
|
-
export LISTEN_GEM_DEBUGGING=warn
|
204
|
-
export LISTEN_GEM_DEBUGGING=fatal
|
205
|
-
export LISTEN_GEM_DEBUGGING=error
|
206
|
-
```
|
207
|
-
The default of `error` will be used if an unsupported value is set.
|
208
|
-
|
209
|
-
Note: The alternate values `1`, `2`, `true` and `yes` shown above are deprecated and will be removed from `listen` v4.0.
|
210
|
-
|
211
|
-
### Disabling Logging
|
212
|
-
If you want to disable `listen` logging, set
|
213
|
-
```
|
214
|
-
Listen.logger = ::Logger.new('/dev/null')
|
215
|
-
```
|
216
|
-
## Listen Adapters
|
217
|
-
|
218
|
-
The `Listen` gem has a set of adapters to notify it when there are changes.
|
219
|
-
|
220
|
-
There are 4 OS-specific adapters to support Darwin, Linux, \*BSD and Windows.
|
221
|
-
These adapters are fast as they use some system-calls to implement the notifying function.
|
222
|
-
|
223
|
-
There is also a polling adapter - although it's much slower than other adapters,
|
224
|
-
it works on every platform/system and scenario (including network filesystems such as VM shared folders).
|
225
|
-
|
226
|
-
The Darwin and Linux adapters are dependencies of the `listen` gem so they work out of the box. For other adapters a specific gem will have to be added to your Gemfile, please read below.
|
227
|
-
|
228
|
-
The `listen` gem will choose the best adapter automatically, if present. If you
|
229
|
-
want to force the use of the polling adapter, use the `:force_polling` option
|
230
|
-
while initializing the listener.
|
231
|
-
|
232
|
-
### On Windows
|
233
|
-
|
234
|
-
If you are on Windows, it's recommended to use the [`wdm`](https://github.com/Maher4Ever/wdm) adapter instead of polling.
|
235
|
-
|
236
|
-
Please add the following to your Gemfile:
|
237
|
-
|
238
|
-
```ruby
|
239
|
-
gem 'wdm', '>= 0.1.0', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
240
|
-
```
|
241
|
-
|
242
|
-
### On \*BSD
|
243
|
-
|
244
|
-
If you are on \*BSD you can try to use the [`rb-kqueue`](https://github.com/mat813/rb-kqueue) adapter instead of polling.
|
245
|
-
|
246
|
-
Please add the following to your Gemfile:
|
247
|
-
|
248
|
-
```ruby
|
249
|
-
require 'rbconfig'
|
250
|
-
if RbConfig::CONFIG['target_os'] =~ /bsd|dragonfly/i
|
251
|
-
gem 'rb-kqueue', '>= 0.2'
|
252
|
-
end
|
253
|
-
|
254
|
-
```
|
255
|
-
|
256
|
-
### Getting the [polling fallback message](#options)?
|
257
|
-
|
258
|
-
If you see:
|
259
|
-
```
|
260
|
-
Listen will be polling for changes.
|
261
|
-
```
|
262
|
-
|
263
|
-
This means the Listen gem can’t find an optimized adapter. Typically this is caused by:
|
264
|
-
|
265
|
-
- You’re on Windows and WDM gem isn’t installed.
|
266
|
-
- You’re running the app without Bundler or RubyGems.
|
267
|
-
- Using Sass which includes an ancient (the “dinosaur” type of ancient) version of the Listen gem.
|
268
|
-
|
269
|
-
Possible solutions:
|
270
|
-
|
271
|
-
1. Suppress the message by using the :force_polling option. Or, you could just ignore the message since it’s harmless.
|
272
|
-
2. Windows users: Install the WDM gem.
|
273
|
-
3. Upgrade Ruby (use RubyInstaller for Windows or RVM/rbenv for Mac) and RubyGems.
|
274
|
-
3. Run your apps using Bundler.
|
275
|
-
4. Sass users: Install the latest version of Listen and try again.
|
276
|
-
|
277
|
-
#### Simplified Bundler and Sass example
|
278
|
-
Create a Gemfile with these lines:
|
279
|
-
```
|
280
|
-
source 'https://rubygems.org'
|
281
|
-
gem 'listen'
|
282
|
-
gem 'sass'
|
283
|
-
```
|
284
|
-
Next, use Bundler to update gems:
|
285
|
-
```
|
286
|
-
$ bundle update
|
287
|
-
$ bundle exec sass --watch # ... or whatever app is using Listen.
|
288
|
-
```
|
289
|
-
|
290
|
-
### Increasing the amount of inotify watchers
|
291
|
-
|
292
|
-
If you are running Debian, RedHat, or another similar Linux distribution, run the following in a terminal:
|
293
|
-
```
|
294
|
-
$ sudo sh -c "echo fs.inotify.max_user_watches=524288 >> /etc/sysctl.conf"
|
295
|
-
$ sudo sysctl -p
|
296
|
-
```
|
297
|
-
If you are running ArchLinux, search the `/etc/sysctl.d/` directory for config files with the setting:
|
298
|
-
```
|
299
|
-
$ grep -H -s "fs.inotify.max_user_watches" /etc/sysctl.d/*
|
300
|
-
/etc/sysctl.d/40-max_user_watches.conf:fs.inotify.max_user_watches=100000
|
301
|
-
```
|
302
|
-
Then change the setting in the file you found above to a higher value (see [here](https://www.archlinux.org/news/deprecation-of-etcsysctlconf/) for why):
|
303
|
-
```
|
304
|
-
$ sudo sh -c "echo fs.inotify.max_user_watches=524288 > /etc/sysctl.d/40-max-user-watches.conf"
|
305
|
-
$ sudo sysctl --system
|
306
|
-
```
|
307
|
-
|
308
|
-
#### The technical details
|
309
|
-
Listen uses `inotify` by default on Linux to monitor directories for changes.
|
310
|
-
It's not uncommon to encounter a system limit on the number of files you can monitor.
|
311
|
-
For example, Ubuntu Lucid's (64bit) `inotify` limit is set to 8192.
|
312
|
-
|
313
|
-
You can get your current inotify file watch limit by executing:
|
314
|
-
```
|
315
|
-
$ cat /proc/sys/fs/inotify/max_user_watches
|
316
|
-
```
|
317
|
-
When this limit is not enough to monitor all files inside a directory, the limit must be increased for Listen to work properly.
|
318
|
-
|
319
|
-
You can set a new limit temporarily with:
|
320
|
-
```
|
321
|
-
$ sudo sysctl fs.inotify.max_user_watches=524288
|
322
|
-
$ sudo sysctl -p
|
323
|
-
```
|
324
|
-
If you like to make your limit permanent, use:
|
325
|
-
```
|
326
|
-
$ sudo sh -c "echo fs.inotify.max_user_watches=524288 >> /etc/sysctl.conf"
|
327
|
-
$ sudo sysctl -p
|
328
|
-
```
|
329
|
-
You may also need to pay attention to the values of `max_queued_events` and `max_user_instances` if Listen keeps on complaining.
|
330
|
-
|
331
|
-
#### More info
|
332
|
-
Man page for [inotify(7)](https://linux.die.net/man/7/inotify).
|
333
|
-
Blog post: [limit of inotify](https://blog.sorah.jp/2012/01/24/inotify-limitation).
|
334
|
-
|
335
|
-
### Issues and Troubleshooting
|
336
|
-
|
337
|
-
If the gem doesn't work as expected, start by setting `LISTEN_GEM_DEBUGGING=debug` or `LISTEN_GEM_DEBUGGING=info` as described above in [Logging and Debugging](#logging-and-debugging).
|
338
|
-
|
339
|
-
*NOTE: without providing the output after setting the `LISTEN_GEM_DEBUGGING=debug` environment variable, it is usually impossible to guess why `listen` is not working as expected.*
|
340
|
-
|
341
|
-
#### 3 steps before you start diagnosing problems
|
342
|
-
These 3 steps will:
|
343
|
-
|
344
|
-
- help quickly troubleshoot obscure problems (trust me, most of them are obscure)
|
345
|
-
- help quickly identify the area of the problem (a full list is below)
|
346
|
-
- help you get familiar with listen's diagnostic mode (it really comes in handy, trust me)
|
347
|
-
- help you create relevant output before you submit an issue (so we can respond with answers instead of tons of questions)
|
348
|
-
|
349
|
-
Step 1 - The most important option in Listen
|
350
|
-
For effective troubleshooting set the `LISTEN_GEM_DEBUGGING=info` variable before starting `listen`.
|
351
|
-
|
352
|
-
Step 2 - Verify polling works
|
353
|
-
Polling has to work ... or something is really wrong (and we need to know that before anything else).
|
354
|
-
|
355
|
-
(see force_polling option).
|
356
|
-
|
357
|
-
After starting `listen`, you should see something like:
|
358
|
-
```
|
359
|
-
INFO -- : Record.build(): 0.06773114204406738 seconds
|
360
|
-
```
|
361
|
-
Step 3 - Trigger some changes directly without using editors or apps
|
362
|
-
Make changes e.g. touch foo or echo "a" >> foo (for troubleshooting, avoid using an editor which could generate too many misleading events).
|
363
|
-
|
364
|
-
You should see something like:
|
365
|
-
```
|
366
|
-
INFO -- : listen: raw changes: [[:added, "/home/me/foo"]]
|
367
|
-
INFO -- : listen: final changes: {:modified=>[], :added=>["/home/me/foo"], :removed=>[]}
|
368
|
-
```
|
369
|
-
"raw changes" contains changes collected during the :wait_for_delay and :latency intervals, while "final changes" is what listen decided are relevant changes (for better editor support).
|
370
|
-
|
371
|
-
## Performance
|
372
|
-
|
373
|
-
If `listen` seems slow or unresponsive, make sure you're not using the Polling adapter (you should see a warning upon startup if you are).
|
374
|
-
|
375
|
-
Also, if the directories you're watching contain many files, make sure you're:
|
376
|
-
|
377
|
-
* not using Polling (ideally)
|
378
|
-
* using `:ignore` and `:only` options to avoid tracking directories you don't care about (important with Polling and on MacOS)
|
379
|
-
* running `listen` with the `:latency` and `:wait_for_delay` options not too small or too big (depends on needs)
|
380
|
-
* not watching directories with log files, database files or other frequently changing files
|
381
|
-
* not using a version of `listen` prior to 2.7.7
|
382
|
-
* not getting silent crashes within `listen` (see `LISTEN_GEM_DEBUGGING=debug`)
|
383
|
-
* not running multiple instances of `listen` in the background
|
384
|
-
* using a file system with atime modification disabled (ideally)
|
385
|
-
* not using a filesystem with inaccurate file modification times (ideally), e.g. HFS, VFAT
|
386
|
-
* not buffering to a slow terminal (e.g. transparency + fancy font + slow gfx card + lots of output)
|
387
|
-
* ideally not running a slow encryption stack, e.g. btrfs + ecryptfs
|
388
|
-
|
389
|
-
When in doubt, `LISTEN_GEM_DEBUGGING=debug` can help discover the actual events and time they happened.
|
390
|
-
|
391
|
-
## Tips and Techniques
|
392
|
-
- Watch only directories you're interested in.
|
393
|
-
- Set your editor to save quickly (e.g. without backup files, without atomic-save)
|
394
|
-
- Tweak the `:latency` and `:wait_for_delay` options until you get good results (see [options](#options)).
|
395
|
-
- Add `:ignore` rules to silence all events you don't care about (reduces a lot of noise, especially if you use it on directories)
|
396
|
-
|
397
|
-
## Development
|
398
|
-
|
399
|
-
* Documentation hosted at [RubyDoc](http://rubydoc.info/github/guard/listen/master/frames).
|
400
|
-
* Source hosted at [GitHub](https://github.com/guard/listen).
|
401
|
-
|
402
|
-
Pull requests are very welcome! Please try to follow these simple rules if applicable:
|
403
|
-
|
404
|
-
* Please create a topic branch for every separate change you make.
|
405
|
-
* Make sure your patches are well tested. All specs must pass on [Travis CI](https://travis-ci.org/guard/listen).
|
406
|
-
* Update the [Yard](http://yardoc.org/) documentation.
|
407
|
-
* Update the [README](https://github.com/guard/listen/blob/master/README.md).
|
408
|
-
* Please **do not change** the version number.
|
409
|
-
|
410
|
-
For questions please join us in our [Google group](http://groups.google.com/group/guard-dev) or on
|
411
|
-
`#guard` (irc.freenode.net).
|
412
|
-
|
413
|
-
## Releasing
|
414
|
-
|
415
|
-
### Prerequisites
|
416
|
-
|
417
|
-
* You must have commit rights to the GitHub repository.
|
418
|
-
* You must have push rights for rubygems.org.
|
419
|
-
|
420
|
-
### How to release
|
421
|
-
|
422
|
-
1. Run `bundle install` to make sure that you have all the gems necessary for testing and releasing.
|
423
|
-
2. **Ensure all tests are passing by running `bundle exec rake`.**
|
424
|
-
3. Determine which would be the correct next version number according to [semver](http://semver.org/).
|
425
|
-
4. Update the version in `./lib/listen/version.rb`.
|
426
|
-
5. Update the version in the Install section of `./README.md` (`gem 'listen', '~> X.Y'`).
|
427
|
-
6. Commit the version in a single commit, the message should be "Preparing vX.Y.Z"
|
428
|
-
7. Run `bundle exec rake release:full`; this will tag, push to GitHub, and publish to rubygems.org.
|
429
|
-
8. Update and publish the release notes on the [GitHub releases page](https://github.com/guard/listen/releases) if necessary
|
430
|
-
|
431
|
-
## Acknowledgments
|
432
|
-
|
433
|
-
* [Michael Kessler (netzpirat)][] for having written the [initial specs](https://github.com/guard/listen/commit/1e457b13b1bb8a25d2240428ce5ed488bafbed1f).
|
434
|
-
* [Travis Tilley (ttilley)][] for this awesome work on [fssm][] & [rb-fsevent][].
|
435
|
-
* [Natalie Weizenbaum (nex3)][] for [rb-inotify][], a thorough inotify wrapper.
|
436
|
-
* [Mathieu Arnold (mat813)][] for [rb-kqueue][], a simple kqueue wrapper.
|
437
|
-
* [Maher Sallam][] for [wdm][], windows support wouldn't exist without him.
|
438
|
-
* [Yehuda Katz (wycats)][] for [vigilo][], that has been a great source of inspiration.
|
439
|
-
|
440
|
-
## Author
|
441
|
-
|
442
|
-
[Thibaud Guillaume-Gentil](https://github.com/thibaudgg) ([@thibaudgg](https://twitter.com/thibaudgg))
|
443
|
-
|
444
|
-
## Contributors
|
445
|
-
|
446
|
-
[https://github.com/guard/listen/graphs/contributors](https://github.com/guard/listen/graphs/contributors)
|
447
|
-
|
448
|
-
[Thibaud Guillaume-Gentil (thibaudgg)]: https://github.com/thibaudgg
|
449
|
-
[Maher Sallam]: https://github.com/Maher4Ever
|
450
|
-
[Michael Kessler (netzpirat)]: https://github.com/netzpirat
|
451
|
-
[Travis Tilley (ttilley)]: https://github.com/ttilley
|
452
|
-
[fssm]: https://github.com/ttilley/fssm
|
453
|
-
[rb-fsevent]: https://github.com/thibaudgg/rb-fsevent
|
454
|
-
[Mathieu Arnold (mat813)]: https://github.com/mat813
|
455
|
-
[Natalie Weizenbaum (nex3)]: https://github.com/nex3
|
456
|
-
[rb-inotify]: https://github.com/nex3/rb-inotify
|
457
|
-
[stereobooster]: https://github.com/stereobooster
|
458
|
-
[rb-fchange]: https://github.com/stereobooster/rb-fchange
|
459
|
-
[rb-kqueue]: https://github.com/mat813/rb-kqueue
|
460
|
-
[Yehuda Katz (wycats)]: https://github.com/wycats
|
461
|
-
[vigilo]: https://github.com/wycats/vigilo
|
462
|
-
[wdm]: https://github.com/Maher4Ever/wdm
|
@@ -1,129 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'listen/options'
|
4
|
-
require 'listen/record'
|
5
|
-
require 'listen/change'
|
6
|
-
require 'listen/thread'
|
7
|
-
|
8
|
-
module Listen
|
9
|
-
module Adapter
|
10
|
-
class Base
|
11
|
-
attr_reader :options, :config
|
12
|
-
|
13
|
-
# TODO: only used by tests
|
14
|
-
DEFAULTS = {}.freeze
|
15
|
-
|
16
|
-
def initialize(config)
|
17
|
-
@started = false
|
18
|
-
@config = config
|
19
|
-
|
20
|
-
@configured = nil
|
21
|
-
|
22
|
-
fail 'No directories to watch!' if config.directories.empty?
|
23
|
-
|
24
|
-
defaults = self.class.const_get('DEFAULTS')
|
25
|
-
@options = Listen::Options.new(config.adapter_options, defaults)
|
26
|
-
rescue
|
27
|
-
_log_exception 'adapter config failed: %s:%s called from: %s', caller
|
28
|
-
raise
|
29
|
-
end
|
30
|
-
|
31
|
-
# TODO: it's a separate method as a temporary workaround for tests
|
32
|
-
# rubocop:disable Metrics/MethodLength
|
33
|
-
def configure
|
34
|
-
if @configured
|
35
|
-
Listen.logger.warn('Adapter already configured!')
|
36
|
-
return
|
37
|
-
end
|
38
|
-
|
39
|
-
@configured = true
|
40
|
-
|
41
|
-
@callbacks ||= {}
|
42
|
-
config.directories.each do |dir|
|
43
|
-
callback = @callbacks[dir] || lambda do |event|
|
44
|
-
_process_event(dir, event)
|
45
|
-
end
|
46
|
-
@callbacks[dir] = callback
|
47
|
-
_configure(dir, &callback)
|
48
|
-
end
|
49
|
-
|
50
|
-
@snapshots ||= {}
|
51
|
-
# TODO: separate config per directory (some day maybe)
|
52
|
-
change_config = Change::Config.new(config.queue, config.silencer)
|
53
|
-
config.directories.each do |dir|
|
54
|
-
record = Record.new(dir, config.silencer)
|
55
|
-
snapshot = Change.new(change_config, record)
|
56
|
-
@snapshots[dir] = snapshot
|
57
|
-
end
|
58
|
-
end
|
59
|
-
# rubocop:enable Metrics/MethodLength
|
60
|
-
|
61
|
-
def started?
|
62
|
-
@started
|
63
|
-
end
|
64
|
-
|
65
|
-
def start
|
66
|
-
configure
|
67
|
-
|
68
|
-
if started?
|
69
|
-
Listen.logger.warn('Adapter already started!')
|
70
|
-
return
|
71
|
-
end
|
72
|
-
|
73
|
-
@started = true
|
74
|
-
|
75
|
-
@run_thread = Listen::Thread.new("run_thread") do
|
76
|
-
@snapshots.each_value do |snapshot|
|
77
|
-
_timed('Record.build()') { snapshot.record.build }
|
78
|
-
end
|
79
|
-
_run
|
80
|
-
end
|
81
|
-
end
|
82
|
-
|
83
|
-
def stop
|
84
|
-
_stop
|
85
|
-
config.queue.close # this causes queue.pop to return `nil` to the front-end
|
86
|
-
end
|
87
|
-
|
88
|
-
private
|
89
|
-
|
90
|
-
def _stop
|
91
|
-
@run_thread&.kill
|
92
|
-
@run_thread = nil
|
93
|
-
end
|
94
|
-
|
95
|
-
def _timed(title)
|
96
|
-
start = MonotonicTime.now
|
97
|
-
yield
|
98
|
-
diff = MonotonicTime.now - start
|
99
|
-
Listen.logger.info format('%s: %.05f seconds', title, diff)
|
100
|
-
rescue
|
101
|
-
Listen.logger.warn "#{title} crashed: #{$ERROR_INFO.inspect}"
|
102
|
-
raise
|
103
|
-
end
|
104
|
-
|
105
|
-
# TODO: allow backend adapters to pass specific invalidation objects
|
106
|
-
# e.g. Darwin -> DirRescan, INotify -> MoveScan, etc.
|
107
|
-
def _queue_change(type, dir, rel_path, options)
|
108
|
-
@snapshots[dir].invalidate(type, rel_path, options)
|
109
|
-
end
|
110
|
-
|
111
|
-
def _log_exception(msg, caller_stack)
|
112
|
-
formatted = format(
|
113
|
-
msg,
|
114
|
-
$ERROR_INFO,
|
115
|
-
$ERROR_POSITION * "\n",
|
116
|
-
caller_stack * "\n"
|
117
|
-
)
|
118
|
-
|
119
|
-
Listen.logger.error(formatted)
|
120
|
-
end
|
121
|
-
|
122
|
-
class << self
|
123
|
-
def usable?
|
124
|
-
const_get('OS_REGEXP') =~ RbConfig::CONFIG['target_os']
|
125
|
-
end
|
126
|
-
end
|
127
|
-
end
|
128
|
-
end
|
129
|
-
end
|