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,175 +0,0 @@
|
|
1
|
-
= Loggers
|
2
|
-
|
3
|
-
Loggers provide the interface for logging in Log4r. To create a logger,
|
4
|
-
first come up with a name for it. Good choices include the name of the
|
5
|
-
class using it, a service name, or the name of the file.
|
6
|
-
|
7
|
-
To create a logger named 'mylog':
|
8
|
-
|
9
|
-
Logger.new('mylog')
|
10
|
-
|
11
|
-
After creating a logger, it is stashed in a repository. The logger may
|
12
|
-
be retrieved at any time:
|
13
|
-
|
14
|
-
Logger['mylog'] # get mylog back
|
15
|
-
|
16
|
-
It will return nil if the logger is not found. Alternatively, if an
|
17
|
-
Exception is desired when a nonexistant logger is referenced, the Logger#get
|
18
|
-
command can be used:
|
19
|
-
|
20
|
-
Logger.get('boguslog') # raises NameError if it doesn't exist
|
21
|
-
|
22
|
-
== Manipulating a Logger's Outputters
|
23
|
-
|
24
|
-
Loggers start out with no outputters. They can be added using the
|
25
|
-
Logger#add method or set directly by modifying the Loggers#outputters array:
|
26
|
-
|
27
|
-
mylog = Logger['mylog']
|
28
|
-
|
29
|
-
# assume we've created Outputters out1 through out4
|
30
|
-
mylog.outputters = out1, out2
|
31
|
-
mylog.add(out3, out4)
|
32
|
-
mylog.each_outputter {|o| o.flush}
|
33
|
-
|
34
|
-
# assume out5 through out7 have names 'out5' through 'out7' resp.
|
35
|
-
mylog.outputters = 'out5', 'out6'
|
36
|
-
mylog.add('out7')
|
37
|
-
mylog.remove('out5','out7')
|
38
|
-
|
39
|
-
Please see log4r/outputter/outputter.rb and Log4r::Outputter for more about
|
40
|
-
outputters.
|
41
|
-
|
42
|
-
== Logging Methods
|
43
|
-
|
44
|
-
To log something at a certain priority, use the logging method named
|
45
|
-
after the lowercased priority level name:
|
46
|
-
|
47
|
-
mylog.warn "This is a message with priority WARN"
|
48
|
-
mylog.fatal "A FATAL message"
|
49
|
-
|
50
|
-
Blocks can also be logged:
|
51
|
-
|
52
|
-
mylog.warn {"This is also a message with priority WARN"}
|
53
|
-
mylog.debug do
|
54
|
-
# some complicated string magic
|
55
|
-
return result
|
56
|
-
end
|
57
|
-
|
58
|
-
The primary difference is that the block doesn't get called unless
|
59
|
-
the Logger can log at that level. It is useful for doing computationaly
|
60
|
-
expensive things at a log event.
|
61
|
-
|
62
|
-
== Query Methods
|
63
|
-
|
64
|
-
To ask Log4r whether it is capable of logging a certain level:
|
65
|
-
|
66
|
-
mylog.warn? # are we logging WARN?
|
67
|
-
mylog.fatal? # how about FATAL?
|
68
|
-
|
69
|
-
Query methods and blocks accomplish the same thing:
|
70
|
-
|
71
|
-
mylog.warn "don't evaluate unless WARN is on" if mylog.warn?
|
72
|
-
mylog.warn {"don't evaluate unless WARN is on"}
|
73
|
-
|
74
|
-
== What About the Special Levels?
|
75
|
-
|
76
|
-
<tt>ALL</tt> and <tt>OFF</tt> can be querried, but not logged:
|
77
|
-
|
78
|
-
log.off? # true iff level is OFF
|
79
|
-
log.all? # true iff level is ALL
|
80
|
-
log.all "Try to log" => Method not defined. (NameError)
|
81
|
-
|
82
|
-
== Custom Levels and Method Names
|
83
|
-
|
84
|
-
Suppose we've set up Log4r with the custom levels:
|
85
|
-
|
86
|
-
Foo < Bar < Baz
|
87
|
-
|
88
|
-
As one might expect, the logging methods are named after them:
|
89
|
-
|
90
|
-
log.bar "something" # log at custom level Bar
|
91
|
-
log.bar? # are we logging at level Bar?
|
92
|
-
|
93
|
-
= Logger Inheritance
|
94
|
-
|
95
|
-
Normally, when a logger is created, its parent is set to RootLogger.
|
96
|
-
If a Logger's level isn't specified at creation, it will inherit the level
|
97
|
-
of its parent.
|
98
|
-
|
99
|
-
To specify an ancestors of a logger besides RootLogger, include the names
|
100
|
-
of the ancestors in order of ancestry and delimited by
|
101
|
-
Log4r::Log4rConfig::LoggerPathDelimiter. For example, if the
|
102
|
-
delimiter is the default <tt>::</tt>, our logger is 'me'
|
103
|
-
and its ancestors are 'cain', 'grandpa', and 'pa', we create the logger
|
104
|
-
like so:
|
105
|
-
|
106
|
-
Logger.new('cain::grandpa::pa::me')
|
107
|
-
|
108
|
-
This string is split into three compontents which can be used
|
109
|
-
by a Formatter to avoid parsing the name:
|
110
|
-
|
111
|
-
Logger#fullname:: The whole enchilada: 'cain::grandpa::pa::me'
|
112
|
-
Logger#name:: Just 'me'
|
113
|
-
|
114
|
-
To get this logger back from the repository,
|
115
|
-
|
116
|
-
Logger['cain::grandpa::pa::me']
|
117
|
-
|
118
|
-
= Outputter Additivity
|
119
|
-
|
120
|
-
By default, Logger Outputters are <b>additive</b>. This means that
|
121
|
-
a log event will also be sent to all of a logger's ancestors. To
|
122
|
-
stop this behavior, set a logger's +additive+ to false.
|
123
|
-
|
124
|
-
Logger['foo'].additive = false
|
125
|
-
|
126
|
-
A Logger's level, additivity and trace can be changed dynamically,
|
127
|
-
but this is an expensive operation as the logging methods have to be
|
128
|
-
redefined.
|
129
|
-
|
130
|
-
= RootLogger
|
131
|
-
|
132
|
-
Log4r::RootLogger is the ancestor of all loggers. Its level defines the global
|
133
|
-
logging threshold. Any loggers created <b>after</b> RootLogger's level is
|
134
|
-
set will not log below that level. By default, RootLogger's level is set
|
135
|
-
to <tt>ALL</tt>
|
136
|
-
|
137
|
-
RootLogger is a singleton which gets created automaticallay. It can be
|
138
|
-
retrieved at any time with Logger.root, Logger.global,
|
139
|
-
Logger['root'] or Logger['global'].
|
140
|
-
|
141
|
-
== Global Level
|
142
|
-
|
143
|
-
Suppose we want _everything_ to ignore events less than FATAL. We can
|
144
|
-
accomplish this easily:
|
145
|
-
|
146
|
-
Logger.global.level = FATAL
|
147
|
-
|
148
|
-
Just be sure to set this before any other Loggers or Outputters are defined.
|
149
|
-
|
150
|
-
== RootLogger Does Nothing
|
151
|
-
|
152
|
-
RootLogger itself behaves as if its level were permanently set to
|
153
|
-
<tt>OFF</tt>, thus making it a sort of null object.
|
154
|
-
|
155
|
-
= XML Configuration
|
156
|
-
|
157
|
-
Please see log4r/configurator.rb for an overview of XML configuratoin.
|
158
|
-
|
159
|
-
It's easy to configure a Logger in XML. The following example should be
|
160
|
-
sufficient:
|
161
|
-
|
162
|
-
...
|
163
|
-
<logger name="papa::mylog" level="DEBUG" trace="true">
|
164
|
-
<additive>false</additive>
|
165
|
-
<outputter>stdout</outputter>
|
166
|
-
<outputters>stderr, dancer, doner, blitzen</outputters>
|
167
|
-
</logger>
|
168
|
-
<logger name="papa" outputters="stderr, stdout"/>
|
169
|
-
...
|
170
|
-
|
171
|
-
The element +outputter+ can occur multiple times, but cannot be an attribute
|
172
|
-
of +logger+. That is, it is not an <i>XML directive</i>. However, the element
|
173
|
-
+outputters+ is an <i>XML directive</i>, as are all the others.
|
174
|
-
|
175
|
-
For more examples, check the <tt>examples</tt> directory in the Log4r package.
|
@@ -1,85 +0,0 @@
|
|
1
|
-
= Remote Logging
|
2
|
-
|
3
|
-
Want to use Log4r over a network? No problem! A Log4r::RemoteOutputter will
|
4
|
-
send its LogEvents to a Log4r::LogServer. These two classes are as easy to
|
5
|
-
set up and use as the rest of Log4r.
|
6
|
-
|
7
|
-
== Use ROMP
|
8
|
-
|
9
|
-
There is one catch though: ROMP is required to use this service. It is a
|
10
|
-
DRb-like system with superb performance and better features. Get ROMP at
|
11
|
-
http://rubystuff.org/romp/
|
12
|
-
|
13
|
-
== LogServer
|
14
|
-
|
15
|
-
LogServer is simply a kind of Logger which embeds a ROMP::Server. Like a
|
16
|
-
normal Logger, you can give it Outputters, set its level and so on. Its
|
17
|
-
logging methods are accessible over a network and are called by a
|
18
|
-
RemoteOutputter on another host.
|
19
|
-
|
20
|
-
=== LogServer Setup
|
21
|
-
|
22
|
-
Setup is easy. First,
|
23
|
-
|
24
|
-
require 'log4r/logserver'
|
25
|
-
|
26
|
-
The following sets up a LogServer named 'central' on localhost port 9999:
|
27
|
-
|
28
|
-
LogServer.new('central', 'tcpromp://localhost:9999')
|
29
|
-
|
30
|
-
We manipulate it and give it outputters as normal:
|
31
|
-
|
32
|
-
serv = Logger['central'] # grab our new LogServer
|
33
|
-
serv.add 'stdout' # make it log to $stdout
|
34
|
-
|
35
|
-
== RemoteOutputter
|
36
|
-
|
37
|
-
RemoteOutputter is simply a kind of Outputter that embeds a ROMP::Client. When
|
38
|
-
RemoteOutputter gets a LogEvent, it will forward it to whatever LogServer it's
|
39
|
-
connected to. In essence, RemoteOutputter behaves like a Logger that is
|
40
|
-
forwarding a LogEvent to another Logger (as is done in hierarchical logging).
|
41
|
-
|
42
|
-
=== RemoteOutputter Setup
|
43
|
-
|
44
|
-
First,
|
45
|
-
|
46
|
-
require 'log4r/outputter/remoteoutputter'
|
47
|
-
|
48
|
-
Unlike typical outputters, RemoteOutputter doesn't do any formatting. That's
|
49
|
-
up to the LogServer's outputters. Otherwise, RemoteOutputter can be
|
50
|
-
set up as usual. The ROMP uri of the LogServer must be specified.
|
51
|
-
|
52
|
-
RemoteOutputter.new 'client', :uri=>'tcpromp://localhost:9999'
|
53
|
-
|
54
|
-
=== Using RemoteOutputter
|
55
|
-
|
56
|
-
Give our new RemoteOutputter to a logger:
|
57
|
-
|
58
|
-
mylog = Logger['mylog']
|
59
|
-
mylog.add 'client'
|
60
|
-
|
61
|
-
Now, whenever mylog generates a LogEvent, LogServer should get a copy. Doing
|
62
|
-
the following:
|
63
|
-
|
64
|
-
mylog.info "This is a message from 'mylog'"
|
65
|
-
|
66
|
-
Produces this output on LogServer's console:
|
67
|
-
|
68
|
-
INFO mylog: This is a message from 'mylog'
|
69
|
-
|
70
|
-
== XML Configuration
|
71
|
-
|
72
|
-
RemoteOutputter is set up like normal Outputters. LogServer is set up
|
73
|
-
like a normal Logger, but with an element name of logserver instead of
|
74
|
-
logger:
|
75
|
-
|
76
|
-
<log4r_config>
|
77
|
-
<logserver name="name" uri="tcpromp://localhost:9999">
|
78
|
-
...
|
79
|
-
|
80
|
-
== Debugging
|
81
|
-
|
82
|
-
It is recommended to set up a logger named 'log4r' on both the server and
|
83
|
-
client to see what LogServer and RemoteOutputter are up to. Both of the classes
|
84
|
-
use Log4r's internal logging to report any problems. See the section
|
85
|
-
<b>What's Going on Inside?</b> in log4r.rb for more info.
|
@@ -1,108 +0,0 @@
|
|
1
|
-
= Outputters
|
2
|
-
|
3
|
-
An Outputter is a logging destination with a particular way to format
|
4
|
-
data. It has a level threshold and a flexible level mask.
|
5
|
-
|
6
|
-
Outputters must have names.
|
7
|
-
|
8
|
-
== Level Threshold
|
9
|
-
|
10
|
-
Outputters have their own level thresholds that default to <tt>root</tt>
|
11
|
-
level. They will not write any log events with a rank less than their
|
12
|
-
threshold.
|
13
|
-
|
14
|
-
== Level Mask
|
15
|
-
|
16
|
-
Alternatively, an Outputter can be told to log specific levels only:
|
17
|
-
|
18
|
-
o = StdoutOutputter.new 'console'
|
19
|
-
o.only_at DEBUG, FATAL # only DEBUG and FATAL get written
|
20
|
-
|
21
|
-
== Outputter Repository
|
22
|
-
|
23
|
-
When outputters are created, they store themselves in an Outputter
|
24
|
-
repository similar to the Logger repository.
|
25
|
-
|
26
|
-
StdoutOutputter.new 'console' => Create 'console' outputter
|
27
|
-
Outputter['console'] => Get it back from the stash.
|
28
|
-
|
29
|
-
== Formatter
|
30
|
-
|
31
|
-
An outputter has a format defined by its Formatter. If no Formatter
|
32
|
-
is specified, DefaultFormatter will be used.
|
33
|
-
|
34
|
-
== Outputter is Abstract
|
35
|
-
|
36
|
-
The basic Outputter class is both abstract and a null object.
|
37
|
-
|
38
|
-
== Interesting Outputters
|
39
|
-
|
40
|
-
* log4r/outputter/syslogoutputter.rb - Logs to syslog
|
41
|
-
* log4r/outputter/emailoutputter.rb - Email logs
|
42
|
-
* log4r/logserver.rb - For remote logging
|
43
|
-
|
44
|
-
== Subclasses
|
45
|
-
|
46
|
-
* Log4r::IOOutputter - for any IO object
|
47
|
-
* Log4r::StdoutOutputter - $stdout
|
48
|
-
* Log4r::StderrOutputter - $stderr
|
49
|
-
* Log4r::FileOutputter - log to a file
|
50
|
-
* Log4r::RollingFileOutputter - log to a file and split it as it grows
|
51
|
-
* Log4r::SyslogOutputter - logs to syslog
|
52
|
-
* Log4r::EmailOutputter - email logs
|
53
|
-
* Log4r::RemoteOutputter - for remote logging
|
54
|
-
|
55
|
-
== Default Outputters
|
56
|
-
|
57
|
-
Two outputters named 'stdout' and 'stderr' are created automatically at
|
58
|
-
the root level. They are nice shortcuts.
|
59
|
-
|
60
|
-
Outputter['stdout'] => 'stdout'
|
61
|
-
Outputter['stderr'] => 'stderr'
|
62
|
-
Outputter.stdout => 'stdout'
|
63
|
-
Outputter.stderr => 'stderr'
|
64
|
-
|
65
|
-
== Configuring
|
66
|
-
|
67
|
-
Outputters must have names and receive hash arguments. The parameter name
|
68
|
-
for the hash args can be either a symbol or a string. All defined outputters
|
69
|
-
accept <tt>:level</tt> and <tt>:formatter</tt> arguments. For arguments
|
70
|
-
specific to a convenience Outputter, please look at the class description.
|
71
|
-
|
72
|
-
The level threshold, the levels to log at (only_at) and formatter can be
|
73
|
-
changed dynamically using the <tt>=</tt> methods.
|
74
|
-
|
75
|
-
As a collective example of all this, here are various ways to set up an
|
76
|
-
IOOutputter:
|
77
|
-
|
78
|
-
IOOutputter.new ExoticIO.new 'exotic', 'level' => WARN,
|
79
|
-
:formatter => MyFormatter.new
|
80
|
-
# an equivalent way:
|
81
|
-
o = IOOutputter.new ExoticIO.new 'exotic'
|
82
|
-
o.level = WARN
|
83
|
-
o.formatter = MyFormatter # we can specify just the class
|
84
|
-
o.only_at = THIS, THAT
|
85
|
-
|
86
|
-
== XML Configuration
|
87
|
-
|
88
|
-
Specify outputters as children of <tt><log4r_config></tt>:
|
89
|
-
|
90
|
-
<log4r_config>
|
91
|
-
<outputter name="myout" type="Log4r::StdoutOutputter">
|
92
|
-
<only_at>DEBUG, INFO</only_at>
|
93
|
-
</outputter>
|
94
|
-
<outputter name="file" level="WARN">
|
95
|
-
<type>FileOutputter</type>
|
96
|
-
<filename>#{logpath}/file.log</filename>
|
97
|
-
<trunc>false</trunc>
|
98
|
-
</outputter>
|
99
|
-
...
|
100
|
-
|
101
|
-
As explained in log4r/configurator.rb, the hash arguments you would normally
|
102
|
-
pass to <tt>new</tt> are specified as <i>XML parameters</i>.
|
103
|
-
It is given an IO object to write
|
104
|
-
to, a Formatter to call, and, optionally, levels to write at.
|
105
|
-
|
106
|
-
Outputters invoke print then flush on the wrapped IO object.
|
107
|
-
If the IO chokes, the Outputter will close the IO and set its
|
108
|
-
level to <tt>OFF</tt>.
|
@@ -1,128 +0,0 @@
|
|
1
|
-
= PatternFormatter
|
2
|
-
|
3
|
-
PatternFormatter offers complete control over the appearance of
|
4
|
-
Log4r log events without having to write custom Formatter classes.
|
5
|
-
In order to take advantage of PatternFormatter, some familarity with
|
6
|
-
Kernel#sprintf or the C printf function is recommended. For time formatting,
|
7
|
-
please look at Time.strftime.
|
8
|
-
|
9
|
-
PatternFormatter accepts three hash arguments:
|
10
|
-
|
11
|
-
<tt>pattern</tt>:: Log event format string.
|
12
|
-
<tt>date_pattern</tt>:: Date format string.
|
13
|
-
<tt>date_method</tt>:: <tt>Time</tt> method to call (instead of using date_pattern).
|
14
|
-
|
15
|
-
|
16
|
-
The <tt>pattern</tt> format string is something like "%l [%d] %80M",
|
17
|
-
which resembles a pattern one would normally pass to Kernel#sprintf. However,
|
18
|
-
the directives are specific to Log4r. Before we go on, let's cover some
|
19
|
-
terminology.
|
20
|
-
|
21
|
-
== Terminology
|
22
|
-
|
23
|
-
[<b>%</b>] The directive identifier. Everything after this up to and
|
24
|
-
including one of the <em>directive letters</em> defines a
|
25
|
-
<em>directive</em>.
|
26
|
-
[<b>directive letter</b>]
|
27
|
-
Letters in the set <tt>[cCdtmMl%]</tt>. These
|
28
|
-
identify what kind of data we're interested in.
|
29
|
-
They are detailed below.
|
30
|
-
[<b>format directive</b>]
|
31
|
-
The numbers and assorted symbols that appears
|
32
|
-
between <b>%</b> and a <em>directive letter</em>
|
33
|
-
is a format directive. It is comprised of an
|
34
|
-
integer specifying the field width followed
|
35
|
-
optionally by a period and an integer specifying
|
36
|
-
the precision. The field width is the minimum
|
37
|
-
number of characters to copy from the data string
|
38
|
-
while the precision is the maximum number to copy.
|
39
|
-
If the field width is preceded by a - sign, the
|
40
|
-
data will be left-justified. Otherwise, it is
|
41
|
-
right-justified.
|
42
|
-
[<b>directive</b>]
|
43
|
-
A statement that says, "I want this data to appear with
|
44
|
-
this (optional) particular format." A directive starts
|
45
|
-
with a <b>%</b> and is followed by a format directive and
|
46
|
-
terminates in a directive letter.
|
47
|
-
|
48
|
-
== What the Directive Letters mean
|
49
|
-
|
50
|
-
[<b>c</b>] Produces a logger's name. Fast.
|
51
|
-
[<b>C</b>] Produces a logger's full name. Fast.
|
52
|
-
[<b>d</b>] Produces the time in a format specified by <b>date_pattern</b> or
|
53
|
-
by <b>date_method</b>. If neither is specified, the default will
|
54
|
-
be used (ISO8601). Slow.
|
55
|
-
[<b>t</b>] Produces the file and line number of the log event. The
|
56
|
-
appearance varies by Ruby version, but it is the same output
|
57
|
-
returned by Kernel#caller[0]. Slow.
|
58
|
-
[<b>m</b>] The non-inspected log message. That is, to_s called on the object
|
59
|
-
passed into a log method. Fast.
|
60
|
-
[<b>M</b>] The message formatted by the <tt>format_object</tt> method in
|
61
|
-
BasicFormatter. It will pretty-print Exceptions, print Strings
|
62
|
-
and inspect everything else. Slow.
|
63
|
-
[<b>l</b>] The name of the level. That's l as in Lambda. Fast.
|
64
|
-
[<b>%</b>] %% just prints a %. Any formatting is <em>probably</em> ignored.
|
65
|
-
Fast.
|
66
|
-
|
67
|
-
== Examples of directives:
|
68
|
-
|
69
|
-
|
70
|
-
[<b>%d</b>] Prints out the date according to our date_pattern or
|
71
|
-
date_method. By default, it looks like this: 2001-01-12 13:15:50
|
72
|
-
[<b>%.120m</b>] Prints out at most 120 characters of the log message.
|
73
|
-
[<b>%15t</b>] Prints the execution trace and pads it on the left with
|
74
|
-
enough whitespace to make the whole thing 15 chars.
|
75
|
-
|
76
|
-
== Pattern String
|
77
|
-
|
78
|
-
A pattern string is simply a bunch of directives combined with the desired
|
79
|
-
format. For instance, to show the level in brackets followed by the date
|
80
|
-
and then the log message trimmed to 15 characters, we use the following
|
81
|
-
pattern:
|
82
|
-
|
83
|
-
"[%l] %d :: %.15m" #=> [DEBUG] 2001-01-12 13:15:50 :: This is a messa
|
84
|
-
|
85
|
-
To create a PatternFormatter with this format:
|
86
|
-
|
87
|
-
p = PatternFormatter.new(:pattern => "[%l] %d :: %.15m")
|
88
|
-
|
89
|
-
== Formatting time
|
90
|
-
|
91
|
-
To format time, do one of the following:
|
92
|
-
|
93
|
-
* Specify a date_pattern
|
94
|
-
* Specify what class method of Ruby's <tt>Time</tt> class to call.
|
95
|
-
* Use the default format
|
96
|
-
|
97
|
-
If neither date_pattern nor date_method is specified, the default date
|
98
|
-
format will be used. Currently, that would be ISO8601,
|
99
|
-
|
100
|
-
The date_pattern is exactly what one would pass to <tt>Time.strftime</tt>.
|
101
|
-
To specify a date_pattern, pass
|
102
|
-
<tt>:date_pattern=>"pattern"</tt> to PatternFormat.new.
|
103
|
-
|
104
|
-
Alternatively, date_method can be specified to produce the output of
|
105
|
-
a specific <tt>Time</tt> method, such as <tt>usec</tt> or <tt>to_s</tt>
|
106
|
-
or any other zero argument <tt>Time</tt> method that produces a time. More
|
107
|
-
precisely, the method to call will be invoked on <tt>Time.now</tt>.
|
108
|
-
To specify a date_method, pass <tt>:date_method=>'methodname'</tt> (or a
|
109
|
-
Symbol equivalent) to <tt>PatternFormatter.new</tt>.
|
110
|
-
|
111
|
-
= XML Configuration
|
112
|
-
|
113
|
-
As explained in log4r/configurator.rb, the hash arguments to PatternFormatter
|
114
|
-
are <i>XML parameters</i>. Here's an example:
|
115
|
-
|
116
|
-
<formatter type="PatternFormatter" pattern="[%l] %d :: %.15m">
|
117
|
-
<date_method>usec</date_method>
|
118
|
-
</formatter>
|
119
|
-
|
120
|
-
= Performace considerations
|
121
|
-
|
122
|
-
The performance impact of using a particular directive letter is noted in
|
123
|
-
the <b>What the Directives Letters mean</b> section.
|
124
|
-
|
125
|
-
The performance impact of time formatting merits special attention. If you
|
126
|
-
aren't aware yet, the Time class is kind of a kludge. Time.now.usec happens
|
127
|
-
to be faster than Time.now. If you're concerned about performance, please
|
128
|
-
profile the various time methods and patterns.
|
@@ -1,16 +0,0 @@
|
|
1
|
-
= ScribeOutputter
|
2
|
-
|
3
|
-
A ScribeOutputter transforms a Log4r::LogEvent into an event passed to Scribe. The user can configure the outputter with
|
4
|
-
the host and port of the scribe scribe server.
|
5
|
-
|
6
|
-
== Usage
|
7
|
-
|
8
|
-
To use,
|
9
|
-
<tt>require 'log4r'</tt>
|
10
|
-
|
11
|
-
An example,
|
12
|
-
|
13
|
-
require 'log4r'
|
14
|
-
|
15
|
-
logger = Log4r::ScribeOutputter.new('name', '127.0.0.1', 1463)
|
16
|
-
logger.debug("Hello World")
|
@@ -1,29 +0,0 @@
|
|
1
|
-
= SyslogOutputter
|
2
|
-
|
3
|
-
A SyslogOutputter transforms a Log4r::LogEvent into a call to syslog().
|
4
|
-
Since syslog has its own formatting system, log4r formatters are ignored.
|
5
|
-
|
6
|
-
== Usage
|
7
|
-
|
8
|
-
To use,
|
9
|
-
|
10
|
-
<tt>require 'log4r/outputter/syslogoutputter'</tt>
|
11
|
-
|
12
|
-
An example,
|
13
|
-
|
14
|
-
require 'log4r'
|
15
|
-
require 'log4r/outputter/syslogoutputter'
|
16
|
-
|
17
|
-
syslog = Log4r::SyslogOutputter.new("name", 'logopt'=>#, 'facility'=>#)
|
18
|
-
syslog.err("this is an ERR message")
|
19
|
-
|
20
|
-
The output in <tt>/var/logs/syslog</tt> (Debian) is,
|
21
|
-
|
22
|
-
Sep 3 11:43:06 tiphares sys[1603]: this is an ERR message
|
23
|
-
|
24
|
-
The hash arguments +logoptions+ and +facility+ are passed to
|
25
|
-
<tt>Syslog.open</tt>. The
|
26
|
-
defaults are <tt>LOG_PID | LOG_CONS</tt> and <tt>LOG_USER</tt> respectively.
|
27
|
-
|
28
|
-
This is a first try implementation. It works well. Please report
|
29
|
-
any bugs and fixes.
|
@@ -1,7 +0,0 @@
|
|
1
|
-
= Win32EventOutputter
|
2
|
-
|
3
|
-
THIS IS A DEVELOPMENT VERSION AND IS NOT READY FOR USE
|
4
|
-
INFACT, IT MAY NEVER BE READY FOR USE, AS TRYING TO INTERACT
|
5
|
-
WITH THE WIN32 EVENTLOG API REQUIRES USER INTERVENTION TO LOOKUP
|
6
|
-
event_id AND category CODES THAT THIS LIBRARY CANNOT KNOW A PRIORI
|
7
|
-
|
@@ -1,20 +0,0 @@
|
|
1
|
-
= Configuring Log4r with Log4r::YamlConfigurator
|
2
|
-
|
3
|
-
The YamlConfigurator class allows one to set up Log4r via YAML.
|
4
|
-
It is used almost exactly as Log4r::Configurator and has the same features,
|
5
|
-
|
6
|
-
ycfg = YamlConfigurator # handy shorthand
|
7
|
-
ycfg['foo'] = bar # replaces instances of #{foo} in the YAML with bar
|
8
|
-
ycfg.load_yaml_file('foo.yaml')
|
9
|
-
|
10
|
-
Ruby 1.7 and 1.8 comes with a YAML parser. Hence, YAML can be used
|
11
|
-
to configure Log4r out of the box.
|
12
|
-
|
13
|
-
A comprehensive example of a Log4r YAML configuration is provided in the
|
14
|
-
examples directory.
|
15
|
-
|
16
|
-
To use this class:
|
17
|
-
|
18
|
-
require 'log4r/yamlconfigurator'
|
19
|
-
|
20
|
-
Thanks to Andreas Hund for making this possible.
|
@@ -1,88 +0,0 @@
|
|
1
|
-
# :nodoc:
|
2
|
-
# Version:: $Id$
|
3
|
-
#
|
4
|
-
# Using Thread.exclusive seems to be more efficient than using
|
5
|
-
# a class wide instance of Sync.synchronize in ruby 1.8.6 - Colby
|
6
|
-
#
|
7
|
-
# Using Sync.synchronize, 5000 iterations:
|
8
|
-
# real 3m55.493s user 3m45.557s sys 0m3.478s
|
9
|
-
#
|
10
|
-
# Using Thread.exclusive, 5000 iterations:
|
11
|
-
# real 2m35.859s user 2m33.951s sys 0m1.224s
|
12
|
-
#
|
13
|
-
|
14
|
-
require 'monitor'
|
15
|
-
require "singleton"
|
16
|
-
|
17
|
-
module Log4r
|
18
|
-
class Logger
|
19
|
-
|
20
|
-
# The repository stores a Hash of loggers keyed to their fullnames and
|
21
|
-
# provides a few functions to reduce the code bloat in log4r/logger.rb.
|
22
|
-
# This class is supposed to be transparent to end users, hence it is
|
23
|
-
# a class within Logger. If anyone knows how to make this private,
|
24
|
-
# let me know.
|
25
|
-
|
26
|
-
class Repository # :nodoc:
|
27
|
-
extend MonitorMixin
|
28
|
-
include Singleton
|
29
|
-
attr_reader :loggers
|
30
|
-
|
31
|
-
def initialize
|
32
|
-
@loggers = Hash.new
|
33
|
-
end
|
34
|
-
|
35
|
-
def self.[](fullname)
|
36
|
-
self.synchronize do
|
37
|
-
instance.loggers[fullname]
|
38
|
-
end # exclusive
|
39
|
-
end
|
40
|
-
|
41
|
-
def self.[]=(fullname, logger)
|
42
|
-
self.synchronize do
|
43
|
-
instance.loggers[fullname] = logger
|
44
|
-
end # exclusive
|
45
|
-
end
|
46
|
-
|
47
|
-
# Retrieves all children of a parent
|
48
|
-
def self.all_children(parent)
|
49
|
-
# children have the parent name + delimiter in their fullname
|
50
|
-
daddy = parent.name + Private::Config::LoggerPathDelimiter
|
51
|
-
self.synchronize do
|
52
|
-
for fullname, logger in instance.loggers
|
53
|
-
yield logger if parent.is_root? || fullname =~ /#{daddy}/
|
54
|
-
end
|
55
|
-
end # exclusive
|
56
|
-
end
|
57
|
-
|
58
|
-
# when new loggers are introduced, they may get inserted into
|
59
|
-
# an existing inheritance tree. this method
|
60
|
-
# updates the children of a logger to link their new parent
|
61
|
-
def self.reassign_any_children(parent)
|
62
|
-
self.synchronize do
|
63
|
-
for fullname, logger in instance.loggers
|
64
|
-
next if logger.is_root?
|
65
|
-
logger.parent = parent if logger.path =~ /^#{parent.fullname}$/
|
66
|
-
end
|
67
|
-
end # exclusive
|
68
|
-
end
|
69
|
-
|
70
|
-
# looks for the first defined logger in a child's path
|
71
|
-
# or nil if none found (which will then be rootlogger)
|
72
|
-
def self.find_ancestor(path)
|
73
|
-
arr = path.split Log4rConfig::LoggerPathDelimiter
|
74
|
-
logger = nil
|
75
|
-
self.synchronize do
|
76
|
-
while arr.size > 0 do
|
77
|
-
logger = Repository[arr.join(Log4rConfig::LoggerPathDelimiter)]
|
78
|
-
break unless logger.nil?
|
79
|
-
arr.pop
|
80
|
-
end
|
81
|
-
end # exclusive
|
82
|
-
logger
|
83
|
-
end
|
84
|
-
|
85
|
-
end # class Repository
|
86
|
-
end # class Logger
|
87
|
-
end # Module Log4r
|
88
|
-
|