pangea-core 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/auto-bump.yml +11 -0
- data/.github/workflows/ci.yml +7 -0
- data/.github/workflows/release.yml +22 -0
- data/.gitignore +1 -0
- data/AGENTS.md +3 -0
- data/CLAUDE.md +554 -0
- data/Gemfile.lock +3 -3
- data/README.md +40 -0
- data/docs/development-standards.md +287 -0
- data/docs/fleet-pangea-integration-plan.md +421 -0
- data/exe/pangea +7 -0
- data/flake.lock +1499 -190
- data/flake.nix +5 -1
- data/gemset.nix +1 -1
- data/lib/pangea/arch_dsl.rb +167 -0
- data/lib/pangea/architecture.rb +143 -0
- data/lib/pangea/backend.rb +172 -0
- data/lib/pangea/cli/cascade.rb +340 -0
- data/lib/pangea/cli/config.rb +169 -0
- data/lib/pangea/cli/operations.rb +206 -0
- data/lib/pangea/cli/orchestrate.rb +115 -0
- data/lib/pangea/cli/reactivity.rb +252 -0
- data/lib/pangea/cli/synthesizer.rb +121 -0
- data/lib/pangea/cli/theme.rb +216 -0
- data/lib/pangea/cli/tofu_events.rb +242 -0
- data/lib/pangea/cli.rb +209 -0
- data/lib/pangea/components/base.rb +23 -13
- data/lib/pangea/contracts/architecture_result.rb +106 -0
- data/lib/pangea/contracts/cluster_result.rb +94 -0
- data/lib/pangea/contracts/errors.rb +21 -0
- data/lib/pangea/contracts/iam_result.rb +73 -0
- data/lib/pangea/contracts/network_result.rb +140 -0
- data/lib/pangea/contracts/security_group_accessor.rb +28 -0
- data/lib/pangea/contracts.rb +26 -0
- data/lib/pangea/magma/chain.rb +199 -0
- data/lib/pangea/magma/distribution.rb +107 -0
- data/lib/pangea/magma/matchers.rb +176 -0
- data/lib/pangea/magma/migration.rb +195 -0
- data/lib/pangea/magma/optimization.rb +88 -0
- data/lib/pangea/magma/orchestrator.rb +96 -0
- data/lib/pangea/magma/runner.rb +99 -0
- data/lib/pangea/magma/stack.rb +159 -0
- data/lib/pangea/magma/test_support.rb +177 -0
- data/lib/pangea/magma/workspace.rb +127 -0
- data/lib/pangea/magma.rb +156 -0
- data/lib/pangea/outputs.rb +91 -0
- data/lib/pangea/presets.rb +67 -0
- data/lib/pangea/provider_contract.rb +61 -0
- data/lib/pangea/remote_state.rb +175 -0
- data/lib/pangea/resource_registry.rb +24 -15
- data/lib/pangea/resources/base_attributes.rb +13 -1
- data/lib/pangea/resources/reference.rb +9 -4
- data/lib/pangea/resources/reference_generator.rb +32 -0
- data/lib/pangea/resources/resource_builder.rb +103 -68
- data/lib/pangea/resources/resource_input.rb +149 -0
- data/lib/pangea/resources/types/coercions.rb +43 -0
- data/lib/pangea/resources/types/core.rb +23 -0
- data/lib/pangea/resources/types/index.rb +3 -0
- data/lib/pangea/resources/validators/common.rb +41 -0
- data/lib/pangea/resources/validators/network_validators.rb +9 -7
- data/lib/pangea/secrets.rb +136 -0
- data/lib/pangea/tagging/fingerprint.rb +116 -0
- data/lib/pangea/tagging/policy.rb +92 -0
- data/lib/pangea/tagging/tag_adapter.rb +84 -0
- data/lib/pangea/tagging/tag_set.rb +201 -0
- data/lib/pangea/tagging.rb +6 -0
- data/lib/pangea/testing/architecture_spec_generator.rb +237 -0
- data/lib/pangea/testing/assertions.rb +51 -0
- data/lib/pangea/testing/mock_terraform_synthesizer.rb +22 -4
- data/lib/pangea/testing/spec_generator.rb +176 -0
- data/lib/pangea/testing/spec_setup.rb +4 -0
- data/lib/pangea/testing/type_purity.rb +132 -0
- data/lib/pangea/testing.rb +3 -0
- data/lib/pangea/validation.rb +44 -8
- data/lib/pangea-core/version.rb +1 -1
- data/lib/pangea-core.rb +31 -0
- data/pangea-core.gemspec +3 -1
- data/vendor/bundle/ruby/3.3.0/bin/htmldiff +29 -0
- data/vendor/bundle/ruby/3.3.0/bin/ldiff +29 -0
- data/vendor/bundle/ruby/3.3.0/bin/pangea +29 -0
- data/vendor/bundle/ruby/3.3.0/bin/rake +29 -0
- data/vendor/bundle/ruby/3.3.0/bin/rspec +29 -0
- data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-25/3.3.0/bigdecimal-4.0.1/bigdecimal.bundle +0 -0
- data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-25/3.3.0/bigdecimal-4.0.1/gem.build_complete +0 -0
- data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-25/3.3.0/bigdecimal-4.0.1/gem_make.out +33 -0
- data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-25/3.3.0/bigdecimal-4.0.1/mkmf.log +453 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/.gitignore +17 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/.nix_shell_env.sh +2134 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/.rubocop.yml +54 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/CHANGELOG.md +40 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/CONTRIBUTING.md +114 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/Gemfile +2 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/Gemfile.lock +66 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/LICENSE +21 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/README.md +621 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/Rakefile +11 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/abstract-synthesizer.gemspec +28 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/docs/overview.md +69 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/docs/usage.md +468 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/examples/README.md +230 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/examples/api/rest_api_dsl.rb +269 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/examples/build_system/ci_cd_pipeline.rb +443 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/examples/configuration_management/app_config_dsl.rb +437 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/examples/infrastructure/kubernetes_deployment.rb +152 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/flake.lock +835 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/flake.nix +62 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/gemset.nix +239 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/lib/abstract-synthesizer/errors/invalid_synthesizer_key_error.rb +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/lib/abstract-synthesizer/errors/too_many_field_values.rb +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/lib/abstract-synthesizer/primitives/bury.rb +21 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/lib/abstract-synthesizer/version.rb +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/abstract-synthesizer-0.0.15/lib/abstract-synthesizer.rb +121 -0
- data/vendor/bundle/ruby/3.3.0/gems/base64-0.3.0/BSDL +22 -0
- data/vendor/bundle/ruby/3.3.0/gems/base64-0.3.0/COPYING +56 -0
- data/vendor/bundle/ruby/3.3.0/gems/base64-0.3.0/LEGAL +60 -0
- data/vendor/bundle/ruby/3.3.0/gems/base64-0.3.0/README.md +48 -0
- data/vendor/bundle/ruby/3.3.0/gems/base64-0.3.0/lib/base64.rb +381 -0
- data/vendor/bundle/ruby/3.3.0/gems/base64-0.3.0/sig/base64.rbs +355 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/LICENSE +56 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/bigdecimal.gemspec +57 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/ext/bigdecimal/.sitearchdir.time +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/ext/bigdecimal/Makefile +271 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/ext/bigdecimal/bigdecimal.bundle +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/ext/bigdecimal/bigdecimal.c +6206 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/ext/bigdecimal/bigdecimal.h +292 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/ext/bigdecimal/bigdecimal.o +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/ext/bigdecimal/bits.h +144 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/ext/bigdecimal/extconf.rb +60 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/ext/bigdecimal/feature.h +68 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/ext/bigdecimal/missing/dtoa.c +3462 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/ext/bigdecimal/missing.c +28 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/ext/bigdecimal/missing.h +104 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/ext/bigdecimal/missing.o +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/ext/bigdecimal/static_assert.h +54 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/lib/bigdecimal/jacobian.rb +92 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/lib/bigdecimal/ludcmp.rb +91 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/lib/bigdecimal/math.rb +948 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/lib/bigdecimal/newton.rb +82 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/lib/bigdecimal/util.rb +186 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/lib/bigdecimal.bundle +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/lib/bigdecimal.rb +360 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/sample/linear.rb +74 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/sample/nlsolve.rb +40 -0
- data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-4.0.1/sample/pi.rb +21 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/CHANGELOG.md +609 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/Gemfile +36 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/LICENSE.txt +21 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/README.md +409 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/Rakefile +344 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/ConcurrentRubyService.java +17 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java +175 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/com/concurrent_ruby/ext/JRubyMapBackendLibrary.java +248 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicBooleanLibrary.java +93 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicFixnumLibrary.java +113 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaSemaphoreLibrary.java +189 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java +292 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMap.java +31 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMapV8.java +3863 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/LongAdder.java +203 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/Striped64.java +342 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/LongAdder.java +204 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/Striped64.java +291 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166y/ThreadLocalRandom.java +199 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/agent.rb +588 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/array.rb +56 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/async.rb +449 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atom.rb +222 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/atomic_boolean.rb +127 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/atomic_fixnum.rb +144 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/atomic_markable_reference.rb +167 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/atomic_reference.rb +135 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/count_down_latch.rb +100 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/cyclic_barrier.rb +128 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/event.rb +109 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/fiber_local_var.rb +109 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/java_count_down_latch.rb +43 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/locals.rb +189 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/lock_local_var.rb +29 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_boolean.rb +68 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_fixnum.rb +81 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/mutex_count_down_latch.rb +44 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/mutex_semaphore.rb +131 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/read_write_lock.rb +255 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/reentrant_read_write_lock.rb +379 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/semaphore.rb +163 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/thread_local_var.rb +111 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic_reference/atomic_direct_update.rb +37 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic_reference/mutex_atomic.rb +67 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic_reference/numeric_cas_wrapper.rb +28 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomics.rb +10 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/collection/copy_on_notify_observer_set.rb +107 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/collection/copy_on_write_observer_set.rb +111 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/collection/java_non_concurrent_priority_queue.rb +84 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/collection/lock_free_stack.rb +160 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/collection/map/mri_map_backend.rb +66 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/collection/map/non_concurrent_map_backend.rb +148 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/collection/map/synchronized_map_backend.rb +85 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/collection/map/truffleruby_map_backend.rb +14 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/collection/non_concurrent_priority_queue.rb +143 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/collection/ruby_non_concurrent_priority_queue.rb +160 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/collection/ruby_timeout_queue.rb +55 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/collection/timeout_queue.rb +18 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/concern/deprecation.rb +34 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/concern/dereferenceable.rb +73 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/concern/logging.rb +121 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/concern/obligation.rb +220 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/concern/observable.rb +110 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/concurrent_ruby.jar +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/configuration.rb +105 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/constants.rb +8 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/dataflow.rb +81 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/delay.rb +199 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/errors.rb +74 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/exchanger.rb +353 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/abstract_executor_service.rb +131 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/cached_thread_pool.rb +62 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/executor_service.rb +185 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/fixed_thread_pool.rb +222 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/immediate_executor.rb +66 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/indirect_immediate_executor.rb +44 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb +101 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/java_single_thread_executor.rb +30 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/java_thread_pool_executor.rb +147 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/ruby_executor_service.rb +82 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/ruby_single_thread_executor.rb +23 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/ruby_thread_pool_executor.rb +396 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/safe_task_executor.rb +35 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/serial_executor_service.rb +34 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/serialized_execution.rb +107 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/serialized_execution_delegator.rb +28 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/simple_executor_service.rb +103 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/single_thread_executor.rb +57 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/thread_pool_executor.rb +88 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/timer_set.rb +179 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executors.rb +19 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/future.rb +141 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/hash.rb +52 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/immutable_struct.rb +101 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/ivar.rb +208 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/map.rb +350 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/maybe.rb +229 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/mutable_struct.rb +239 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/mvar.rb +242 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/options.rb +42 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/promise.rb +580 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/promises.rb +2178 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/re_include.rb +60 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/scheduled_task.rb +331 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/set.rb +64 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/settable_struct.rb +139 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/synchronization/abstract_lockable_object.rb +102 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/synchronization/abstract_object.rb +22 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/synchronization/abstract_struct.rb +171 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/synchronization/condition.rb +62 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/synchronization/full_memory_barrier.rb +29 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/synchronization/jruby_lockable_object.rb +15 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/synchronization/lock.rb +38 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/synchronization/lockable_object.rb +75 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/synchronization/mutex_lockable_object.rb +89 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/synchronization/object.rb +151 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/synchronization/safe_initialization.rb +36 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/synchronization/volatile.rb +101 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/synchronization.rb +13 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/thread_safe/synchronized_delegator.rb +47 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/thread_safe/util/adder.rb +74 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/thread_safe/util/data_structures.rb +52 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/thread_safe/util/power_of_two_tuple.rb +38 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/thread_safe/util/striped64.rb +246 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/thread_safe/util/volatile.rb +75 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/thread_safe/util/xor_shift_random.rb +50 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/thread_safe/util.rb +16 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/timer_task.rb +366 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/tuple.rb +82 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/tvar.rb +222 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/utility/engine.rb +45 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/utility/monotonic_time.rb +19 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/utility/native_extension_loader.rb +77 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/utility/native_integer.rb +54 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/utility/processor_counter.rb +220 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/version.rb +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent-ruby.rb +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent.rb +134 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/.rspec +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/CHANGELOG.md +518 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/CODE_OF_CONDUCT.md +128 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/CONTRIBUTING.md +71 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/CONTRIBUTORS.md +49 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/LICENCE.md +40 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/Manifest.txt +115 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/README.md +92 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/Rakefile +115 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/SECURITY.md +41 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/bin/htmldiff +35 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/bin/ldiff +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/docs/COPYING.txt +339 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/docs/artistic.txt +127 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/lib/diff/lcs/array.rb +7 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/lib/diff/lcs/backports.rb +13 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/lib/diff/lcs/block.rb +37 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/lib/diff/lcs/callbacks.rb +327 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/lib/diff/lcs/change.rb +174 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/lib/diff/lcs/htmldiff.rb +160 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/lib/diff/lcs/hunk.rb +379 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/lib/diff/lcs/internals.rb +308 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/lib/diff/lcs/ldiff.rb +189 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/lib/diff/lcs/string.rb +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/lib/diff/lcs/version.rb +7 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/lib/diff/lcs.rb +742 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/lib/diff-lcs.rb +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/mise.toml +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/change_spec.rb +89 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/diff_spec.rb +51 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/123_x +2 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/456_x +2 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/aX +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/bXaX +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ds1.csv +50 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ds2.csv +51 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/empty +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/file1.bin +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/file2.bin +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/four_lines +4 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/four_lines_with_missing_new_line +4 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/diff.missing_new_line1-e +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/diff.missing_new_line1-f +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/diff.missing_new_line2-e +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/diff.missing_new_line2-f +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/error.diff.chef-e +2 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/error.diff.chef-f +2 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/error.diff.missing_new_line1-e +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/error.diff.missing_new_line1-f +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/error.diff.missing_new_line2-e +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/error.diff.missing_new_line2-f +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff +4 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff-c +7 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff-e +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff-f +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff-u +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin1 +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin1-c +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin1-e +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin1-f +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin1-u +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin2 +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin2-c +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin2-e +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin2-f +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin2-u +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef +4 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef-c +15 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef-e +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef-f +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef-u +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef2 +7 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef2-c +20 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef2-d +7 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef2-e +7 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef2-f +7 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef2-u +16 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.empty.vs.four_lines +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.empty.vs.four_lines-c +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.empty.vs.four_lines-e +6 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.empty.vs.four_lines-f +6 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.empty.vs.four_lines-u +7 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.four_lines.vs.empty +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.four_lines.vs.empty-c +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.four_lines.vs.empty-e +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.four_lines.vs.empty-f +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.four_lines.vs.empty-u +7 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.issue95_trailing_context +4 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.issue95_trailing_context-c +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.issue95_trailing_context-e +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.issue95_trailing_context-f +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.issue95_trailing_context-u +6 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line1 +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line1-c +14 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line1-e +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line1-f +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line1-u +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line2 +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line2-c +14 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line2-e +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line2-f +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line2-u +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/new-chef +4 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/new-chef2 +17 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/old-chef +4 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/fixtures/old-chef2 +14 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/hunk_spec.rb +83 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/issues_spec.rb +160 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/lcs_spec.rb +56 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/ldiff_spec.rb +100 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/patch_spec.rb +416 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/sdiff_spec.rb +216 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/spec_helper.rb +376 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/traverse_balanced_spec.rb +312 -0
- data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.2/spec/traverse_sequences_spec.rb +137 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/.github/dependabot.yml +15 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/.github/workflows/main.yml +42 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/.gitignore +11 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/.rspec +2 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/.rubocop.yml +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/.yardopts +7 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/Gemfile +26 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/HISTORY.md +134 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/LICENSE +21 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/README.md +409 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/Rakefile +14 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/SECURITY.md +19 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/docile.gemspec +36 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/lib/docile/backtrace_filter.rb +24 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/lib/docile/chaining_fallback_context_proxy.rb +27 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/lib/docile/execution.rb +53 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/lib/docile/fallback_context_proxy.rb +107 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/lib/docile/version.rb +6 -0
- data/vendor/bundle/ruby/3.3.0/gems/docile-1.4.1/lib/docile.rb +134 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/CHANGELOG.md +351 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/LICENSE +21 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/README.md +17 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/dry-core.gemspec +41 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/basic_object.rb +143 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/cache.rb +69 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/class_attributes.rb +103 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/class_builder.rb +103 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/constants.rb +115 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/container/config.rb +34 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/container/configuration.rb +37 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/container/item/callable.rb +22 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/container/item/factory.rb +29 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/container/item/memoizable.rb +49 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/container/item.rb +56 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/container/mixin.rb +311 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/container/namespace.rb +47 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/container/namespace_dsl.rb +63 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/container/registry.rb +52 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/container/resolver.rb +90 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/container/stub.rb +57 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/container.rb +27 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/deprecations.rb +237 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/descendants_tracker.rb +78 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/equalizer.rb +156 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/errors.rb +13 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/extensions.rb +61 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/inflector.rb +143 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/memoizable.rb +235 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core/version.rb +7 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry/core.rb +56 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-core-1.2.0/lib/dry-core.rb +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-inflector-1.3.1/CHANGELOG.md +153 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-inflector-1.3.1/LICENSE +20 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-inflector-1.3.1/README.md +17 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-inflector-1.3.1/dry-inflector.gemspec +38 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-inflector-1.3.1/lib/dry/inflector/acronyms.rb +42 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-inflector-1.3.1/lib/dry/inflector/inflections/defaults.rb +129 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-inflector-1.3.1/lib/dry/inflector/inflections.rb +259 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-inflector-1.3.1/lib/dry/inflector/rules.rb +34 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-inflector-1.3.1/lib/dry/inflector/version.rb +8 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-inflector-1.3.1/lib/dry/inflector.rb +343 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-inflector-1.3.1/lib/dry-inflector.rb +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/CHANGELOG.md +375 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/LICENSE +20 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/README.md +22 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/dry-logic.gemspec +37 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/appliable.rb +35 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/builder.rb +88 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/evaluator.rb +48 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/operations/abstract.rb +42 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/operations/and.rb +44 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/operations/attr.rb +17 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/operations/binary.rb +27 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/operations/check.rb +50 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/operations/each.rb +31 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/operations/implication.rb +36 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/operations/key.rb +64 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/operations/negation.rb +21 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/operations/or.rb +34 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/operations/set.rb +34 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/operations/unary.rb +24 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/operations/xor.rb +26 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/operators.rb +27 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/predicates.rb +233 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/result.rb +96 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/rule/interface.rb +137 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/rule/predicate.rb +34 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/rule.rb +98 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/rule_compiler.rb +81 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic/version.rb +7 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry/logic.rb +25 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-logic-1.6.0/lib/dry-logic.rb +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/CHANGELOG.md +482 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/LICENSE +20 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/README.md +22 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/dry-struct.gemspec +37 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/lib/dry/struct/class_interface.rb +471 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/lib/dry/struct/compiler.rb +19 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/lib/dry/struct/constructor.rb +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/lib/dry/struct/errors.rb +32 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/lib/dry/struct/extensions/pretty_print.rb +22 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/lib/dry/struct/extensions/super_diff.rb +10 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/lib/dry/struct/extensions.rb +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/lib/dry/struct/hashify.rb +23 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/lib/dry/struct/printer.rb +23 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/lib/dry/struct/struct_builder.rb +102 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/lib/dry/struct/sum.rb +51 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/lib/dry/struct/value.rb +37 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/lib/dry/struct/version.rb +8 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/lib/dry/struct.rb +230 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-struct-1.8.0/lib/dry-struct.rb +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/CHANGELOG.md +1145 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/LICENSE +20 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/README.md +17 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/dry-types.gemspec +45 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/any.rb +41 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/array/constructor.rb +24 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/array/member.rb +118 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/array.rb +32 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/builder.rb +221 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/builder_methods.rb +138 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/coercions/json.rb +57 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/coercions/params.rb +168 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/coercions.rb +105 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/compat.rb +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/compiler.rb +138 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/composition.rb +138 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/constrained/coercible.rb +59 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/constrained.rb +146 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/constraints.rb +30 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/constructor/function.rb +203 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/constructor/wrapper.rb +88 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/constructor.rb +195 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/container.rb +12 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/core.rb +106 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/decorator.rb +94 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/default.rb +122 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/enum.rb +121 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/errors.rb +138 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/extensions/maybe.rb +128 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/extensions/monads.rb +34 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/extensions.rb +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/fn_container.rb +37 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/hash/constructor.rb +25 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/hash.rb +134 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/implication.rb +64 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/inflector.rb +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/intersection.rb +102 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/json.rb +35 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/lax.rb +66 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/map.rb +134 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/meta.rb +53 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/module.rb +127 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/nominal.rb +201 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/options.rb +34 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/params.rb +38 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/predicate_inferrer.rb +235 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/predicate_registry.rb +32 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/primitive_inferrer.rb +75 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/printable.rb +14 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/printer/composition.rb +44 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/printer.rb +313 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/result.rb +72 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/schema/key.rb +138 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/schema.rb +408 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/spec/types.rb +164 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/sum.rb +105 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/type.rb +53 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types/version.rb +7 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry/types.rb +259 -0
- data/vendor/bundle/ruby/3.3.0/gems/dry-types-1.9.1/lib/dry-types.rb +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/.gitignore +37 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/.pelusa.yml +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/.rspec +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/.rubocop.yml +8 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/.ruby-gemset +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/.travis.yml +27 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/.yardopts +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/CONTRIBUTING.md +11 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/Gemfile +14 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/Gemfile.devtools +72 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/Guardfile +24 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/LICENSE +20 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/README.md +51 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/Rakefile +13 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/TODO +7 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/benchmarks/speed.rb +34 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/config/devtools.yml +2 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/config/flay.yml +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/config/flog.yml +2 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/config/mutant.yml +4 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/config/reek.yml +105 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/config/roodi.yml +16 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/config/rubocop.yml +114 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/config/yardstick.yml +2 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/ice_nine.gemspec +21 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/core_ext/object.rb +42 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/freezer/array.rb +28 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/freezer/false_class.rb +10 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/freezer/hash/state.rb +12 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/freezer/hash.rb +46 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/freezer/module.rb +10 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/freezer/nil_class.rb +10 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/freezer/no_freeze.rb +25 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/freezer/numeric.rb +10 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/freezer/object.rb +49 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/freezer/range.rb +29 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/freezer/rubinius.rb +10 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/freezer/struct.rb +10 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/freezer/symbol.rb +10 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/freezer/true_class.rb +10 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/freezer.rb +109 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/support/recursion_guard.rb +57 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine/version.rb +8 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/lib/ice_nine.rb +62 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/integration/ice_nine/class_methods/deep_freeze_bang_spec.rb +21 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/integration/ice_nine/class_methods/deep_freeze_spec.rb +21 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/shared/array_deep_freeze.rb +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/shared/hash_deep_freeze.rb +23 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/shared/ice_nine_deep_freeze.rb +262 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/shared/no_freeze_deep_freeze.rb +21 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/shared/object_deep_freeze.rb +19 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/shared/range_deep_freeze.rb +13 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/spec_helper.rb +28 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/support/config_alias.rb +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/class_methods/deep_freeze_bang_spec.rb +24 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/class_methods/deep_freeze_spec.rb +34 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/core_ext/object/deep_freeze_bang_spec.rb +24 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/core_ext/object/deep_freeze_spec.rb +13 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/freezer/array/class_methods/deep_freeze_spec.rb +24 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/freezer/class_methods/element_reader_spec.rb +138 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/freezer/false_class/class_methods/deep_freeze_spec.rb +18 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/freezer/hash/class_methods/deep_freeze_spec.rb +64 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/freezer/module/class_methods/deep_freeze_spec.rb +18 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/freezer/nil_class/class_methods/deep_freeze_spec.rb +18 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/freezer/no_freeze/class_methods/deep_freeze_spec.rb +13 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/freezer/numeric/class_methods/deep_freeze_spec.rb +21 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/freezer/object/class_methods/deep_freeze_spec.rb +40 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/freezer/range/class_methods/deep_freeze_spec.rb +55 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/freezer/struct/class_methods/deep_freeze_spec.rb +17 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/freezer/symbol/class_methods/deep_freeze_spec.rb +18 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/freezer/true_class/class_methods/deep_freeze_spec.rb +19 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/recursion_guard/frozen/guard_spec.rb +28 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/ice_nine/recursion_guard/object_set/guard_spec.rb +31 -0
- data/vendor/bundle/ruby/3.3.0/gems/ice_nine-0.11.2/spec/unit/object/deep_freeze_spec.rb +13 -0
- data/vendor/bundle/ruby/3.3.0/gems/logger-1.7.0/.document +4 -0
- data/vendor/bundle/ruby/3.3.0/gems/logger-1.7.0/.rdoc_options +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/logger-1.7.0/BSDL +22 -0
- data/vendor/bundle/ruby/3.3.0/gems/logger-1.7.0/COPYING +56 -0
- data/vendor/bundle/ruby/3.3.0/gems/logger-1.7.0/README.md +104 -0
- data/vendor/bundle/ruby/3.3.0/gems/logger-1.7.0/lib/logger/errors.rb +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/logger-1.7.0/lib/logger/formatter.rb +36 -0
- data/vendor/bundle/ruby/3.3.0/gems/logger-1.7.0/lib/logger/log_device.rb +265 -0
- data/vendor/bundle/ruby/3.3.0/gems/logger-1.7.0/lib/logger/period.rb +47 -0
- data/vendor/bundle/ruby/3.3.0/gems/logger-1.7.0/lib/logger/severity.rb +38 -0
- data/vendor/bundle/ruby/3.3.0/gems/logger-1.7.0/lib/logger/version.rb +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/logger-1.7.0/lib/logger.rb +789 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/History.rdoc +2454 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/README.rdoc +155 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/doc/command_line_usage.rdoc +171 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/doc/example/Rakefile1 +38 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/doc/example/Rakefile2 +35 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/doc/example/a.c +6 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/doc/example/b.c +6 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/doc/example/main.c +11 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/doc/glossary.rdoc +42 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/doc/jamis.rb +592 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/doc/proto_rake.rdoc +127 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/doc/rake.1 +156 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/doc/rakefile.rdoc +622 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/doc/rational.rdoc +151 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/exe/rake +27 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/application.rb +854 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/backtrace.rb +25 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/clean.rb +78 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/cloneable.rb +17 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/cpu_counter.rb +122 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/default_loader.rb +15 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/dsl_definition.rb +196 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/early_time.rb +22 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/ext/core.rb +26 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/ext/string.rb +176 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/file_creation_task.rb +25 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/file_list.rb +435 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/file_task.rb +58 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/file_utils.rb +132 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/file_utils_ext.rb +134 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/invocation_chain.rb +57 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/invocation_exception_mixin.rb +17 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/late_time.rb +18 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/linked_list.rb +112 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/loaders/makefile.rb +54 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/multi_task.rb +14 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/name_space.rb +38 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/packagetask.rb +222 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/phony.rb +16 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/private_reader.rb +21 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/promise.rb +100 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/pseudo_status.rb +30 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/rake_module.rb +67 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/rake_test_loader.rb +27 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/rule_recursion_overflow_error.rb +20 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/scope.rb +43 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/task.rb +434 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/task_argument_error.rb +8 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/task_arguments.rb +113 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/task_manager.rb +331 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/tasklib.rb +12 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/testtask.rb +189 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/thread_history_display.rb +49 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/thread_pool.rb +157 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/trace_output.rb +23 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/version.rb +10 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake/win32.rb +51 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/lib/rake.rb +68 -0
- data/vendor/bundle/ruby/3.3.0/gems/rake-13.3.1/rake.gemspec +101 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-3.13.2/LICENSE.md +27 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-3.13.2/README.md +47 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-3.13.2/lib/rspec/version.rb +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-3.13.2/lib/rspec.rb +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/.document +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/.yardopts +8 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/Changelog.md +2447 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/LICENSE.md +26 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/README.md +389 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/exe/rspec +4 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/autorun.rb +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/backtrace_formatter.rb +65 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/bisect/coordinator.rb +62 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/bisect/example_minimizer.rb +173 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/bisect/fork_runner.rb +140 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/bisect/server.rb +61 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/bisect/shell_command.rb +126 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/bisect/shell_runner.rb +73 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/bisect/utilities.rb +69 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/configuration.rb +2419 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/configuration_options.rb +240 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/did_you_mean.rb +52 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/drb.rb +120 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/dsl.rb +98 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/example.rb +666 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/example_group.rb +912 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/example_status_persister.rb +235 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/filter_manager.rb +231 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/flat_map.rb +20 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/base_bisect_formatter.rb +45 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/base_formatter.rb +70 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/base_text_formatter.rb +75 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/bisect_drb_formatter.rb +29 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/bisect_progress_formatter.rb +157 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/console_codes.rb +76 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/documentation_formatter.rb +102 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/exception_presenter.rb +553 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/failure_list_formatter.rb +23 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/helpers.rb +118 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/html_formatter.rb +153 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/html_printer.rb +412 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/html_snippet_extractor.rb +122 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/json_formatter.rb +103 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/profile_formatter.rb +68 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/progress_formatter.rb +29 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/protocol.rb +182 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/snippet_extractor.rb +134 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/syntax_highlighter.rb +91 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters.rb +279 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/hooks.rb +646 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/invocations.rb +87 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/memoized_helpers.rb +580 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/metadata.rb +498 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/metadata_filter.rb +255 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/mocking_adapters/null.rb +14 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/mocking_adapters/rr.rb +31 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/notifications.rb +523 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/option_parser.rb +325 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/ordering.rb +208 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/output_wrapper.rb +29 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/pending.rb +157 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/profiler.rb +34 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/project_initializer/.rspec +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/project_initializer/spec/spec_helper.rb +98 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/project_initializer.rb +48 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/rake_task.rb +190 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/reporter.rb +266 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/ruby_project.rb +53 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/runner.rb +216 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/sandbox.rb +37 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/set.rb +54 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/shared_context.rb +55 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/shared_example_group.rb +271 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/shell_escape.rb +49 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/version.rb +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/warnings.rb +40 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/world.rb +287 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core.rb +212 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/.document +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/.yardopts +6 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/Changelog.md +1366 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/LICENSE.md +25 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/README.md +326 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/block_snippet_extractor.rb +255 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/configuration.rb +244 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/expectation_target.rb +163 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/fail_with.rb +39 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/failure_aggregator.rb +236 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/handler.rb +181 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/minitest_integration.rb +58 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/syntax.rb +132 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/version.rb +8 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations.rb +82 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/aliased_matcher.rb +116 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/all.rb +86 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/base_matcher.rb +225 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/be.rb +191 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/be_between.rb +77 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/be_instance_of.rb +26 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/be_kind_of.rb +20 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/be_within.rb +72 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/change.rb +452 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/compound.rb +293 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/contain_exactly.rb +312 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/count_expectation.rb +171 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/cover.rb +24 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/eq.rb +44 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/eql.rb +38 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/equal.rb +81 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/exist.rb +90 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/has.rb +194 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/include.rb +218 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/match.rb +120 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/operators.rb +128 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/output.rb +207 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/raise_error.rb +275 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/respond_to.rb +200 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/satisfy.rb +62 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/throw_symbol.rb +138 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/yield.rb +375 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in.rb +53 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/composable.rb +171 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/dsl.rb +546 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/english_phrasing.rb +60 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/fail_matchers.rb +42 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/generated_descriptions.rb +41 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/matcher_delegator.rb +61 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/matcher_protocol.rb +105 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/multi_matcher_diff.rb +82 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers.rb +1046 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/.document +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/.yardopts +6 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/Changelog.md +1343 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/LICENSE.md +25 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/README.md +465 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/any_instance/chain.rb +111 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/any_instance/expect_chain_chain.rb +31 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/any_instance/expectation_chain.rb +50 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/any_instance/proxy.rb +125 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/any_instance/recorder.rb +299 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/any_instance/stub_chain.rb +51 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/any_instance/stub_chain_chain.rb +23 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/any_instance.rb +11 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/argument_list_matcher.rb +117 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/argument_matchers.rb +366 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/configuration.rb +212 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/error_generator.rb +390 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/example_methods.rb +434 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/instance_method_stasher.rb +146 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/marshal_extension.rb +41 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/matchers/have_received.rb +134 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/matchers/receive.rb +134 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/matchers/receive_message_chain.rb +82 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/matchers/receive_messages.rb +77 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/message_chain.rb +87 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/message_expectation.rb +856 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/method_double.rb +316 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/method_reference.rb +214 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/minitest_integration.rb +68 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/mutate_const.rb +339 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/object_reference.rb +149 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/order_group.rb +81 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/proxy.rb +517 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/space.rb +238 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/standalone.rb +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/syntax.rb +325 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/targets.rb +124 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/test_double.rb +174 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/verifying_double.rb +125 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/verifying_message_expectation.rb +55 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/verifying_proxy.rb +221 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks/version.rb +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.7/lib/rspec/mocks.rb +133 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/Changelog.md +444 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/LICENSE.md +23 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/README.md +40 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/caller_filter.rb +85 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/comparable_version.rb +48 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/differ.rb +216 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/directory_maker.rb +65 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/encoded_string.rb +163 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/fuzzy_matcher.rb +53 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/hunk_generator.rb +49 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/matcher_definition.rb +44 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/method_signature_verifier.rb +467 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/mutex.rb +75 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/object_formatter.rb +279 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/recursive_const_methods.rb +78 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/reentrant_mutex.rb +80 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/ruby_features.rb +221 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/source/location.rb +23 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/source/node.rb +112 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/source/token.rb +96 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/source.rb +87 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/deprecation_helpers.rb +50 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/diff_helpers.rb +45 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/formatting_support.rb +11 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/in_sub_process.rb +73 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/library_wide_checks.rb +152 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/shell_out.rb +115 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/stderr_splitter.rb +77 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/string_matcher.rb +47 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/with_isolated_directory.rb +15 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/with_isolated_stderr.rb +15 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/spec.rb +84 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/version.rb +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/warnings.rb +41 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support/with_keywords_when_needed.rb +35 -0
- data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.7/lib/rspec/support.rb +163 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/CHANGELOG.md +191 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/LICENSE +20 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/README.md +974 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/doc/alternate-formatters.md +71 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/doc/commercial-services.md +25 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/doc/editor-integration.md +18 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/minitest/simplecov_plugin.rb +15 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/combine/branches_combiner.rb +32 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/combine/files_combiner.rb +24 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/combine/lines_combiner.rb +43 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/combine/results_combiner.rb +60 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/combine.rb +30 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/command_guesser.rb +64 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/configuration.rb +500 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/coverage_statistics.rb +56 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/default_formatter.rb +20 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/defaults.rb +53 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/exit_codes/exit_code_handling.rb +29 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/exit_codes/maximum_coverage_drop_check.rb +83 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/exit_codes/minimum_coverage_by_file_check.rb +54 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/exit_codes/minimum_overall_coverage_check.rb +53 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/exit_codes.rb +15 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/file_list.rb +120 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/filter.rb +94 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/formatter/multi_formatter.rb +32 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/formatter/simple_formatter.rb +25 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/formatter.rb +10 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/last_run.rb +28 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/lines_classifier.rb +48 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/load_global_config.rb +8 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/no_defaults.rb +4 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/process.rb +19 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/profiles/bundler_filter.rb +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/profiles/hidden_filter.rb +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/profiles/rails.rb +18 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/profiles/root_filter.rb +10 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/profiles/test_frameworks.rb +8 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/profiles.rb +35 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/result.rb +94 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/result_adapter.rb +30 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/result_merger.rb +194 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/simulate_coverage.rb +29 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/source_file/branch.rb +84 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/source_file/line.rb +72 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/source_file.rb +355 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/useless_results_remover.rb +18 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov/version.rb +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-0.22.0/lib/simplecov.rb +470 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/.document +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/CHANGELOG.md +114 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/LICENSE +20 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/README.md +30 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/Rakefile +55 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/lib/simplecov-html/version.rb +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/lib/simplecov-html.rb +165 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/DataTables-1.10.20/images/sort_asc.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/DataTables-1.10.20/images/sort_asc_disabled.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/DataTables-1.10.20/images/sort_both.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/DataTables-1.10.20/images/sort_desc.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/DataTables-1.10.20/images/sort_desc_disabled.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/application.css +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/application.js +7 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/colorbox/border.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/colorbox/controls.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/colorbox/loading.gif +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/colorbox/loading_background.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/favicon_green.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/favicon_red.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/favicon_yellow.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/images/ui-icons_222222_256x240.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/images/ui-icons_2e83ff_256x240.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/images/ui-icons_454545_256x240.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/images/ui-icons_888888_256x240.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/loading.gif +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/public/magnify.png +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/views/covered_percent.erb +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/views/file_list.erb +78 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/views/layout.erb +40 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov-html-0.13.2/views/source_file.erb +57 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov_json_formatter-0.1.4/CHANGELOG.md +13 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov_json_formatter-0.1.4/README.md +29 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov_json_formatter-0.1.4/lib/simplecov_json_formatter/result_exporter.rb +27 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov_json_formatter-0.1.4/lib/simplecov_json_formatter/result_hash_formatter.rb +52 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov_json_formatter-0.1.4/lib/simplecov_json_formatter/source_file_formatter.rb +65 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov_json_formatter-0.1.4/lib/simplecov_json_formatter/version.rb +5 -0
- data/vendor/bundle/ruby/3.3.0/gems/simplecov_json_formatter-0.1.4/lib/simplecov_json_formatter.rb +36 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/.gitignore +9 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/.rubocop.yml +53 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/.ruby-gemset +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/.ruby-version +1 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/CHANGELOG.md +46 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/CONTRIBUTING.md +96 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/Gemfile +2 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/Gemfile.lock +68 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/LICENSE +201 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/README.md +777 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/Rakefile +10 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/examples/README.md +51 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/examples/basic_vpc.rb +172 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/examples/complete_web_app.rb +626 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/examples/kubernetes_microservices.rb +873 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/examples/multi_cloud_backup.rb +456 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/flake.lock +835 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/flake.nix +62 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/gemset.nix +250 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/lib/terraform-synthesizer/version.rb +3 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/lib/terraform-synthesizer.rb +21 -0
- data/vendor/bundle/ruby/3.3.0/gems/terraform-synthesizer-0.0.28/terraform-synthesizer.gemspec +32 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/MIT-LICENSE +20 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/README.md +1477 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/core_ext/kernel.rb +64 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/core_ext/module.rb +20 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/cref/map.rb +159 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/cref.rb +69 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/error.rb +23 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/gem_inflector.rb +17 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/gem_loader.rb +68 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/inflector.rb +46 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/internal.rb +13 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/callbacks.rb +96 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/config.rb +357 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/eager_load.rb +230 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/file_system.rb +165 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/helpers.rb +46 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader.rb +643 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/null_inflector.rb +6 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/real_mod_name.rb +19 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/registry/autoloads.rb +38 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/registry/explicit_namespaces.rb +61 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/registry/inceptions.rb +31 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/registry/loaders.rb +33 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/registry.rb +89 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk/version.rb +6 -0
- data/vendor/bundle/ruby/3.3.0/gems/zeitwerk-2.7.5/lib/zeitwerk.rb +29 -0
- data/vendor/bundle/ruby/3.3.0/specifications/abstract-synthesizer-0.0.15.gemspec +36 -0
- data/vendor/bundle/ruby/3.3.0/specifications/base64-0.3.0.gemspec +23 -0
- data/vendor/bundle/ruby/3.3.0/specifications/bigdecimal-4.0.1.gemspec +25 -0
- data/vendor/bundle/ruby/3.3.0/specifications/concurrent-ruby-1.3.6.gemspec +24 -0
- data/vendor/bundle/ruby/3.3.0/specifications/diff-lcs-1.6.2.gemspec +46 -0
- data/vendor/bundle/ruby/3.3.0/specifications/docile-1.4.1.gemspec +22 -0
- data/vendor/bundle/ruby/3.3.0/specifications/dry-core-1.2.0.gemspec +44 -0
- data/vendor/bundle/ruby/3.3.0/specifications/dry-inflector-1.3.1.gemspec +38 -0
- data/vendor/bundle/ruby/3.3.0/specifications/dry-logic-1.6.0.gemspec +38 -0
- data/vendor/bundle/ruby/3.3.0/specifications/dry-struct-1.8.0.gemspec +38 -0
- data/vendor/bundle/ruby/3.3.0/specifications/dry-types-1.9.1.gemspec +53 -0
- data/vendor/bundle/ruby/3.3.0/specifications/ice_nine-0.11.2.gemspec +32 -0
- data/vendor/bundle/ruby/3.3.0/specifications/logger-1.7.0.gemspec +22 -0
- data/vendor/bundle/ruby/3.3.0/specifications/rake-13.3.1.gemspec +26 -0
- data/vendor/bundle/ruby/3.3.0/specifications/rspec-3.13.2.gemspec +39 -0
- data/vendor/bundle/ruby/3.3.0/specifications/rspec-core-3.13.6.gemspec +37 -0
- data/vendor/bundle/ruby/3.3.0/specifications/rspec-expectations-3.13.5.gemspec +36 -0
- data/vendor/bundle/ruby/3.3.0/specifications/rspec-mocks-3.13.7.gemspec +36 -0
- data/vendor/bundle/ruby/3.3.0/specifications/rspec-support-3.13.7.gemspec +36 -0
- data/vendor/bundle/ruby/3.3.0/specifications/simplecov-0.22.0.gemspec +36 -0
- data/vendor/bundle/ruby/3.3.0/specifications/simplecov-html-0.13.2.gemspec +22 -0
- data/vendor/bundle/ruby/3.3.0/specifications/simplecov_json_formatter-0.1.4.gemspec +21 -0
- data/vendor/bundle/ruby/3.3.0/specifications/terraform-synthesizer-0.0.28.gemspec +38 -0
- data/vendor/bundle/ruby/3.3.0/specifications/zeitwerk-2.7.5.gemspec +22 -0
- metadata +1094 -10
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
module RSpec
|
|
2
|
+
module Core
|
|
3
|
+
# Provides methods to mark examples as pending. These methods are available
|
|
4
|
+
# to be called from within any example or hook.
|
|
5
|
+
module Pending
|
|
6
|
+
# Raised in the middle of an example to indicate that it should be marked
|
|
7
|
+
# as skipped.
|
|
8
|
+
class SkipDeclaredInExample < StandardError
|
|
9
|
+
attr_reader :argument
|
|
10
|
+
|
|
11
|
+
def initialize(argument)
|
|
12
|
+
@argument = argument
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
# If Test::Unit is loaded, we'll use its error as baseclass, so that
|
|
17
|
+
# Test::Unit will report unmet RSpec expectations as failures rather than
|
|
18
|
+
# errors.
|
|
19
|
+
begin
|
|
20
|
+
class PendingExampleFixedError < Test::Unit::AssertionFailedError; end
|
|
21
|
+
rescue
|
|
22
|
+
class PendingExampleFixedError < StandardError; end
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
# @private
|
|
26
|
+
NO_REASON_GIVEN = 'No reason given'
|
|
27
|
+
|
|
28
|
+
# @private
|
|
29
|
+
NOT_YET_IMPLEMENTED = 'Not yet implemented'
|
|
30
|
+
|
|
31
|
+
# @overload pending()
|
|
32
|
+
# @overload pending(message)
|
|
33
|
+
#
|
|
34
|
+
# Marks an example as pending. The rest of the example will still be
|
|
35
|
+
# executed, and if it passes the example will fail to indicate that the
|
|
36
|
+
# pending can be removed.
|
|
37
|
+
#
|
|
38
|
+
# @param message [String] optional message to add to the summary report.
|
|
39
|
+
#
|
|
40
|
+
# @example
|
|
41
|
+
# describe "some behaviour" do
|
|
42
|
+
# # reported as "Pending: no reason given"
|
|
43
|
+
# it "is pending with no message" do
|
|
44
|
+
# pending
|
|
45
|
+
# raise "broken"
|
|
46
|
+
# end
|
|
47
|
+
#
|
|
48
|
+
# # reported as "Pending: something else getting finished"
|
|
49
|
+
# it "is pending with a custom message" do
|
|
50
|
+
# pending("something else getting finished")
|
|
51
|
+
# raise "broken"
|
|
52
|
+
# end
|
|
53
|
+
# end
|
|
54
|
+
#
|
|
55
|
+
# @note When using `pending` inside an example body using this method
|
|
56
|
+
# hooks, such as `before(:example)`, have already be run. This means that
|
|
57
|
+
# a failure from the code in the `before` hook will prevent the example
|
|
58
|
+
# from being considered pending, as the example body would not be
|
|
59
|
+
# executed. If you need to consider hooks as pending as well you can use
|
|
60
|
+
# the pending metadata as an alternative, e.g.
|
|
61
|
+
# `it "does something", pending: "message"`.
|
|
62
|
+
def pending(message=nil, &_block)
|
|
63
|
+
current_example = RSpec.current_example
|
|
64
|
+
|
|
65
|
+
if block_given?
|
|
66
|
+
raise ArgumentError, <<-EOS.gsub(/^\s+\|/, '')
|
|
67
|
+
|The semantics of `RSpec::Core::Pending#pending` have changed in
|
|
68
|
+
|RSpec 3. In RSpec 2.x, it caused the example to be skipped. In
|
|
69
|
+
|RSpec 3, the rest of the example is still run but is expected to
|
|
70
|
+
|fail, and will be marked as a failure (rather than as pending) if
|
|
71
|
+
|the example passes.
|
|
72
|
+
|
|
|
73
|
+
|Passing a block within an example is now deprecated. Marking the
|
|
74
|
+
|example as pending provides the same behavior in RSpec 3 which was
|
|
75
|
+
|provided only by the block in RSpec 2.x.
|
|
76
|
+
|
|
|
77
|
+
|Move the code in the block provided to `pending` into the rest of
|
|
78
|
+
|the example body.
|
|
79
|
+
|
|
|
80
|
+
|Called from #{CallerFilter.first_non_rspec_line}.
|
|
81
|
+
|
|
|
82
|
+
EOS
|
|
83
|
+
elsif current_example
|
|
84
|
+
Pending.mark_pending! current_example, message
|
|
85
|
+
else
|
|
86
|
+
raise "`pending` may not be used outside of examples, such as in " \
|
|
87
|
+
"before(:context). Maybe you want `skip`?"
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
# @overload skip()
|
|
92
|
+
# @overload skip(message)
|
|
93
|
+
#
|
|
94
|
+
# Marks an example as pending and skips execution.
|
|
95
|
+
#
|
|
96
|
+
# @param message [String] optional message to add to the summary report.
|
|
97
|
+
#
|
|
98
|
+
# @example
|
|
99
|
+
# describe "an example" do
|
|
100
|
+
# # reported as "Pending: no reason given"
|
|
101
|
+
# it "is skipped with no message" do
|
|
102
|
+
# skip
|
|
103
|
+
# end
|
|
104
|
+
#
|
|
105
|
+
# # reported as "Pending: something else getting finished"
|
|
106
|
+
# it "is skipped with a custom message" do
|
|
107
|
+
# skip "something else getting finished"
|
|
108
|
+
# end
|
|
109
|
+
# end
|
|
110
|
+
def skip(message=nil)
|
|
111
|
+
current_example = RSpec.current_example
|
|
112
|
+
|
|
113
|
+
Pending.mark_skipped!(current_example, message) if current_example
|
|
114
|
+
|
|
115
|
+
raise SkipDeclaredInExample.new(message)
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
# @private
|
|
119
|
+
#
|
|
120
|
+
# Mark example as skipped.
|
|
121
|
+
#
|
|
122
|
+
# @param example [RSpec::Core::Example] the example to mark as skipped
|
|
123
|
+
# @param message_or_bool [Boolean, String] the message to use, or true
|
|
124
|
+
def self.mark_skipped!(example, message_or_bool)
|
|
125
|
+
Pending.mark_pending! example, message_or_bool
|
|
126
|
+
example.metadata[:skip] = true
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
# @private
|
|
130
|
+
#
|
|
131
|
+
# Mark example as pending.
|
|
132
|
+
#
|
|
133
|
+
# @param example [RSpec::Core::Example] the example to mark as pending
|
|
134
|
+
# @param message_or_bool [Boolean, String] the message to use, or true
|
|
135
|
+
def self.mark_pending!(example, message_or_bool)
|
|
136
|
+
message = if !message_or_bool || !(String === message_or_bool)
|
|
137
|
+
NO_REASON_GIVEN
|
|
138
|
+
else
|
|
139
|
+
message_or_bool
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
example.metadata[:pending] = true
|
|
143
|
+
example.execution_result.pending_message = message
|
|
144
|
+
example.execution_result.pending_fixed = false
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
# @private
|
|
148
|
+
#
|
|
149
|
+
# Mark example as fixed.
|
|
150
|
+
#
|
|
151
|
+
# @param example [RSpec::Core::Example] the example to mark as fixed
|
|
152
|
+
def self.mark_fixed!(example)
|
|
153
|
+
example.execution_result.pending_fixed = true
|
|
154
|
+
end
|
|
155
|
+
end
|
|
156
|
+
end
|
|
157
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
module RSpec
|
|
2
|
+
module Core
|
|
3
|
+
# @private
|
|
4
|
+
class Profiler
|
|
5
|
+
NOTIFICATIONS = [:example_group_started, :example_group_finished, :example_started]
|
|
6
|
+
|
|
7
|
+
def initialize
|
|
8
|
+
@example_groups = Hash.new { |h, k| h[k] = { :count => 0 } }
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
attr_reader :example_groups
|
|
12
|
+
|
|
13
|
+
def example_group_started(notification)
|
|
14
|
+
return unless notification.group.top_level?
|
|
15
|
+
|
|
16
|
+
@example_groups[notification.group][:start] = Time.now
|
|
17
|
+
@example_groups[notification.group][:description] = notification.group.top_level_description
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def example_group_finished(notification)
|
|
21
|
+
return unless notification.group.top_level?
|
|
22
|
+
|
|
23
|
+
group = @example_groups[notification.group]
|
|
24
|
+
return unless group.key?(:start)
|
|
25
|
+
group[:total_time] = Time.now - group[:start]
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def example_started(notification)
|
|
29
|
+
group = notification.example.example_group.parent_groups.last
|
|
30
|
+
@example_groups[group][:count] += 1
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.6/lib/rspec/core/project_initializer/.rspec
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
--require spec_helper
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
|
2
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
|
3
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
|
4
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
|
5
|
+
# files.
|
|
6
|
+
#
|
|
7
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
|
8
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
|
9
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
|
10
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
|
11
|
+
# a separate helper file that requires the additional dependencies and performs
|
|
12
|
+
# the additional setup, and require it from the spec files that actually need
|
|
13
|
+
# it.
|
|
14
|
+
#
|
|
15
|
+
# See https://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
|
16
|
+
RSpec.configure do |config|
|
|
17
|
+
# rspec-expectations config goes here. You can use an alternate
|
|
18
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
|
19
|
+
# assertions if you prefer.
|
|
20
|
+
config.expect_with :rspec do |expectations|
|
|
21
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
|
22
|
+
# and `failure_message` of custom matchers include text for helper methods
|
|
23
|
+
# defined using `chain`, e.g.:
|
|
24
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
|
25
|
+
# # => "be bigger than 2 and smaller than 4"
|
|
26
|
+
# ...rather than:
|
|
27
|
+
# # => "be bigger than 2"
|
|
28
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
|
32
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
|
33
|
+
config.mock_with :rspec do |mocks|
|
|
34
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
|
35
|
+
# a real object. This is generally recommended, and will default to
|
|
36
|
+
# `true` in RSpec 4.
|
|
37
|
+
mocks.verify_partial_doubles = true
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
# This option will default to `:apply_to_host_groups` in RSpec 4 (and will
|
|
41
|
+
# have no way to turn it off -- the option exists only for backwards
|
|
42
|
+
# compatibility in RSpec 3). It causes shared context metadata to be
|
|
43
|
+
# inherited by the metadata hash of host groups and examples, rather than
|
|
44
|
+
# triggering implicit auto-inclusion in groups with matching metadata.
|
|
45
|
+
config.shared_context_metadata_behavior = :apply_to_host_groups
|
|
46
|
+
|
|
47
|
+
# The settings below are suggested to provide a good initial experience
|
|
48
|
+
# with RSpec, but feel free to customize to your heart's content.
|
|
49
|
+
=begin
|
|
50
|
+
# This allows you to limit a spec run to individual examples or groups
|
|
51
|
+
# you care about by tagging them with `:focus` metadata. When nothing
|
|
52
|
+
# is tagged with `:focus`, all examples get run. RSpec also provides
|
|
53
|
+
# aliases for `it`, `describe`, and `context` that include `:focus`
|
|
54
|
+
# metadata: `fit`, `fdescribe` and `fcontext`, respectively.
|
|
55
|
+
config.filter_run_when_matching :focus
|
|
56
|
+
|
|
57
|
+
# Allows RSpec to persist some state between runs in order to support
|
|
58
|
+
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
|
59
|
+
# you configure your source control system to ignore this file.
|
|
60
|
+
config.example_status_persistence_file_path = "spec/examples.txt"
|
|
61
|
+
|
|
62
|
+
# Limits the available syntax to the non-monkey patched syntax that is
|
|
63
|
+
# recommended. For more details, see:
|
|
64
|
+
# https://rspec.info/features/3-12/rspec-core/configuration/zero-monkey-patching-mode/
|
|
65
|
+
config.disable_monkey_patching!
|
|
66
|
+
|
|
67
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
|
68
|
+
# be too noisy due to issues in dependencies.
|
|
69
|
+
config.warnings = true
|
|
70
|
+
|
|
71
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
|
72
|
+
# file, and it's useful to allow more verbose output when running an
|
|
73
|
+
# individual spec file.
|
|
74
|
+
if config.files_to_run.one?
|
|
75
|
+
# Use the documentation formatter for detailed output,
|
|
76
|
+
# unless a formatter has already been configured
|
|
77
|
+
# (e.g. via a command-line flag).
|
|
78
|
+
config.default_formatter = "doc"
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
# Print the 10 slowest examples and example groups at the
|
|
82
|
+
# end of the spec run, to help surface which specs are running
|
|
83
|
+
# particularly slow.
|
|
84
|
+
config.profile_examples = 10
|
|
85
|
+
|
|
86
|
+
# Run specs in random order to surface order dependencies. If you find an
|
|
87
|
+
# order dependency and want to debug it, you can fix the order by providing
|
|
88
|
+
# the seed, which is printed after each run.
|
|
89
|
+
# --seed 1234
|
|
90
|
+
config.order = :random
|
|
91
|
+
|
|
92
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
|
93
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
|
94
|
+
# test failures related to randomization by passing the same `--seed` value
|
|
95
|
+
# as the one that triggered the failure.
|
|
96
|
+
Kernel.srand config.seed
|
|
97
|
+
=end
|
|
98
|
+
end
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
RSpec::Support.require_rspec_support "directory_maker"
|
|
2
|
+
|
|
3
|
+
module RSpec
|
|
4
|
+
module Core
|
|
5
|
+
# @private
|
|
6
|
+
# Generates conventional files for an RSpec project.
|
|
7
|
+
class ProjectInitializer
|
|
8
|
+
attr_reader :destination, :stream, :template_path
|
|
9
|
+
|
|
10
|
+
DOT_RSPEC_FILE = '.rspec'
|
|
11
|
+
SPEC_HELPER_FILE = 'spec/spec_helper.rb'
|
|
12
|
+
|
|
13
|
+
def initialize(opts={})
|
|
14
|
+
@destination = opts.fetch(:destination, Dir.getwd)
|
|
15
|
+
@stream = opts.fetch(:report_stream, $stdout)
|
|
16
|
+
@template_path = opts.fetch(:template_path) do
|
|
17
|
+
File.expand_path("../project_initializer", __FILE__)
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def run
|
|
22
|
+
copy_template DOT_RSPEC_FILE
|
|
23
|
+
copy_template SPEC_HELPER_FILE
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
private
|
|
27
|
+
|
|
28
|
+
def copy_template(file)
|
|
29
|
+
destination_file = File.join(destination, file)
|
|
30
|
+
return report_exists(file) if File.exist?(destination_file)
|
|
31
|
+
|
|
32
|
+
report_creating(file)
|
|
33
|
+
RSpec::Support::DirectoryMaker.mkdir_p(File.dirname(destination_file))
|
|
34
|
+
File.open(destination_file, 'w') do |f|
|
|
35
|
+
f.write File.read(File.join(template_path, file))
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
def report_exists(file)
|
|
40
|
+
stream.puts " exist #{file}"
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
def report_creating(file)
|
|
44
|
+
stream.puts " create #{file}"
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
end
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
require 'rake'
|
|
2
|
+
require 'rake/tasklib'
|
|
3
|
+
require 'rspec/support'
|
|
4
|
+
|
|
5
|
+
RSpec::Support.require_rspec_support "ruby_features"
|
|
6
|
+
|
|
7
|
+
# :nocov:
|
|
8
|
+
unless RSpec::Support.respond_to?(:require_rspec_core)
|
|
9
|
+
RSpec::Support.define_optimized_require_for_rspec(:core) { |f| require_relative "../#{f}" }
|
|
10
|
+
end
|
|
11
|
+
# :nocov:
|
|
12
|
+
|
|
13
|
+
RSpec::Support.require_rspec_core "shell_escape"
|
|
14
|
+
|
|
15
|
+
module RSpec
|
|
16
|
+
module Core
|
|
17
|
+
# RSpec rake task
|
|
18
|
+
#
|
|
19
|
+
# @see Rakefile
|
|
20
|
+
class RakeTask < ::Rake::TaskLib
|
|
21
|
+
include ::Rake::DSL if defined?(::Rake::DSL)
|
|
22
|
+
include RSpec::Core::ShellEscape
|
|
23
|
+
|
|
24
|
+
# Default path to the RSpec executable.
|
|
25
|
+
DEFAULT_RSPEC_PATH = File.expand_path('../../../../exe/rspec', __FILE__)
|
|
26
|
+
|
|
27
|
+
# Default pattern for spec files.
|
|
28
|
+
DEFAULT_PATTERN = 'spec/**{,/*/**}/*_spec.rb'
|
|
29
|
+
|
|
30
|
+
# Name of task. Defaults to `:spec`.
|
|
31
|
+
attr_accessor :name
|
|
32
|
+
|
|
33
|
+
# Files matching this pattern will be loaded.
|
|
34
|
+
# Defaults to `'spec/**{,/*/**}/*_spec.rb'`.
|
|
35
|
+
attr_accessor :pattern
|
|
36
|
+
|
|
37
|
+
# Files matching this pattern will be excluded.
|
|
38
|
+
# Defaults to `nil`.
|
|
39
|
+
attr_accessor :exclude_pattern
|
|
40
|
+
|
|
41
|
+
# Whether or not to fail Rake when an error occurs (typically when
|
|
42
|
+
# examples fail). Defaults to `true`.
|
|
43
|
+
attr_accessor :fail_on_error
|
|
44
|
+
|
|
45
|
+
# A message to print to stderr when there are failures.
|
|
46
|
+
attr_accessor :failure_message
|
|
47
|
+
|
|
48
|
+
if RUBY_VERSION < "1.9.0" || Support::Ruby.jruby?
|
|
49
|
+
# Run RSpec with a clean (empty) environment is not supported
|
|
50
|
+
# :nocov:
|
|
51
|
+
def with_clean_environment=(_value)
|
|
52
|
+
raise ArgumentError, "Running in a clean environment is not supported on Ruby versions before 1.9.0"
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
# Run RSpec with a clean (empty) environment is not supported
|
|
56
|
+
def with_clean_environment
|
|
57
|
+
false
|
|
58
|
+
end
|
|
59
|
+
# :nocov:
|
|
60
|
+
else
|
|
61
|
+
# Run RSpec with a clean (empty) environment.
|
|
62
|
+
attr_accessor :with_clean_environment
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
# Use verbose output. If this is set to true, the task will print the
|
|
66
|
+
# executed spec command to stdout. Defaults to `true`.
|
|
67
|
+
attr_accessor :verbose
|
|
68
|
+
|
|
69
|
+
# Command line options to pass to ruby. Defaults to `nil`.
|
|
70
|
+
attr_accessor :ruby_opts
|
|
71
|
+
|
|
72
|
+
# Path to RSpec. Defaults to the absolute path to the
|
|
73
|
+
# rspec binary from the loaded rspec-core gem.
|
|
74
|
+
attr_accessor :rspec_path
|
|
75
|
+
|
|
76
|
+
# Command line options to pass to RSpec. Defaults to `nil`.
|
|
77
|
+
attr_accessor :rspec_opts
|
|
78
|
+
|
|
79
|
+
def initialize(*args, &task_block)
|
|
80
|
+
@name = args.shift || :spec
|
|
81
|
+
@ruby_opts = nil
|
|
82
|
+
@rspec_opts = nil
|
|
83
|
+
@verbose = true
|
|
84
|
+
@fail_on_error = true
|
|
85
|
+
@rspec_path = DEFAULT_RSPEC_PATH
|
|
86
|
+
@pattern = DEFAULT_PATTERN
|
|
87
|
+
|
|
88
|
+
define(args, &task_block)
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
# @private
|
|
92
|
+
def run_task(verbose)
|
|
93
|
+
command = spec_command
|
|
94
|
+
puts command if verbose
|
|
95
|
+
|
|
96
|
+
if with_clean_environment
|
|
97
|
+
return if system({}, command, :unsetenv_others => true)
|
|
98
|
+
else
|
|
99
|
+
return if system(command)
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
puts failure_message if failure_message
|
|
103
|
+
|
|
104
|
+
return unless fail_on_error
|
|
105
|
+
$stderr.puts "#{command} failed" if verbose
|
|
106
|
+
exit $?.exitstatus || 1
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
private
|
|
110
|
+
|
|
111
|
+
# @private
|
|
112
|
+
def define(args, &task_block)
|
|
113
|
+
desc "Run RSpec code examples" unless ::Rake.application.last_description
|
|
114
|
+
|
|
115
|
+
task name, *args do |_, task_args|
|
|
116
|
+
RakeFileUtils.__send__(:verbose, verbose) do
|
|
117
|
+
task_block.call(*[self, task_args].slice(0, task_block.arity)) if task_block
|
|
118
|
+
run_task verbose
|
|
119
|
+
end
|
|
120
|
+
end
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
def file_inclusion_specification
|
|
124
|
+
if ENV['SPEC']
|
|
125
|
+
FileList[ENV['SPEC']].sort
|
|
126
|
+
elsif String === pattern && !File.exist?(pattern)
|
|
127
|
+
return if [*rspec_opts].any? { |opt| opt =~ /--pattern/ }
|
|
128
|
+
"--pattern #{escape pattern}"
|
|
129
|
+
else
|
|
130
|
+
# Before RSpec 3.1, we used `FileList` to get the list of matched
|
|
131
|
+
# files, and then pass that along to the `rspec` command. Starting
|
|
132
|
+
# with 3.1, we prefer to pass along the pattern as-is to the `rspec`
|
|
133
|
+
# command, for 3 reasons:
|
|
134
|
+
#
|
|
135
|
+
# * It's *much* less verbose to pass one `--pattern` option than a
|
|
136
|
+
# long list of files.
|
|
137
|
+
# * It ensures `task.pattern` and `--pattern` have the same
|
|
138
|
+
# behavior.
|
|
139
|
+
# * It fixes a bug, where
|
|
140
|
+
# `task.pattern = pattern_that_matches_no_files` would run *all*
|
|
141
|
+
# files because it would cause no pattern or file args to get
|
|
142
|
+
# passed to `rspec`, which causes all files to get run.
|
|
143
|
+
#
|
|
144
|
+
# However, `FileList` is *far* more flexible than the `--pattern`
|
|
145
|
+
# option. Specifically, it supports individual files and directories,
|
|
146
|
+
# as well as arrays of files, directories and globs, as well as other
|
|
147
|
+
# `FileList` objects.
|
|
148
|
+
#
|
|
149
|
+
# For backwards compatibility, we have to fall back to using FileList
|
|
150
|
+
# if the user has passed a `pattern` option that will not work with
|
|
151
|
+
# `--pattern`.
|
|
152
|
+
#
|
|
153
|
+
# TODO: consider deprecating support for this and removing it in
|
|
154
|
+
# RSpec 4.
|
|
155
|
+
FileList[pattern].sort.map { |file| escape file }
|
|
156
|
+
end
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
def file_exclusion_specification
|
|
160
|
+
" --exclude-pattern #{escape exclude_pattern}" if exclude_pattern
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
def spec_command
|
|
164
|
+
cmd_parts = []
|
|
165
|
+
cmd_parts << RUBY
|
|
166
|
+
cmd_parts << ruby_opts
|
|
167
|
+
cmd_parts << rspec_load_path
|
|
168
|
+
cmd_parts << escape(rspec_path)
|
|
169
|
+
cmd_parts << file_inclusion_specification
|
|
170
|
+
cmd_parts << file_exclusion_specification
|
|
171
|
+
cmd_parts << rspec_opts
|
|
172
|
+
cmd_parts.flatten.reject(&blank).join(" ")
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
def blank
|
|
176
|
+
lambda { |s| s.nil? || s == "" }
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
def rspec_load_path
|
|
180
|
+
@rspec_load_path ||= begin
|
|
181
|
+
core_and_support = $LOAD_PATH.grep(
|
|
182
|
+
/#{File::SEPARATOR}rspec-(core|support)[^#{File::SEPARATOR}]*#{File::SEPARATOR}lib/
|
|
183
|
+
).uniq
|
|
184
|
+
|
|
185
|
+
"-I#{core_and_support.map { |file| escape file }.join(File::PATH_SEPARATOR)}"
|
|
186
|
+
end
|
|
187
|
+
end
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
end
|