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,192 +0,0 @@
|
|
1
|
-
# Gyoku
|
2
|
-
|
3
|
-
Gyoku translates Ruby Hashes to XML.
|
4
|
-
|
5
|
-
``` ruby
|
6
|
-
Gyoku.xml(:find_user => { :id => 123, "v1:Key" => "api" })
|
7
|
-
# => "<findUser><id>123</id><v1:Key>api</v1:Key></findUser>"
|
8
|
-
```
|
9
|
-
|
10
|
-
[![Build Status](https://secure.travis-ci.org/savonrb/gyoku.png?branch=master)](http://travis-ci.org/savonrb/gyoku)
|
11
|
-
[![Gem Version](https://badge.fury.io/rb/gyoku.png)](http://badge.fury.io/rb/gyoku)
|
12
|
-
[![Code Climate](https://codeclimate.com/github/savonrb/gyoku.png)](https://codeclimate.com/github/savonrb/gyoku)
|
13
|
-
[![Coverage Status](https://coveralls.io/repos/savonrb/gyoku/badge.png?branch=master)](https://coveralls.io/r/savonrb/gyoku)
|
14
|
-
|
15
|
-
|
16
|
-
## Installation
|
17
|
-
|
18
|
-
Gyoku is available through [Rubygems](http://rubygems.org/gems/gyoku) and can be installed via:
|
19
|
-
|
20
|
-
``` bash
|
21
|
-
$ gem install gyoku
|
22
|
-
```
|
23
|
-
|
24
|
-
or add it to your Gemfile like this:
|
25
|
-
|
26
|
-
``` ruby
|
27
|
-
gem 'gyoku', '~> 1.0'
|
28
|
-
```
|
29
|
-
|
30
|
-
|
31
|
-
## Hash keys
|
32
|
-
|
33
|
-
Hash key Symbols are converted to lowerCamelCase Strings.
|
34
|
-
|
35
|
-
``` ruby
|
36
|
-
Gyoku.xml(:lower_camel_case => "key")
|
37
|
-
# => "<lowerCamelCase>key</lowerCamelCase>"
|
38
|
-
```
|
39
|
-
|
40
|
-
You can change the default conversion formula to `:camelcase`, `:upcase` or `:none`.
|
41
|
-
Note that options are passed as a second Hash to the `.xml` method.
|
42
|
-
|
43
|
-
``` ruby
|
44
|
-
Gyoku.xml({ :camel_case => "key" }, { :key_converter => :camelcase })
|
45
|
-
# => "<CamelCase>key</CamelCase>"
|
46
|
-
```
|
47
|
-
|
48
|
-
Hash key Strings are not converted and may contain namespaces.
|
49
|
-
|
50
|
-
``` ruby
|
51
|
-
Gyoku.xml("XML" => "key")
|
52
|
-
# => "<XML>key</XML>"
|
53
|
-
```
|
54
|
-
|
55
|
-
|
56
|
-
## Hash values
|
57
|
-
|
58
|
-
* DateTime objects are converted to xs:dateTime Strings
|
59
|
-
* Objects responding to :to_datetime (except Strings) are converted to xs:dateTime Strings
|
60
|
-
* TrueClass and FalseClass objects are converted to "true" and "false" Strings
|
61
|
-
* NilClass objects are converted to xsi:nil tags
|
62
|
-
* These conventions are also applied to the return value of objects responding to :call
|
63
|
-
* All other objects are converted to Strings using :to_s
|
64
|
-
|
65
|
-
|
66
|
-
## Special characters
|
67
|
-
|
68
|
-
Gyoku escapes special characters unless the Hash key ends with an exclamation mark.
|
69
|
-
|
70
|
-
``` ruby
|
71
|
-
Gyoku.xml(:escaped => "<tag />", :not_escaped! => "<tag />")
|
72
|
-
# => "<escaped><tag /></escaped><notEscaped><tag /></notEscaped>"
|
73
|
-
```
|
74
|
-
|
75
|
-
|
76
|
-
## Self-closing tags
|
77
|
-
|
78
|
-
Hash Keys ending with a forward slash create self-closing tags.
|
79
|
-
|
80
|
-
``` ruby
|
81
|
-
Gyoku.xml(:"self_closing/" => "", "selfClosing/" => nil)
|
82
|
-
# => "<selfClosing/><selfClosing/>"
|
83
|
-
```
|
84
|
-
|
85
|
-
|
86
|
-
## Sort XML tags
|
87
|
-
|
88
|
-
In case you need the XML tags to be in a specific order, you can specify the order
|
89
|
-
through an additional Array stored under the `:order!` key.
|
90
|
-
|
91
|
-
``` ruby
|
92
|
-
Gyoku.xml(:name => "Eve", :id => 1, :order! => [:id, :name])
|
93
|
-
# => "<id>1</id><name>Eve</name>"
|
94
|
-
```
|
95
|
-
|
96
|
-
|
97
|
-
## XML attributes
|
98
|
-
|
99
|
-
Adding XML attributes is rather ugly, but it can be done by specifying an additional
|
100
|
-
Hash stored under the`:attributes!` key.
|
101
|
-
|
102
|
-
``` ruby
|
103
|
-
Gyoku.xml(:person => "Eve", :attributes! => { :person => { :id => 1 } })
|
104
|
-
# => "<person id=\"1\">Eve</person>"
|
105
|
-
```
|
106
|
-
|
107
|
-
## Explicit XML Attributes
|
108
|
-
|
109
|
-
In addition to using the `:attributes!` key, you may also specify attributes through keys beginning with an "@" sign.
|
110
|
-
Since you'll need to set the attribute within the hash containing the node's contents, a `:content!` key can be used
|
111
|
-
to explicity set the content of the node. The `:content!` value may be a String, Hash, or Array.
|
112
|
-
|
113
|
-
This is particularly useful for self-closing tags.
|
114
|
-
|
115
|
-
**Using :attributes!**
|
116
|
-
|
117
|
-
``` ruby
|
118
|
-
Gyoku.xml(
|
119
|
-
"foo/" => "",
|
120
|
-
:attributes! => {
|
121
|
-
"foo/" => {
|
122
|
-
"bar" => "1",
|
123
|
-
"biz" => "2",
|
124
|
-
"baz" => "3"
|
125
|
-
}
|
126
|
-
}
|
127
|
-
)
|
128
|
-
# => "<foo baz=\"3\" bar=\"1\" biz=\"2\"/>"
|
129
|
-
```
|
130
|
-
|
131
|
-
**Using "@" keys and ":content!"**
|
132
|
-
|
133
|
-
``` ruby
|
134
|
-
Gyoku.xml(
|
135
|
-
"foo/" => {
|
136
|
-
:@bar => "1",
|
137
|
-
:@biz => "2",
|
138
|
-
:@baz => "3",
|
139
|
-
:content! => ""
|
140
|
-
})
|
141
|
-
# => "<foo baz=\"3\" bar=\"1\" biz=\"2\"/>"
|
142
|
-
```
|
143
|
-
|
144
|
-
**Example using "@" to get Array of parent tags each with @attributes & :content!**
|
145
|
-
|
146
|
-
``` ruby
|
147
|
-
Gyoku.xml(
|
148
|
-
"foo" => [
|
149
|
-
{:@name => "bar", :content! => 'gyoku'}
|
150
|
-
{:@name => "baz", :@some => "attr", :content! => 'rocks!'}
|
151
|
-
])
|
152
|
-
# => "<foo name=\"bar\">gyoku</foo><foo name=\"baz\" some=\"attr\">rocks!</foo>"
|
153
|
-
```
|
154
|
-
|
155
|
-
Naturally, it would ignore :content! if tag is self-closing:
|
156
|
-
|
157
|
-
``` ruby
|
158
|
-
Gyoku.xml(
|
159
|
-
"foo/" => [
|
160
|
-
{:@name => "bar", :content! => 'gyoku'}
|
161
|
-
{:@name => "baz", :@some => "attr", :content! => 'rocks!'}
|
162
|
-
])
|
163
|
-
# => "<foo name=\"bar\"/><foo name=\"baz\" some=\"attr\"/>"
|
164
|
-
```
|
165
|
-
|
166
|
-
This seems a bit more explicit with the attributes rather than having to maintain a hash of attributes.
|
167
|
-
|
168
|
-
For backward compatibility, `:attributes!` will still work. However, "@" keys will override `:attributes!` keys
|
169
|
-
if there is a conflict.
|
170
|
-
|
171
|
-
``` ruby
|
172
|
-
Gyoku.xml(:person => {:content! => "Adam", :@id! => 0})
|
173
|
-
# => "<person id=\"0\">Adam</person>"
|
174
|
-
```
|
175
|
-
|
176
|
-
**Example with ":content!", :attributes! and "@" keys**
|
177
|
-
|
178
|
-
``` ruby
|
179
|
-
Gyoku.xml({
|
180
|
-
:subtitle => {
|
181
|
-
:@lang => "en",
|
182
|
-
:content! => "It's Godzilla!"
|
183
|
-
},
|
184
|
-
:attributes! => { :subtitle => { "lang" => "jp" } }
|
185
|
-
}
|
186
|
-
# => "<subtitle lang=\"en\">It's Godzilla!</subtitle>"
|
187
|
-
```
|
188
|
-
|
189
|
-
The example above shows an example of how you can use all three at the same time.
|
190
|
-
|
191
|
-
Notice that we have the attribute "lang" defined twice.
|
192
|
-
The `@lang` value takes precedence over the `:attribute![:subtitle]["lang"]` value.
|
@@ -1,27 +0,0 @@
|
|
1
|
-
$:.push File.expand_path("../lib", __FILE__)
|
2
|
-
require "gyoku/version"
|
3
|
-
|
4
|
-
Gem::Specification.new do |s|
|
5
|
-
s.name = "gyoku"
|
6
|
-
s.version = Gyoku::VERSION
|
7
|
-
s.platform = Gem::Platform::RUBY
|
8
|
-
s.authors = "Daniel Harrington"
|
9
|
-
s.email = "me@rubiii.com"
|
10
|
-
s.homepage = "https://github.com/savonrb/#{s.name}"
|
11
|
-
s.summary = "Translates Ruby Hashes to XML"
|
12
|
-
s.description = "Gyoku translates Ruby Hashes to XML"
|
13
|
-
s.required_ruby_version = '>= 1.9.2'
|
14
|
-
|
15
|
-
s.rubyforge_project = "gyoku"
|
16
|
-
s.license = "MIT"
|
17
|
-
|
18
|
-
s.add_dependency "builder", ">= 2.1.2"
|
19
|
-
|
20
|
-
s.add_development_dependency "rake"
|
21
|
-
s.add_development_dependency "rspec"
|
22
|
-
|
23
|
-
s.files = `git ls-files`.split("\n")
|
24
|
-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
25
|
-
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
26
|
-
s.require_paths = ["lib"]
|
27
|
-
end
|
@@ -1,89 +0,0 @@
|
|
1
|
-
require "builder"
|
2
|
-
|
3
|
-
require "gyoku/hash"
|
4
|
-
require "gyoku/xml_value"
|
5
|
-
|
6
|
-
module Gyoku
|
7
|
-
class Array
|
8
|
-
|
9
|
-
NESTED_ELEMENT_NAME = "element"
|
10
|
-
|
11
|
-
# Translates a given +array+ to XML. Accepts the XML +key+ to add the elements to,
|
12
|
-
# whether to +escape_xml+ and an optional Hash of +attributes+.
|
13
|
-
def self.to_xml(array, key, escape_xml = true, attributes = {}, options = {})
|
14
|
-
|
15
|
-
self_closing = options.delete(:self_closing)
|
16
|
-
unwrap = options[:unwrap] || false
|
17
|
-
|
18
|
-
iterate_with_xml array, key, attributes, options do |xml, item, attrs, index|
|
19
|
-
if self_closing
|
20
|
-
xml.tag!(key, attrs)
|
21
|
-
else
|
22
|
-
case item
|
23
|
-
when ::Hash then
|
24
|
-
if unwrap
|
25
|
-
xml << Hash.to_xml(item, options)
|
26
|
-
else
|
27
|
-
xml.tag!(key, attrs) { xml << Hash.to_xml(item, options) }
|
28
|
-
end
|
29
|
-
when ::Array then
|
30
|
-
xml.tag!(key, attrs) { xml << Array.to_xml(item, NESTED_ELEMENT_NAME) }
|
31
|
-
when NilClass then
|
32
|
-
xml.tag!(key, "xsi:nil" => "true")
|
33
|
-
else
|
34
|
-
xml.tag!(key, attrs) { xml << XMLValue.create(item, escape_xml) }
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
private
|
41
|
-
|
42
|
-
# Iterates over a given +array+ with a Hash of +attributes+ and yields a builder +xml+
|
43
|
-
# instance, the current +item+, any XML +attributes+ and the current +index+.
|
44
|
-
def self.iterate_with_xml(array, key, attributes, options, &block)
|
45
|
-
|
46
|
-
xml = Builder::XmlMarkup.new
|
47
|
-
unwrap = options[:unwrap] || false
|
48
|
-
|
49
|
-
if (unwrap)
|
50
|
-
xml.tag!(key) { iterate_array(xml, array, attributes, &block) }
|
51
|
-
else
|
52
|
-
iterate_array(xml, array, attributes, &block)
|
53
|
-
end
|
54
|
-
|
55
|
-
xml.target!
|
56
|
-
end
|
57
|
-
|
58
|
-
|
59
|
-
# Iterates over a given +array+ with a Hash of +attributes+ and yields a builder +xml+
|
60
|
-
# instance, the current +item+, any XML +attributes+ and the current +index+.
|
61
|
-
def self.iterate_array(xml, array, attributes, &block)
|
62
|
-
array.each_with_index do |item, index|
|
63
|
-
if item.respond_to?(:keys)
|
64
|
-
attrs = item.reduce({}) do |st, v|
|
65
|
-
k = v[0].to_s
|
66
|
-
st[k[1..-1]] = v[1].to_s if k =~ /^@/
|
67
|
-
st
|
68
|
-
end
|
69
|
-
else
|
70
|
-
attrs = {}
|
71
|
-
end
|
72
|
-
yield xml, item, tag_attributes(attributes, index).merge(attrs), index
|
73
|
-
end
|
74
|
-
end
|
75
|
-
|
76
|
-
|
77
|
-
# Takes a Hash of +attributes+ and the +index+ for which to return attributes
|
78
|
-
# for duplicate tags.
|
79
|
-
def self.tag_attributes(attributes, index)
|
80
|
-
return {} if attributes.empty?
|
81
|
-
|
82
|
-
attributes.inject({}) do |hash, (key, value)|
|
83
|
-
value = value[index] if value.kind_of? ::Array
|
84
|
-
value ? hash.merge(key => value) : hash
|
85
|
-
end
|
86
|
-
end
|
87
|
-
|
88
|
-
end
|
89
|
-
end
|
@@ -1,85 +0,0 @@
|
|
1
|
-
require "builder"
|
2
|
-
|
3
|
-
require "gyoku/array"
|
4
|
-
require "gyoku/xml_key"
|
5
|
-
require "gyoku/xml_value"
|
6
|
-
|
7
|
-
module Gyoku
|
8
|
-
class Hash
|
9
|
-
|
10
|
-
# Translates a given +hash+ with +options+ to XML.
|
11
|
-
def self.to_xml(hash, options = {})
|
12
|
-
iterate_with_xml hash do |xml, key, value, attributes|
|
13
|
-
self_closing = key.to_s[-1, 1] == "/"
|
14
|
-
escape_xml = key.to_s[-1, 1] != "!"
|
15
|
-
xml_key = XMLKey.create key, options
|
16
|
-
|
17
|
-
case
|
18
|
-
when :content! === key then xml << XMLValue.create(value, escape_xml, options)
|
19
|
-
when ::Array === value then xml << Array.to_xml(value, xml_key, escape_xml, attributes, options.merge(:self_closing => self_closing))
|
20
|
-
when ::Hash === value then xml.tag!(xml_key, attributes) { xml << Hash.to_xml(value, options) }
|
21
|
-
when self_closing then xml.tag!(xml_key, attributes)
|
22
|
-
when NilClass === value then xml.tag!(xml_key, "xsi:nil" => "true")
|
23
|
-
else xml.tag!(xml_key, attributes) { xml << XMLValue.create(value, escape_xml, options) }
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
private
|
29
|
-
|
30
|
-
# Iterates over a given +hash+ and yields a builder +xml+ instance, the current
|
31
|
-
# Hash +key+ and any XML +attributes+.
|
32
|
-
#
|
33
|
-
# Keys beginning with "@" are treated as explicit attributes for their container.
|
34
|
-
# You can use both :attributes! and "@" keys to specify attributes.
|
35
|
-
# In the event of a conflict, the "@" key takes precedence.
|
36
|
-
def self.iterate_with_xml(hash)
|
37
|
-
xml = Builder::XmlMarkup.new
|
38
|
-
attributes = hash[:attributes!] || {}
|
39
|
-
hash_without_attributes = hash.reject { |key, value| key == :attributes! }
|
40
|
-
|
41
|
-
order(hash_without_attributes).each do |key|
|
42
|
-
node_attr = attributes[key] || {}
|
43
|
-
# node_attr must be kind of ActiveSupport::HashWithIndifferentAccess
|
44
|
-
node_attr = ::Hash[node_attr.map { |k,v| [k.to_s, v] }]
|
45
|
-
node_value = hash[key].respond_to?(:keys) ? hash[key].clone : hash[key]
|
46
|
-
|
47
|
-
if node_value.respond_to?(:keys)
|
48
|
-
explicit_keys = node_value.keys.select{|k| k.to_s =~ /^@/ }
|
49
|
-
explicit_attr = {}
|
50
|
-
explicit_keys.each{|k| explicit_attr[k.to_s[1..-1]] = node_value[k]}
|
51
|
-
node_attr.merge!(explicit_attr)
|
52
|
-
explicit_keys.each{|k| node_value.delete(k) }
|
53
|
-
|
54
|
-
tmp_node_value = node_value.delete(:content!)
|
55
|
-
node_value = tmp_node_value unless tmp_node_value.nil?
|
56
|
-
node_value = "" if node_value.respond_to?(:empty?) && node_value.empty?
|
57
|
-
end
|
58
|
-
|
59
|
-
yield xml, key, node_value, node_attr
|
60
|
-
end
|
61
|
-
|
62
|
-
xml.target!
|
63
|
-
end
|
64
|
-
|
65
|
-
# Deletes and returns an Array of keys stored under the :order! key of a given +hash+.
|
66
|
-
# Defaults to return the actual keys of the Hash if no :order! key could be found.
|
67
|
-
# Raises an ArgumentError in case the :order! Array does not match the Hash keys.
|
68
|
-
def self.order(hash)
|
69
|
-
order = hash[:order!] || hash.delete('order!')
|
70
|
-
hash_without_order = hash.reject { |key, value| key == :order! }
|
71
|
-
order = hash_without_order.keys unless order.kind_of? ::Array
|
72
|
-
|
73
|
-
# Ignore Explicit Attributes
|
74
|
-
orderable = order.delete_if{|k| k.to_s =~ /^@/ }
|
75
|
-
hashable = hash_without_order.keys.select{|k| !(k.to_s =~ /^@/) }
|
76
|
-
|
77
|
-
missing, spurious = hashable - orderable, orderable - hashable
|
78
|
-
raise ArgumentError, "Missing elements in :order! #{missing.inspect}" unless missing.empty?
|
79
|
-
raise ArgumentError, "Spurious elements in :order! #{spurious.inspect}" unless spurious.empty?
|
80
|
-
|
81
|
-
order
|
82
|
-
end
|
83
|
-
|
84
|
-
end
|
85
|
-
end
|
@@ -1,69 +0,0 @@
|
|
1
|
-
module Gyoku
|
2
|
-
module XMLKey
|
3
|
-
class << self
|
4
|
-
|
5
|
-
CAMELCASE = lambda { |key| key.gsub(/\/(.?)/) { |m| "::#{m.split('').last.upcase}" }.gsub(/(?:^|_)(.)/) { |m| m.split('').last.upcase } }
|
6
|
-
LOWER_CAMELCASE = lambda { |key| key[0].chr.downcase + CAMELCASE.call(key)[1..-1] }
|
7
|
-
UPCASE = lambda { |key| key.upcase }
|
8
|
-
|
9
|
-
FORMULAS = {
|
10
|
-
:lower_camelcase => lambda { |key| LOWER_CAMELCASE.call(key) },
|
11
|
-
:camelcase => lambda { |key| CAMELCASE.call(key) },
|
12
|
-
:upcase => lambda { |key| UPCASE.call(key) },
|
13
|
-
:none => lambda { |key| key }
|
14
|
-
}
|
15
|
-
|
16
|
-
# Converts a given +object+ with +options+ to an XML key.
|
17
|
-
def create(key, options = {})
|
18
|
-
xml_key = chop_special_characters key.to_s
|
19
|
-
|
20
|
-
if unqualified = unqualify?(xml_key)
|
21
|
-
xml_key = xml_key.split(":").last
|
22
|
-
end
|
23
|
-
|
24
|
-
xml_key = key_converter(options, xml_key).call(xml_key) if Symbol === key
|
25
|
-
|
26
|
-
if !unqualified && qualify?(options) && !xml_key.include?(":")
|
27
|
-
xml_key = "#{options[:namespace]}:#{xml_key}"
|
28
|
-
end
|
29
|
-
|
30
|
-
xml_key
|
31
|
-
end
|
32
|
-
|
33
|
-
private
|
34
|
-
|
35
|
-
# Returns the formula for converting Symbol keys.
|
36
|
-
def key_converter(options, xml_key)
|
37
|
-
return options[:key_converter] if options[:key_converter].is_a? Proc
|
38
|
-
|
39
|
-
defined_key = options[:key_to_convert]
|
40
|
-
if (defined_key != nil) && (defined_key == xml_key)
|
41
|
-
key_converter = options[:key_converter]
|
42
|
-
elsif defined_key != nil
|
43
|
-
key_converter = :lower_camelcase
|
44
|
-
elsif (options[:except] == xml_key)
|
45
|
-
key_converter = :lower_camelcase
|
46
|
-
else
|
47
|
-
key_converter = options[:key_converter] || :lower_camelcase
|
48
|
-
end
|
49
|
-
FORMULAS[key_converter]
|
50
|
-
end
|
51
|
-
|
52
|
-
# Chops special characters from the end of a given +string+.
|
53
|
-
def chop_special_characters(string)
|
54
|
-
["!", "/"].include?(string[-1, 1]) ? string.chop : string
|
55
|
-
end
|
56
|
-
|
57
|
-
# Returns whether to remove the namespace from a given +key+.
|
58
|
-
def unqualify?(key)
|
59
|
-
key[0, 1] == ":"
|
60
|
-
end
|
61
|
-
|
62
|
-
# Returns whether to namespace all keys (elementFormDefault).
|
63
|
-
def qualify?(options)
|
64
|
-
options[:element_form_default] == :qualified && options[:namespace]
|
65
|
-
end
|
66
|
-
|
67
|
-
end
|
68
|
-
end
|
69
|
-
end
|
@@ -1,40 +0,0 @@
|
|
1
|
-
require "cgi"
|
2
|
-
require "date"
|
3
|
-
|
4
|
-
module Gyoku
|
5
|
-
module XMLValue
|
6
|
-
class << self
|
7
|
-
|
8
|
-
# xs:date format
|
9
|
-
XS_DATE_FORMAT = "%Y-%m-%d"
|
10
|
-
|
11
|
-
# xs:time format
|
12
|
-
XS_TIME_FORMAT = "%H:%M:%S"
|
13
|
-
|
14
|
-
# xs:dateTime format
|
15
|
-
XS_DATETIME_FORMAT = "%Y-%m-%dT%H:%M:%S%Z"
|
16
|
-
|
17
|
-
# Converts a given +object+ to an XML value.
|
18
|
-
def create(object, escape_xml = true, options = {})
|
19
|
-
if Time === object
|
20
|
-
object.strftime XS_TIME_FORMAT
|
21
|
-
elsif DateTime === object
|
22
|
-
object.strftime XS_DATETIME_FORMAT
|
23
|
-
elsif Date === object
|
24
|
-
object.strftime XS_DATE_FORMAT
|
25
|
-
elsif String === object
|
26
|
-
escape_xml ? CGI.escapeHTML(object) : object
|
27
|
-
elsif object.respond_to?(:to_datetime)
|
28
|
-
create object.to_datetime
|
29
|
-
elsif object.respond_to?(:call)
|
30
|
-
create object.call
|
31
|
-
elsif ::Hash === object
|
32
|
-
Gyoku::Hash.to_xml(object, options)
|
33
|
-
else
|
34
|
-
object.to_s
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
end
|
39
|
-
end
|
40
|
-
end
|
@@ -1,16 +0,0 @@
|
|
1
|
-
require "gyoku/version"
|
2
|
-
require "gyoku/hash"
|
3
|
-
|
4
|
-
module Gyoku
|
5
|
-
|
6
|
-
# Converts a given Hash +key+ with +options+ into an XML tag.
|
7
|
-
def self.xml_tag(key, options = {})
|
8
|
-
XMLKey.create(key, options)
|
9
|
-
end
|
10
|
-
|
11
|
-
# Translates a given +hash+ with +options+ to XML.
|
12
|
-
def self.xml(hash, options = {})
|
13
|
-
Hash.to_xml hash.dup, options
|
14
|
-
end
|
15
|
-
|
16
|
-
end
|
@@ -1,74 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Gyoku::Array do
|
4
|
-
|
5
|
-
describe ".to_xml" do
|
6
|
-
it "returns the XML for an Array of Hashes" do
|
7
|
-
array = [{ :name => "adam" }, { :name => "eve" }]
|
8
|
-
result = "<user><name>adam</name></user><user><name>eve</name></user>"
|
9
|
-
|
10
|
-
expect(to_xml(array, "user")).to eq(result)
|
11
|
-
end
|
12
|
-
|
13
|
-
it "returns the XML for an Array of Hashes unwrapped" do
|
14
|
-
array = [{ :name => "adam" }, { :name => "eve" }]
|
15
|
-
result = "<user><name>adam</name><name>eve</name></user>"
|
16
|
-
|
17
|
-
expect(to_xml(array, "user", true, {}, :unwrap => true)).to eq(result)
|
18
|
-
end
|
19
|
-
|
20
|
-
it "returns the XML for an Array of different Objects" do
|
21
|
-
array = [:symbol, "string", 123]
|
22
|
-
result = "<value>symbol</value><value>string</value><value>123</value>"
|
23
|
-
|
24
|
-
expect(to_xml(array, "value")).to eq(result)
|
25
|
-
end
|
26
|
-
|
27
|
-
it "defaults to escape special characters" do
|
28
|
-
array = ["<tag />", "adam & eve"]
|
29
|
-
result = "<value><tag /></value><value>adam & eve</value>"
|
30
|
-
|
31
|
-
expect(to_xml(array, "value")).to eq(result)
|
32
|
-
end
|
33
|
-
|
34
|
-
it "does not escape special characters when told to" do
|
35
|
-
array = ["<tag />", "adam & eve"]
|
36
|
-
result = "<value><tag /></value><value>adam & eve</value>"
|
37
|
-
|
38
|
-
expect(to_xml(array, "value", false)).to eq(result)
|
39
|
-
end
|
40
|
-
|
41
|
-
it "adds attributes to a given tag" do
|
42
|
-
array = ["adam", "eve"]
|
43
|
-
result = '<value active="true">adam</value><value active="true">eve</value>'
|
44
|
-
|
45
|
-
expect(to_xml(array, "value", :escape_xml, :active => true)).to eq(result)
|
46
|
-
end
|
47
|
-
|
48
|
-
it "adds attributes to duplicate tags" do
|
49
|
-
array = ["adam", "eve"]
|
50
|
-
result = '<value id="1">adam</value><value id="2">eve</value>'
|
51
|
-
|
52
|
-
expect(to_xml(array, "value", :escape_xml, :id => [1, 2])).to eq(result)
|
53
|
-
end
|
54
|
-
|
55
|
-
it "skips attribute for element without attributes if there are fewer attributes than elements" do
|
56
|
-
array = ["adam", "eve", "serpent"]
|
57
|
-
result = '<value id="1">adam</value><value id="2">eve</value><value>serpent</value>'
|
58
|
-
|
59
|
-
expect(to_xml(array, "value", :escape_xml, :id => [1, 2])).to eq(result)
|
60
|
-
end
|
61
|
-
|
62
|
-
it "handles nested Arrays" do
|
63
|
-
array = [["one", "two"]]
|
64
|
-
result = "<value><element>one</element><element>two</element></value>"
|
65
|
-
|
66
|
-
expect(to_xml(array, "value")).to eq(result)
|
67
|
-
end
|
68
|
-
end
|
69
|
-
|
70
|
-
def to_xml(*args)
|
71
|
-
Gyoku::Array.to_xml *args
|
72
|
-
end
|
73
|
-
|
74
|
-
end
|