pangea-core 0.1.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 +12 -42
- 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/component_registry.rb +44 -0
- data/lib/pangea/components/base.rb +73 -0
- 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/entities/module_definition.rb +120 -0
- data/lib/pangea/entities/namespace.rb +144 -0
- data/lib/pangea/entities/project.rb +84 -0
- data/lib/pangea/entities/template.rb +103 -0
- data/lib/pangea/entities.rb +26 -0
- data/lib/pangea/errors.rb +124 -0
- data/lib/pangea/logging/formatters.rb +90 -0
- data/lib/pangea/logging/structured_logger.rb +186 -0
- data/lib/pangea/logging.rb +22 -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 +24 -1
- data/lib/pangea/resources/builders/output_builder.rb +113 -0
- data/lib/pangea/resources/reference.rb +9 -4
- data/lib/pangea/resources/reference_generator.rb +32 -0
- data/lib/pangea/resources/resource_builder.rb +144 -0
- 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/format_validators.rb +58 -0
- data/lib/pangea/resources/validators/network_validators.rb +81 -0
- 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/indifferent_hash.rb +69 -0
- data/lib/pangea/testing/mock_resource_reference.rb +70 -0
- data/lib/pangea/testing/mock_terraform_synthesizer.rb +75 -0
- data/lib/pangea/testing/resource_examples.rb +53 -0
- data/lib/pangea/testing/spec_generator.rb +176 -0
- data/lib/pangea/testing/spec_setup.rb +61 -0
- data/lib/pangea/testing/synthesis_test_helpers.rb +171 -0
- data/lib/pangea/testing/type_purity.rb +132 -0
- data/lib/pangea/testing.rb +25 -0
- data/lib/pangea/types/base_types.rb +53 -0
- data/lib/pangea/types/domain_types.rb +114 -0
- data/lib/pangea/types/registry.rb +70 -0
- data/lib/pangea/validation.rb +137 -0
- data/lib/pangea-core/version.rb +1 -1
- data/lib/pangea-core.rb +57 -1
- data/pangea-core.gemspec +4 -2
- 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 +1120 -9
data/flake.lock
CHANGED
|
@@ -1,6 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"nodes": {
|
|
3
3
|
"cachix": {
|
|
4
|
+
"inputs": {
|
|
5
|
+
"devenv": [
|
|
6
|
+
"devenv"
|
|
7
|
+
],
|
|
8
|
+
"flake-compat": [
|
|
9
|
+
"devenv",
|
|
10
|
+
"flake-compat"
|
|
11
|
+
],
|
|
12
|
+
"git-hooks": [
|
|
13
|
+
"devenv",
|
|
14
|
+
"git-hooks"
|
|
15
|
+
],
|
|
16
|
+
"nixpkgs": [
|
|
17
|
+
"devenv",
|
|
18
|
+
"nixpkgs"
|
|
19
|
+
]
|
|
20
|
+
},
|
|
21
|
+
"locked": {
|
|
22
|
+
"lastModified": 1777487137,
|
|
23
|
+
"narHash": "sha256-TuvKVBX60mqyMT6OB5JqVEh1YIWtFMR/igLCaCdC9tw=",
|
|
24
|
+
"owner": "cachix",
|
|
25
|
+
"repo": "cachix",
|
|
26
|
+
"rev": "a66a440c321d35f7193472c317f42a55ccd1cb93",
|
|
27
|
+
"type": "github"
|
|
28
|
+
},
|
|
29
|
+
"original": {
|
|
30
|
+
"owner": "cachix",
|
|
31
|
+
"ref": "latest",
|
|
32
|
+
"repo": "cachix",
|
|
33
|
+
"type": "github"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"cachix_2": {
|
|
4
37
|
"inputs": {
|
|
5
38
|
"devenv": [
|
|
6
39
|
"forge",
|
|
@@ -10,7 +43,7 @@
|
|
|
10
43
|
"forge",
|
|
11
44
|
"crate2nix"
|
|
12
45
|
],
|
|
13
|
-
"git-hooks": "git-
|
|
46
|
+
"git-hooks": "git-hooks_2",
|
|
14
47
|
"nixpkgs": "nixpkgs"
|
|
15
48
|
},
|
|
16
49
|
"locked": {
|
|
@@ -28,20 +61,126 @@
|
|
|
28
61
|
"type": "github"
|
|
29
62
|
}
|
|
30
63
|
},
|
|
31
|
-
"
|
|
64
|
+
"cachix_3": {
|
|
32
65
|
"inputs": {
|
|
33
66
|
"devenv": [
|
|
34
67
|
"forge",
|
|
68
|
+
"devenv"
|
|
69
|
+
],
|
|
70
|
+
"flake-compat": [
|
|
71
|
+
"forge",
|
|
72
|
+
"devenv",
|
|
73
|
+
"flake-compat"
|
|
74
|
+
],
|
|
75
|
+
"git-hooks": [
|
|
76
|
+
"forge",
|
|
77
|
+
"devenv",
|
|
78
|
+
"git-hooks"
|
|
79
|
+
],
|
|
80
|
+
"nixpkgs": [
|
|
81
|
+
"forge",
|
|
82
|
+
"devenv",
|
|
83
|
+
"nixpkgs"
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
"locked": {
|
|
87
|
+
"lastModified": 1777487137,
|
|
88
|
+
"narHash": "sha256-TuvKVBX60mqyMT6OB5JqVEh1YIWtFMR/igLCaCdC9tw=",
|
|
89
|
+
"owner": "cachix",
|
|
90
|
+
"repo": "cachix",
|
|
91
|
+
"rev": "a66a440c321d35f7193472c317f42a55ccd1cb93",
|
|
92
|
+
"type": "github"
|
|
93
|
+
},
|
|
94
|
+
"original": {
|
|
95
|
+
"owner": "cachix",
|
|
96
|
+
"ref": "latest",
|
|
97
|
+
"repo": "cachix",
|
|
98
|
+
"type": "github"
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"cachix_4": {
|
|
102
|
+
"inputs": {
|
|
103
|
+
"devenv": [
|
|
104
|
+
"substrate",
|
|
105
|
+
"devenv"
|
|
106
|
+
],
|
|
107
|
+
"flake-compat": [
|
|
108
|
+
"substrate",
|
|
109
|
+
"devenv",
|
|
110
|
+
"flake-compat"
|
|
111
|
+
],
|
|
112
|
+
"git-hooks": [
|
|
113
|
+
"substrate",
|
|
114
|
+
"devenv",
|
|
115
|
+
"git-hooks"
|
|
116
|
+
],
|
|
117
|
+
"nixpkgs": [
|
|
118
|
+
"substrate",
|
|
119
|
+
"devenv",
|
|
120
|
+
"nixpkgs"
|
|
121
|
+
]
|
|
122
|
+
},
|
|
123
|
+
"locked": {
|
|
124
|
+
"lastModified": 1777487137,
|
|
125
|
+
"narHash": "sha256-TuvKVBX60mqyMT6OB5JqVEh1YIWtFMR/igLCaCdC9tw=",
|
|
126
|
+
"owner": "cachix",
|
|
127
|
+
"repo": "cachix",
|
|
128
|
+
"rev": "a66a440c321d35f7193472c317f42a55ccd1cb93",
|
|
129
|
+
"type": "github"
|
|
130
|
+
},
|
|
131
|
+
"original": {
|
|
132
|
+
"owner": "cachix",
|
|
133
|
+
"ref": "latest",
|
|
134
|
+
"repo": "cachix",
|
|
135
|
+
"type": "github"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"cachix_5": {
|
|
139
|
+
"inputs": {
|
|
140
|
+
"devenv": [
|
|
141
|
+
"substrate",
|
|
142
|
+
"devenv",
|
|
143
|
+
"crate2nix"
|
|
144
|
+
],
|
|
145
|
+
"flake-compat": [
|
|
146
|
+
"substrate",
|
|
147
|
+
"devenv",
|
|
148
|
+
"crate2nix"
|
|
149
|
+
],
|
|
150
|
+
"git-hooks": "git-hooks_4",
|
|
151
|
+
"nixpkgs": "nixpkgs_4"
|
|
152
|
+
},
|
|
153
|
+
"locked": {
|
|
154
|
+
"lastModified": 1767714506,
|
|
155
|
+
"narHash": "sha256-WaTs0t1CxhgxbIuvQ97OFhDTVUGd1HA+KzLZUZBhe0s=",
|
|
156
|
+
"owner": "cachix",
|
|
157
|
+
"repo": "cachix",
|
|
158
|
+
"rev": "894c649f0daaa38bbcfb21de64be47dfa7cd0ec9",
|
|
159
|
+
"type": "github"
|
|
160
|
+
},
|
|
161
|
+
"original": {
|
|
162
|
+
"owner": "cachix",
|
|
163
|
+
"ref": "latest",
|
|
164
|
+
"repo": "cachix",
|
|
165
|
+
"type": "github"
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"cachix_6": {
|
|
169
|
+
"inputs": {
|
|
170
|
+
"devenv": [
|
|
171
|
+
"substrate",
|
|
172
|
+
"devenv",
|
|
35
173
|
"crate2nix",
|
|
36
174
|
"crate2nix_stable"
|
|
37
175
|
],
|
|
38
176
|
"flake-compat": [
|
|
39
|
-
"
|
|
177
|
+
"substrate",
|
|
178
|
+
"devenv",
|
|
40
179
|
"crate2nix",
|
|
41
180
|
"crate2nix_stable"
|
|
42
181
|
],
|
|
43
|
-
"git-hooks": "git-
|
|
44
|
-
"nixpkgs": "
|
|
182
|
+
"git-hooks": "git-hooks_5",
|
|
183
|
+
"nixpkgs": "nixpkgs_5"
|
|
45
184
|
},
|
|
46
185
|
"locked": {
|
|
47
186
|
"lastModified": 1767714506,
|
|
@@ -59,25 +198,41 @@
|
|
|
59
198
|
}
|
|
60
199
|
},
|
|
61
200
|
"crate2nix": {
|
|
201
|
+
"flake": false,
|
|
202
|
+
"locked": {
|
|
203
|
+
"lastModified": 1772186516,
|
|
204
|
+
"narHash": "sha256-8s28pzmQ6TOIUzznwFibtW1CMieMUl1rYJIxoQYor58=",
|
|
205
|
+
"owner": "rossng",
|
|
206
|
+
"repo": "crate2nix",
|
|
207
|
+
"rev": "ba5dd398e31ee422fbe021767eb83b0650303a6e",
|
|
208
|
+
"type": "github"
|
|
209
|
+
},
|
|
210
|
+
"original": {
|
|
211
|
+
"owner": "rossng",
|
|
212
|
+
"repo": "crate2nix",
|
|
213
|
+
"rev": "ba5dd398e31ee422fbe021767eb83b0650303a6e",
|
|
214
|
+
"type": "github"
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
"crate2nix_2": {
|
|
62
218
|
"inputs": {
|
|
63
|
-
"cachix": "
|
|
64
|
-
"
|
|
65
|
-
"devshell": "devshell_2",
|
|
219
|
+
"cachix": "cachix_2",
|
|
220
|
+
"devshell": "devshell",
|
|
66
221
|
"flake-compat": "flake-compat_2",
|
|
67
222
|
"flake-parts": "flake-parts_2",
|
|
68
|
-
"nix-test-runner": "nix-test-
|
|
223
|
+
"nix-test-runner": "nix-test-runner",
|
|
69
224
|
"nixpkgs": [
|
|
70
225
|
"forge",
|
|
71
226
|
"nixpkgs"
|
|
72
227
|
],
|
|
73
|
-
"pre-commit-hooks": "pre-commit-
|
|
228
|
+
"pre-commit-hooks": "pre-commit-hooks"
|
|
74
229
|
},
|
|
75
230
|
"locked": {
|
|
76
|
-
"lastModified":
|
|
77
|
-
"narHash": "sha256-
|
|
231
|
+
"lastModified": 1774369503,
|
|
232
|
+
"narHash": "sha256-YeCF4iBhlvTqkn4mihjZgixnDcEVgfyQlNeBsbLYUgQ=",
|
|
78
233
|
"owner": "nix-community",
|
|
79
234
|
"repo": "crate2nix",
|
|
80
|
-
"rev": "
|
|
235
|
+
"rev": "b873ca53dd64e12340416f0fd5e3b33792b9c17b",
|
|
81
236
|
"type": "github"
|
|
82
237
|
},
|
|
83
238
|
"original": {
|
|
@@ -86,14 +241,31 @@
|
|
|
86
241
|
"type": "github"
|
|
87
242
|
}
|
|
88
243
|
},
|
|
89
|
-
"
|
|
244
|
+
"crate2nix_3": {
|
|
245
|
+
"flake": false,
|
|
246
|
+
"locked": {
|
|
247
|
+
"lastModified": 1772186516,
|
|
248
|
+
"narHash": "sha256-8s28pzmQ6TOIUzznwFibtW1CMieMUl1rYJIxoQYor58=",
|
|
249
|
+
"owner": "rossng",
|
|
250
|
+
"repo": "crate2nix",
|
|
251
|
+
"rev": "ba5dd398e31ee422fbe021767eb83b0650303a6e",
|
|
252
|
+
"type": "github"
|
|
253
|
+
},
|
|
254
|
+
"original": {
|
|
255
|
+
"owner": "rossng",
|
|
256
|
+
"repo": "crate2nix",
|
|
257
|
+
"rev": "ba5dd398e31ee422fbe021767eb83b0650303a6e",
|
|
258
|
+
"type": "github"
|
|
259
|
+
}
|
|
260
|
+
},
|
|
261
|
+
"crate2nix_4": {
|
|
90
262
|
"flake": false,
|
|
91
263
|
"locked": {
|
|
92
|
-
"lastModified":
|
|
93
|
-
"narHash": "sha256-
|
|
264
|
+
"lastModified": 1774369503,
|
|
265
|
+
"narHash": "sha256-YeCF4iBhlvTqkn4mihjZgixnDcEVgfyQlNeBsbLYUgQ=",
|
|
94
266
|
"owner": "nix-community",
|
|
95
267
|
"repo": "crate2nix",
|
|
96
|
-
"rev": "
|
|
268
|
+
"rev": "b873ca53dd64e12340416f0fd5e3b33792b9c17b",
|
|
97
269
|
"type": "github"
|
|
98
270
|
},
|
|
99
271
|
"original": {
|
|
@@ -102,20 +274,51 @@
|
|
|
102
274
|
"type": "github"
|
|
103
275
|
}
|
|
104
276
|
},
|
|
277
|
+
"crate2nix_5": {
|
|
278
|
+
"inputs": {
|
|
279
|
+
"cachix": "cachix_5",
|
|
280
|
+
"crate2nix_stable": "crate2nix_stable",
|
|
281
|
+
"devshell": "devshell_3",
|
|
282
|
+
"flake-compat": "flake-compat_5",
|
|
283
|
+
"flake-parts": "flake-parts_6",
|
|
284
|
+
"nix-test-runner": "nix-test-runner_3",
|
|
285
|
+
"nixpkgs": [
|
|
286
|
+
"substrate",
|
|
287
|
+
"devenv",
|
|
288
|
+
"nixpkgs"
|
|
289
|
+
],
|
|
290
|
+
"pre-commit-hooks": "pre-commit-hooks_3"
|
|
291
|
+
},
|
|
292
|
+
"locked": {
|
|
293
|
+
"lastModified": 1772186516,
|
|
294
|
+
"narHash": "sha256-8s28pzmQ6TOIUzznwFibtW1CMieMUl1rYJIxoQYor58=",
|
|
295
|
+
"owner": "rossng",
|
|
296
|
+
"repo": "crate2nix",
|
|
297
|
+
"rev": "ba5dd398e31ee422fbe021767eb83b0650303a6e",
|
|
298
|
+
"type": "github"
|
|
299
|
+
},
|
|
300
|
+
"original": {
|
|
301
|
+
"owner": "rossng",
|
|
302
|
+
"repo": "crate2nix",
|
|
303
|
+
"rev": "ba5dd398e31ee422fbe021767eb83b0650303a6e",
|
|
304
|
+
"type": "github"
|
|
305
|
+
}
|
|
306
|
+
},
|
|
105
307
|
"crate2nix_stable": {
|
|
106
308
|
"inputs": {
|
|
107
|
-
"cachix": "
|
|
309
|
+
"cachix": "cachix_6",
|
|
108
310
|
"crate2nix_stable": [
|
|
109
|
-
"
|
|
311
|
+
"substrate",
|
|
312
|
+
"devenv",
|
|
110
313
|
"crate2nix",
|
|
111
314
|
"crate2nix_stable"
|
|
112
315
|
],
|
|
113
|
-
"devshell": "
|
|
114
|
-
"flake-compat": "flake-
|
|
115
|
-
"flake-parts": "flake-
|
|
116
|
-
"nix-test-runner": "nix-test-
|
|
117
|
-
"nixpkgs": "
|
|
118
|
-
"pre-commit-hooks": "pre-commit-
|
|
316
|
+
"devshell": "devshell_2",
|
|
317
|
+
"flake-compat": "flake-compat_4",
|
|
318
|
+
"flake-parts": "flake-parts_5",
|
|
319
|
+
"nix-test-runner": "nix-test-runner_2",
|
|
320
|
+
"nixpkgs": "nixpkgs_6",
|
|
321
|
+
"pre-commit-hooks": "pre-commit-hooks_2"
|
|
119
322
|
},
|
|
120
323
|
"locked": {
|
|
121
324
|
"lastModified": 1769627083,
|
|
@@ -132,12 +335,101 @@
|
|
|
132
335
|
"type": "github"
|
|
133
336
|
}
|
|
134
337
|
},
|
|
338
|
+
"devenv": {
|
|
339
|
+
"inputs": {
|
|
340
|
+
"cachix": "cachix",
|
|
341
|
+
"crate2nix": "crate2nix",
|
|
342
|
+
"flake-compat": "flake-compat",
|
|
343
|
+
"flake-parts": "flake-parts",
|
|
344
|
+
"ghostty": "ghostty",
|
|
345
|
+
"git-hooks": "git-hooks",
|
|
346
|
+
"nix": "nix",
|
|
347
|
+
"nixd": "nixd",
|
|
348
|
+
"nixpkgs": [
|
|
349
|
+
"nixpkgs"
|
|
350
|
+
],
|
|
351
|
+
"rust-overlay": "rust-overlay"
|
|
352
|
+
},
|
|
353
|
+
"locked": {
|
|
354
|
+
"lastModified": 1779303056,
|
|
355
|
+
"narHash": "sha256-+DJSNTtrdUb5yelcKp8fa5aITlg050701WCOJt0oMtI=",
|
|
356
|
+
"owner": "cachix",
|
|
357
|
+
"repo": "devenv",
|
|
358
|
+
"rev": "0d0be23517b92cbcedd95a0dbb6f735deae9b38c",
|
|
359
|
+
"type": "github"
|
|
360
|
+
},
|
|
361
|
+
"original": {
|
|
362
|
+
"owner": "cachix",
|
|
363
|
+
"repo": "devenv",
|
|
364
|
+
"type": "github"
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
"devenv_2": {
|
|
368
|
+
"inputs": {
|
|
369
|
+
"cachix": "cachix_3",
|
|
370
|
+
"crate2nix": "crate2nix_3",
|
|
371
|
+
"flake-compat": "flake-compat_3",
|
|
372
|
+
"flake-parts": "flake-parts_3",
|
|
373
|
+
"ghostty": "ghostty_2",
|
|
374
|
+
"git-hooks": "git-hooks_3",
|
|
375
|
+
"nix": "nix_2",
|
|
376
|
+
"nixd": "nixd_2",
|
|
377
|
+
"nixpkgs": [
|
|
378
|
+
"forge",
|
|
379
|
+
"nixpkgs"
|
|
380
|
+
],
|
|
381
|
+
"rust-overlay": "rust-overlay_2"
|
|
382
|
+
},
|
|
383
|
+
"locked": {
|
|
384
|
+
"lastModified": 1779303056,
|
|
385
|
+
"narHash": "sha256-+DJSNTtrdUb5yelcKp8fa5aITlg050701WCOJt0oMtI=",
|
|
386
|
+
"owner": "cachix",
|
|
387
|
+
"repo": "devenv",
|
|
388
|
+
"rev": "0d0be23517b92cbcedd95a0dbb6f735deae9b38c",
|
|
389
|
+
"type": "github"
|
|
390
|
+
},
|
|
391
|
+
"original": {
|
|
392
|
+
"owner": "cachix",
|
|
393
|
+
"repo": "devenv",
|
|
394
|
+
"type": "github"
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
"devenv_3": {
|
|
398
|
+
"inputs": {
|
|
399
|
+
"cachix": "cachix_4",
|
|
400
|
+
"crate2nix": "crate2nix_5",
|
|
401
|
+
"flake-compat": "flake-compat_6",
|
|
402
|
+
"flake-parts": "flake-parts_7",
|
|
403
|
+
"ghostty": "ghostty_3",
|
|
404
|
+
"git-hooks": "git-hooks_6",
|
|
405
|
+
"nix": "nix_3",
|
|
406
|
+
"nixd": "nixd_3",
|
|
407
|
+
"nixpkgs": [
|
|
408
|
+
"substrate",
|
|
409
|
+
"nixpkgs"
|
|
410
|
+
],
|
|
411
|
+
"rust-overlay": "rust-overlay_3"
|
|
412
|
+
},
|
|
413
|
+
"locked": {
|
|
414
|
+
"lastModified": 1778071019,
|
|
415
|
+
"narHash": "sha256-vb4UzOKKdLext4faiI1KbI0yrTKNdI8wyxHvOMycWd8=",
|
|
416
|
+
"owner": "cachix",
|
|
417
|
+
"repo": "devenv",
|
|
418
|
+
"rev": "a3ebee0b80ce56ae4acba2c971c09ee6eca75338",
|
|
419
|
+
"type": "github"
|
|
420
|
+
},
|
|
421
|
+
"original": {
|
|
422
|
+
"owner": "cachix",
|
|
423
|
+
"repo": "devenv",
|
|
424
|
+
"rev": "a3ebee0b80ce56ae4acba2c971c09ee6eca75338",
|
|
425
|
+
"type": "github"
|
|
426
|
+
}
|
|
427
|
+
},
|
|
135
428
|
"devshell": {
|
|
136
429
|
"inputs": {
|
|
137
430
|
"nixpkgs": [
|
|
138
431
|
"forge",
|
|
139
432
|
"crate2nix",
|
|
140
|
-
"crate2nix_stable",
|
|
141
433
|
"nixpkgs"
|
|
142
434
|
]
|
|
143
435
|
},
|
|
@@ -158,7 +450,32 @@
|
|
|
158
450
|
"devshell_2": {
|
|
159
451
|
"inputs": {
|
|
160
452
|
"nixpkgs": [
|
|
161
|
-
"
|
|
453
|
+
"substrate",
|
|
454
|
+
"devenv",
|
|
455
|
+
"crate2nix",
|
|
456
|
+
"crate2nix_stable",
|
|
457
|
+
"nixpkgs"
|
|
458
|
+
]
|
|
459
|
+
},
|
|
460
|
+
"locked": {
|
|
461
|
+
"lastModified": 1768818222,
|
|
462
|
+
"narHash": "sha256-460jc0+CZfyaO8+w8JNtlClB2n4ui1RbHfPTLkpwhU8=",
|
|
463
|
+
"owner": "numtide",
|
|
464
|
+
"repo": "devshell",
|
|
465
|
+
"rev": "255a2b1725a20d060f566e4755dbf571bbbb5f76",
|
|
466
|
+
"type": "github"
|
|
467
|
+
},
|
|
468
|
+
"original": {
|
|
469
|
+
"owner": "numtide",
|
|
470
|
+
"repo": "devshell",
|
|
471
|
+
"type": "github"
|
|
472
|
+
}
|
|
473
|
+
},
|
|
474
|
+
"devshell_3": {
|
|
475
|
+
"inputs": {
|
|
476
|
+
"nixpkgs": [
|
|
477
|
+
"substrate",
|
|
478
|
+
"devenv",
|
|
162
479
|
"crate2nix",
|
|
163
480
|
"nixpkgs"
|
|
164
481
|
]
|
|
@@ -186,11 +503,11 @@
|
|
|
186
503
|
"rust-analyzer-src": "rust-analyzer-src"
|
|
187
504
|
},
|
|
188
505
|
"locked": {
|
|
189
|
-
"lastModified":
|
|
190
|
-
"narHash": "sha256-
|
|
506
|
+
"lastModified": 1779270500,
|
|
507
|
+
"narHash": "sha256-r60KTphdevmdIDz1iJ529HvcpOq082ZZ1OnN3jDnrqk=",
|
|
191
508
|
"owner": "nix-community",
|
|
192
509
|
"repo": "fenix",
|
|
193
|
-
"rev": "
|
|
510
|
+
"rev": "848395a91def85c11694587636151d89555f1ddb",
|
|
194
511
|
"type": "github"
|
|
195
512
|
},
|
|
196
513
|
"original": {
|
|
@@ -208,11 +525,11 @@
|
|
|
208
525
|
"rust-analyzer-src": "rust-analyzer-src_2"
|
|
209
526
|
},
|
|
210
527
|
"locked": {
|
|
211
|
-
"lastModified":
|
|
212
|
-
"narHash": "sha256-
|
|
528
|
+
"lastModified": 1779270500,
|
|
529
|
+
"narHash": "sha256-r60KTphdevmdIDz1iJ529HvcpOq082ZZ1OnN3jDnrqk=",
|
|
213
530
|
"owner": "nix-community",
|
|
214
531
|
"repo": "fenix",
|
|
215
|
-
"rev": "
|
|
532
|
+
"rev": "848395a91def85c11694587636151d89555f1ddb",
|
|
216
533
|
"type": "github"
|
|
217
534
|
},
|
|
218
535
|
"original": {
|
|
@@ -222,17 +539,19 @@
|
|
|
222
539
|
}
|
|
223
540
|
},
|
|
224
541
|
"flake-compat": {
|
|
542
|
+
"flake": false,
|
|
225
543
|
"locked": {
|
|
226
|
-
"lastModified":
|
|
227
|
-
"narHash": "sha256-
|
|
228
|
-
"
|
|
229
|
-
"
|
|
230
|
-
"
|
|
231
|
-
"
|
|
544
|
+
"lastModified": 1767039857,
|
|
545
|
+
"narHash": "sha256-vNpUSpF5Nuw8xvDLj2KCwwksIbjua2LZCqhV1LNRDns=",
|
|
546
|
+
"owner": "edolstra",
|
|
547
|
+
"repo": "flake-compat",
|
|
548
|
+
"rev": "5edf11c44bc78a0d334f6334cdaf7d60d732daab",
|
|
549
|
+
"type": "github"
|
|
232
550
|
},
|
|
233
551
|
"original": {
|
|
234
|
-
"
|
|
235
|
-
"
|
|
552
|
+
"owner": "edolstra",
|
|
553
|
+
"repo": "flake-compat",
|
|
554
|
+
"type": "github"
|
|
236
555
|
}
|
|
237
556
|
},
|
|
238
557
|
"flake-compat_2": {
|
|
@@ -249,12 +568,108 @@
|
|
|
249
568
|
"url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz"
|
|
250
569
|
}
|
|
251
570
|
},
|
|
252
|
-
"flake-
|
|
253
|
-
"
|
|
254
|
-
|
|
571
|
+
"flake-compat_3": {
|
|
572
|
+
"flake": false,
|
|
573
|
+
"locked": {
|
|
574
|
+
"lastModified": 1767039857,
|
|
575
|
+
"narHash": "sha256-vNpUSpF5Nuw8xvDLj2KCwwksIbjua2LZCqhV1LNRDns=",
|
|
576
|
+
"owner": "edolstra",
|
|
577
|
+
"repo": "flake-compat",
|
|
578
|
+
"rev": "5edf11c44bc78a0d334f6334cdaf7d60d732daab",
|
|
579
|
+
"type": "github"
|
|
580
|
+
},
|
|
581
|
+
"original": {
|
|
582
|
+
"owner": "edolstra",
|
|
583
|
+
"repo": "flake-compat",
|
|
584
|
+
"type": "github"
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
"flake-compat_4": {
|
|
588
|
+
"locked": {
|
|
589
|
+
"lastModified": 1733328505,
|
|
590
|
+
"narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=",
|
|
591
|
+
"rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
|
|
592
|
+
"revCount": 69,
|
|
593
|
+
"type": "tarball",
|
|
594
|
+
"url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.1.0/01948eb7-9cba-704f-bbf3-3fa956735b52/source.tar.gz"
|
|
595
|
+
},
|
|
596
|
+
"original": {
|
|
597
|
+
"type": "tarball",
|
|
598
|
+
"url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz"
|
|
599
|
+
}
|
|
600
|
+
},
|
|
601
|
+
"flake-compat_5": {
|
|
602
|
+
"locked": {
|
|
603
|
+
"lastModified": 1733328505,
|
|
604
|
+
"narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=",
|
|
605
|
+
"rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
|
|
606
|
+
"revCount": 69,
|
|
607
|
+
"type": "tarball",
|
|
608
|
+
"url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.1.0/01948eb7-9cba-704f-bbf3-3fa956735b52/source.tar.gz"
|
|
609
|
+
},
|
|
610
|
+
"original": {
|
|
611
|
+
"type": "tarball",
|
|
612
|
+
"url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz"
|
|
613
|
+
}
|
|
614
|
+
},
|
|
615
|
+
"flake-compat_6": {
|
|
616
|
+
"flake": false,
|
|
617
|
+
"locked": {
|
|
618
|
+
"lastModified": 1767039857,
|
|
619
|
+
"narHash": "sha256-vNpUSpF5Nuw8xvDLj2KCwwksIbjua2LZCqhV1LNRDns=",
|
|
620
|
+
"owner": "edolstra",
|
|
621
|
+
"repo": "flake-compat",
|
|
622
|
+
"rev": "5edf11c44bc78a0d334f6334cdaf7d60d732daab",
|
|
623
|
+
"type": "github"
|
|
624
|
+
},
|
|
625
|
+
"original": {
|
|
626
|
+
"owner": "edolstra",
|
|
627
|
+
"repo": "flake-compat",
|
|
628
|
+
"type": "github"
|
|
629
|
+
}
|
|
630
|
+
},
|
|
631
|
+
"flake-compat_7": {
|
|
632
|
+
"flake": false,
|
|
633
|
+
"locked": {
|
|
634
|
+
"lastModified": 1761588595,
|
|
635
|
+
"narHash": "sha256-XKUZz9zewJNUj46b4AJdiRZJAvSZ0Dqj2BNfXvFlJC4=",
|
|
636
|
+
"owner": "edolstra",
|
|
637
|
+
"repo": "flake-compat",
|
|
638
|
+
"rev": "f387cd2afec9419c8ee37694406ca490c3f34ee5",
|
|
639
|
+
"type": "github"
|
|
640
|
+
},
|
|
641
|
+
"original": {
|
|
642
|
+
"owner": "edolstra",
|
|
643
|
+
"repo": "flake-compat",
|
|
644
|
+
"type": "github"
|
|
645
|
+
}
|
|
646
|
+
},
|
|
647
|
+
"flake-parts": {
|
|
648
|
+
"inputs": {
|
|
649
|
+
"nixpkgs-lib": [
|
|
650
|
+
"devenv",
|
|
651
|
+
"nixpkgs"
|
|
652
|
+
]
|
|
653
|
+
},
|
|
654
|
+
"locked": {
|
|
655
|
+
"lastModified": 1778716662,
|
|
656
|
+
"narHash": "sha256-m1Yf0wZ8j1OHjTc2UwHwyQRSnNeSgLJOd7q5Y45hzi4=",
|
|
657
|
+
"owner": "hercules-ci",
|
|
658
|
+
"repo": "flake-parts",
|
|
659
|
+
"rev": "f7c1a2d347e4c52d5fb8d10cb4d94b5884e546fb",
|
|
660
|
+
"type": "github"
|
|
661
|
+
},
|
|
662
|
+
"original": {
|
|
663
|
+
"owner": "hercules-ci",
|
|
664
|
+
"repo": "flake-parts",
|
|
665
|
+
"type": "github"
|
|
666
|
+
}
|
|
667
|
+
},
|
|
668
|
+
"flake-parts_2": {
|
|
669
|
+
"inputs": {
|
|
670
|
+
"nixpkgs-lib": [
|
|
255
671
|
"forge",
|
|
256
672
|
"crate2nix",
|
|
257
|
-
"crate2nix_stable",
|
|
258
673
|
"nixpkgs"
|
|
259
674
|
]
|
|
260
675
|
},
|
|
@@ -272,11 +687,56 @@
|
|
|
272
687
|
"type": "github"
|
|
273
688
|
}
|
|
274
689
|
},
|
|
275
|
-
"flake-
|
|
690
|
+
"flake-parts_3": {
|
|
691
|
+
"inputs": {
|
|
692
|
+
"nixpkgs-lib": [
|
|
693
|
+
"forge",
|
|
694
|
+
"devenv",
|
|
695
|
+
"nixpkgs"
|
|
696
|
+
]
|
|
697
|
+
},
|
|
698
|
+
"locked": {
|
|
699
|
+
"lastModified": 1778716662,
|
|
700
|
+
"narHash": "sha256-m1Yf0wZ8j1OHjTc2UwHwyQRSnNeSgLJOd7q5Y45hzi4=",
|
|
701
|
+
"owner": "hercules-ci",
|
|
702
|
+
"repo": "flake-parts",
|
|
703
|
+
"rev": "f7c1a2d347e4c52d5fb8d10cb4d94b5884e546fb",
|
|
704
|
+
"type": "github"
|
|
705
|
+
},
|
|
706
|
+
"original": {
|
|
707
|
+
"owner": "hercules-ci",
|
|
708
|
+
"repo": "flake-parts",
|
|
709
|
+
"type": "github"
|
|
710
|
+
}
|
|
711
|
+
},
|
|
712
|
+
"flake-parts_4": {
|
|
276
713
|
"inputs": {
|
|
277
714
|
"nixpkgs-lib": [
|
|
278
715
|
"forge",
|
|
716
|
+
"nixpkgs"
|
|
717
|
+
]
|
|
718
|
+
},
|
|
719
|
+
"locked": {
|
|
720
|
+
"lastModified": 1778716662,
|
|
721
|
+
"narHash": "sha256-m1Yf0wZ8j1OHjTc2UwHwyQRSnNeSgLJOd7q5Y45hzi4=",
|
|
722
|
+
"owner": "hercules-ci",
|
|
723
|
+
"repo": "flake-parts",
|
|
724
|
+
"rev": "f7c1a2d347e4c52d5fb8d10cb4d94b5884e546fb",
|
|
725
|
+
"type": "github"
|
|
726
|
+
},
|
|
727
|
+
"original": {
|
|
728
|
+
"owner": "hercules-ci",
|
|
729
|
+
"repo": "flake-parts",
|
|
730
|
+
"type": "github"
|
|
731
|
+
}
|
|
732
|
+
},
|
|
733
|
+
"flake-parts_5": {
|
|
734
|
+
"inputs": {
|
|
735
|
+
"nixpkgs-lib": [
|
|
736
|
+
"substrate",
|
|
737
|
+
"devenv",
|
|
279
738
|
"crate2nix",
|
|
739
|
+
"crate2nix_stable",
|
|
280
740
|
"nixpkgs"
|
|
281
741
|
]
|
|
282
742
|
},
|
|
@@ -294,45 +754,75 @@
|
|
|
294
754
|
"type": "github"
|
|
295
755
|
}
|
|
296
756
|
},
|
|
297
|
-
"flake-
|
|
757
|
+
"flake-parts_6": {
|
|
298
758
|
"inputs": {
|
|
299
|
-
"
|
|
759
|
+
"nixpkgs-lib": [
|
|
760
|
+
"substrate",
|
|
761
|
+
"devenv",
|
|
762
|
+
"crate2nix",
|
|
763
|
+
"nixpkgs"
|
|
764
|
+
]
|
|
300
765
|
},
|
|
301
766
|
"locked": {
|
|
302
|
-
"lastModified":
|
|
303
|
-
"narHash": "sha256-
|
|
304
|
-
"owner": "
|
|
305
|
-
"repo": "flake-
|
|
306
|
-
"rev": "
|
|
767
|
+
"lastModified": 1768135262,
|
|
768
|
+
"narHash": "sha256-PVvu7OqHBGWN16zSi6tEmPwwHQ4rLPU9Plvs8/1TUBY=",
|
|
769
|
+
"owner": "hercules-ci",
|
|
770
|
+
"repo": "flake-parts",
|
|
771
|
+
"rev": "80daad04eddbbf5a4d883996a73f3f542fa437ac",
|
|
307
772
|
"type": "github"
|
|
308
773
|
},
|
|
309
774
|
"original": {
|
|
310
|
-
"owner": "
|
|
311
|
-
"repo": "flake-
|
|
775
|
+
"owner": "hercules-ci",
|
|
776
|
+
"repo": "flake-parts",
|
|
312
777
|
"type": "github"
|
|
313
778
|
}
|
|
314
779
|
},
|
|
315
|
-
"flake-
|
|
780
|
+
"flake-parts_7": {
|
|
316
781
|
"inputs": {
|
|
317
|
-
"
|
|
782
|
+
"nixpkgs-lib": [
|
|
783
|
+
"substrate",
|
|
784
|
+
"devenv",
|
|
785
|
+
"nixpkgs"
|
|
786
|
+
]
|
|
318
787
|
},
|
|
319
788
|
"locked": {
|
|
320
|
-
"lastModified":
|
|
321
|
-
"narHash": "sha256-
|
|
322
|
-
"owner": "
|
|
323
|
-
"repo": "flake-
|
|
324
|
-
"rev": "
|
|
789
|
+
"lastModified": 1777678872,
|
|
790
|
+
"narHash": "sha256-EPIFsulyon7Z1vLQq5Fk64GR8L7cQsT+IPhcsukVbgk=",
|
|
791
|
+
"owner": "hercules-ci",
|
|
792
|
+
"repo": "flake-parts",
|
|
793
|
+
"rev": "5250617bffd85403b14dbf43c3870e7f255d2c16",
|
|
325
794
|
"type": "github"
|
|
326
795
|
},
|
|
327
796
|
"original": {
|
|
328
|
-
"owner": "
|
|
329
|
-
"repo": "flake-
|
|
797
|
+
"owner": "hercules-ci",
|
|
798
|
+
"repo": "flake-parts",
|
|
799
|
+
"type": "github"
|
|
800
|
+
}
|
|
801
|
+
},
|
|
802
|
+
"flake-parts_8": {
|
|
803
|
+
"inputs": {
|
|
804
|
+
"nixpkgs-lib": [
|
|
805
|
+
"substrate",
|
|
806
|
+
"nixpkgs"
|
|
807
|
+
]
|
|
808
|
+
},
|
|
809
|
+
"locked": {
|
|
810
|
+
"lastModified": 1778716662,
|
|
811
|
+
"narHash": "sha256-m1Yf0wZ8j1OHjTc2UwHwyQRSnNeSgLJOd7q5Y45hzi4=",
|
|
812
|
+
"owner": "hercules-ci",
|
|
813
|
+
"repo": "flake-parts",
|
|
814
|
+
"rev": "f7c1a2d347e4c52d5fb8d10cb4d94b5884e546fb",
|
|
815
|
+
"type": "github"
|
|
816
|
+
},
|
|
817
|
+
"original": {
|
|
818
|
+
"owner": "hercules-ci",
|
|
819
|
+
"repo": "flake-parts",
|
|
330
820
|
"type": "github"
|
|
331
821
|
}
|
|
332
822
|
},
|
|
333
|
-
"flake-
|
|
823
|
+
"flake-utils": {
|
|
334
824
|
"inputs": {
|
|
335
|
-
"systems": "
|
|
825
|
+
"systems": "systems"
|
|
336
826
|
},
|
|
337
827
|
"locked": {
|
|
338
828
|
"lastModified": 1731533236,
|
|
@@ -350,9 +840,10 @@
|
|
|
350
840
|
},
|
|
351
841
|
"forge": {
|
|
352
842
|
"inputs": {
|
|
353
|
-
"crate2nix": "
|
|
843
|
+
"crate2nix": "crate2nix_2",
|
|
844
|
+
"devenv": "devenv_2",
|
|
354
845
|
"fenix": "fenix",
|
|
355
|
-
"flake-
|
|
846
|
+
"flake-parts": "flake-parts_4",
|
|
356
847
|
"nixpkgs": [
|
|
357
848
|
"nixpkgs"
|
|
358
849
|
],
|
|
@@ -361,11 +852,11 @@
|
|
|
361
852
|
]
|
|
362
853
|
},
|
|
363
854
|
"locked": {
|
|
364
|
-
"lastModified":
|
|
365
|
-
"narHash": "sha256-
|
|
855
|
+
"lastModified": 1779340971,
|
|
856
|
+
"narHash": "sha256-LZFWE+J6owq3YXDKsSAfvT4aDoVNU44k6YcmRicg3Wc=",
|
|
366
857
|
"owner": "pleme-io",
|
|
367
858
|
"repo": "forge",
|
|
368
|
-
"rev": "
|
|
859
|
+
"rev": "d9cf2d459dc4d271543c13b41a58acad7af8af5d",
|
|
369
860
|
"type": "github"
|
|
370
861
|
},
|
|
371
862
|
"original": {
|
|
@@ -374,28 +865,79 @@
|
|
|
374
865
|
"type": "github"
|
|
375
866
|
}
|
|
376
867
|
},
|
|
868
|
+
"ghostty": {
|
|
869
|
+
"flake": false,
|
|
870
|
+
"locked": {
|
|
871
|
+
"lastModified": 1779069789,
|
|
872
|
+
"narHash": "sha256-ojo+gso45/6CVSuqfSVnlWpQ4d0QeLgwok+v/g3yu0E=",
|
|
873
|
+
"owner": "ghostty-org",
|
|
874
|
+
"repo": "ghostty",
|
|
875
|
+
"rev": "4b7bf0b20e3baf9c1ba10c63f2ad1fd853faea8f",
|
|
876
|
+
"type": "github"
|
|
877
|
+
},
|
|
878
|
+
"original": {
|
|
879
|
+
"owner": "ghostty-org",
|
|
880
|
+
"repo": "ghostty",
|
|
881
|
+
"type": "github"
|
|
882
|
+
}
|
|
883
|
+
},
|
|
884
|
+
"ghostty_2": {
|
|
885
|
+
"flake": false,
|
|
886
|
+
"locked": {
|
|
887
|
+
"lastModified": 1779069789,
|
|
888
|
+
"narHash": "sha256-ojo+gso45/6CVSuqfSVnlWpQ4d0QeLgwok+v/g3yu0E=",
|
|
889
|
+
"owner": "ghostty-org",
|
|
890
|
+
"repo": "ghostty",
|
|
891
|
+
"rev": "4b7bf0b20e3baf9c1ba10c63f2ad1fd853faea8f",
|
|
892
|
+
"type": "github"
|
|
893
|
+
},
|
|
894
|
+
"original": {
|
|
895
|
+
"owner": "ghostty-org",
|
|
896
|
+
"repo": "ghostty",
|
|
897
|
+
"type": "github"
|
|
898
|
+
}
|
|
899
|
+
},
|
|
900
|
+
"ghostty_3": {
|
|
901
|
+
"inputs": {
|
|
902
|
+
"flake-compat": "flake-compat_7",
|
|
903
|
+
"home-manager": "home-manager",
|
|
904
|
+
"nixpkgs": "nixpkgs_7",
|
|
905
|
+
"systems": "systems_2",
|
|
906
|
+
"zig": "zig",
|
|
907
|
+
"zon2nix": "zon2nix"
|
|
908
|
+
},
|
|
909
|
+
"locked": {
|
|
910
|
+
"lastModified": 1777773742,
|
|
911
|
+
"narHash": "sha256-dZFc+8az7BUIs8+v45XqNnY5G6oXEwVfVVHZQuATSGQ=",
|
|
912
|
+
"owner": "ghostty-org",
|
|
913
|
+
"repo": "ghostty",
|
|
914
|
+
"rev": "1547dd667ab6d1f4ebcdc7282adc54c95752ee67",
|
|
915
|
+
"type": "github"
|
|
916
|
+
},
|
|
917
|
+
"original": {
|
|
918
|
+
"owner": "ghostty-org",
|
|
919
|
+
"repo": "ghostty",
|
|
920
|
+
"type": "github"
|
|
921
|
+
}
|
|
922
|
+
},
|
|
377
923
|
"git-hooks": {
|
|
378
924
|
"inputs": {
|
|
379
925
|
"flake-compat": [
|
|
380
|
-
"
|
|
381
|
-
"crate2nix",
|
|
382
|
-
"cachix",
|
|
926
|
+
"devenv",
|
|
383
927
|
"flake-compat"
|
|
384
928
|
],
|
|
385
929
|
"gitignore": "gitignore",
|
|
386
930
|
"nixpkgs": [
|
|
387
|
-
"
|
|
388
|
-
"crate2nix",
|
|
389
|
-
"cachix",
|
|
931
|
+
"devenv",
|
|
390
932
|
"nixpkgs"
|
|
391
933
|
]
|
|
392
934
|
},
|
|
393
935
|
"locked": {
|
|
394
|
-
"lastModified":
|
|
395
|
-
"narHash": "sha256
|
|
936
|
+
"lastModified": 1778507602,
|
|
937
|
+
"narHash": "sha256-kTwur1wV+01SdqskVMSo6JMEpg71ps3HpbFY2GsflKs=",
|
|
396
938
|
"owner": "cachix",
|
|
397
939
|
"repo": "git-hooks.nix",
|
|
398
|
-
"rev": "
|
|
940
|
+
"rev": "61ab0e80d9c7ab14c256b5b453d8b3fb0189ba0a",
|
|
399
941
|
"type": "github"
|
|
400
942
|
},
|
|
401
943
|
"original": {
|
|
@@ -409,7 +951,6 @@
|
|
|
409
951
|
"flake-compat": [
|
|
410
952
|
"forge",
|
|
411
953
|
"crate2nix",
|
|
412
|
-
"crate2nix_stable",
|
|
413
954
|
"cachix",
|
|
414
955
|
"flake-compat"
|
|
415
956
|
],
|
|
@@ -417,7 +958,6 @@
|
|
|
417
958
|
"nixpkgs": [
|
|
418
959
|
"forge",
|
|
419
960
|
"crate2nix",
|
|
420
|
-
"crate2nix_stable",
|
|
421
961
|
"cachix",
|
|
422
962
|
"nixpkgs"
|
|
423
963
|
]
|
|
@@ -436,62 +976,228 @@
|
|
|
436
976
|
"type": "github"
|
|
437
977
|
}
|
|
438
978
|
},
|
|
439
|
-
"
|
|
979
|
+
"git-hooks_3": {
|
|
440
980
|
"inputs": {
|
|
981
|
+
"flake-compat": [
|
|
982
|
+
"forge",
|
|
983
|
+
"devenv",
|
|
984
|
+
"flake-compat"
|
|
985
|
+
],
|
|
986
|
+
"gitignore": "gitignore_4",
|
|
441
987
|
"nixpkgs": [
|
|
442
988
|
"forge",
|
|
443
|
-
"
|
|
444
|
-
"cachix",
|
|
445
|
-
"git-hooks",
|
|
989
|
+
"devenv",
|
|
446
990
|
"nixpkgs"
|
|
447
991
|
]
|
|
448
992
|
},
|
|
449
993
|
"locked": {
|
|
450
|
-
"lastModified":
|
|
451
|
-
"narHash": "sha256-
|
|
452
|
-
"owner": "
|
|
453
|
-
"repo": "
|
|
454
|
-
"rev": "
|
|
994
|
+
"lastModified": 1778507602,
|
|
995
|
+
"narHash": "sha256-kTwur1wV+01SdqskVMSo6JMEpg71ps3HpbFY2GsflKs=",
|
|
996
|
+
"owner": "cachix",
|
|
997
|
+
"repo": "git-hooks.nix",
|
|
998
|
+
"rev": "61ab0e80d9c7ab14c256b5b453d8b3fb0189ba0a",
|
|
455
999
|
"type": "github"
|
|
456
1000
|
},
|
|
457
1001
|
"original": {
|
|
458
|
-
"owner": "
|
|
459
|
-
"repo": "
|
|
1002
|
+
"owner": "cachix",
|
|
1003
|
+
"repo": "git-hooks.nix",
|
|
460
1004
|
"type": "github"
|
|
461
1005
|
}
|
|
462
1006
|
},
|
|
463
|
-
"
|
|
1007
|
+
"git-hooks_4": {
|
|
464
1008
|
"inputs": {
|
|
1009
|
+
"flake-compat": [
|
|
1010
|
+
"substrate",
|
|
1011
|
+
"devenv",
|
|
1012
|
+
"crate2nix",
|
|
1013
|
+
"cachix",
|
|
1014
|
+
"flake-compat"
|
|
1015
|
+
],
|
|
1016
|
+
"gitignore": "gitignore_5",
|
|
465
1017
|
"nixpkgs": [
|
|
466
|
-
"
|
|
1018
|
+
"substrate",
|
|
1019
|
+
"devenv",
|
|
467
1020
|
"crate2nix",
|
|
468
|
-
"crate2nix_stable",
|
|
469
1021
|
"cachix",
|
|
470
|
-
"git-hooks",
|
|
471
1022
|
"nixpkgs"
|
|
472
1023
|
]
|
|
473
1024
|
},
|
|
474
1025
|
"locked": {
|
|
475
|
-
"lastModified":
|
|
476
|
-
"narHash": "sha256
|
|
477
|
-
"owner": "
|
|
478
|
-
"repo": "
|
|
479
|
-
"rev": "
|
|
1026
|
+
"lastModified": 1765404074,
|
|
1027
|
+
"narHash": "sha256-+ZDU2d+vzWkEJiqprvV5PR26DVFN2vgddwG5SnPZcUM=",
|
|
1028
|
+
"owner": "cachix",
|
|
1029
|
+
"repo": "git-hooks.nix",
|
|
1030
|
+
"rev": "2d6f58930fbcd82f6f9fd59fb6d13e37684ca529",
|
|
480
1031
|
"type": "github"
|
|
481
1032
|
},
|
|
482
1033
|
"original": {
|
|
483
|
-
"owner": "
|
|
484
|
-
"repo": "
|
|
1034
|
+
"owner": "cachix",
|
|
1035
|
+
"repo": "git-hooks.nix",
|
|
485
1036
|
"type": "github"
|
|
486
1037
|
}
|
|
487
1038
|
},
|
|
488
|
-
"
|
|
1039
|
+
"git-hooks_5": {
|
|
489
1040
|
"inputs": {
|
|
1041
|
+
"flake-compat": [
|
|
1042
|
+
"substrate",
|
|
1043
|
+
"devenv",
|
|
1044
|
+
"crate2nix",
|
|
1045
|
+
"crate2nix_stable",
|
|
1046
|
+
"cachix",
|
|
1047
|
+
"flake-compat"
|
|
1048
|
+
],
|
|
1049
|
+
"gitignore": "gitignore_6",
|
|
490
1050
|
"nixpkgs": [
|
|
491
|
-
"
|
|
1051
|
+
"substrate",
|
|
1052
|
+
"devenv",
|
|
492
1053
|
"crate2nix",
|
|
493
1054
|
"crate2nix_stable",
|
|
494
|
-
"
|
|
1055
|
+
"cachix",
|
|
1056
|
+
"nixpkgs"
|
|
1057
|
+
]
|
|
1058
|
+
},
|
|
1059
|
+
"locked": {
|
|
1060
|
+
"lastModified": 1765404074,
|
|
1061
|
+
"narHash": "sha256-+ZDU2d+vzWkEJiqprvV5PR26DVFN2vgddwG5SnPZcUM=",
|
|
1062
|
+
"owner": "cachix",
|
|
1063
|
+
"repo": "git-hooks.nix",
|
|
1064
|
+
"rev": "2d6f58930fbcd82f6f9fd59fb6d13e37684ca529",
|
|
1065
|
+
"type": "github"
|
|
1066
|
+
},
|
|
1067
|
+
"original": {
|
|
1068
|
+
"owner": "cachix",
|
|
1069
|
+
"repo": "git-hooks.nix",
|
|
1070
|
+
"type": "github"
|
|
1071
|
+
}
|
|
1072
|
+
},
|
|
1073
|
+
"git-hooks_6": {
|
|
1074
|
+
"inputs": {
|
|
1075
|
+
"flake-compat": [
|
|
1076
|
+
"substrate",
|
|
1077
|
+
"devenv",
|
|
1078
|
+
"flake-compat"
|
|
1079
|
+
],
|
|
1080
|
+
"gitignore": "gitignore_9",
|
|
1081
|
+
"nixpkgs": [
|
|
1082
|
+
"substrate",
|
|
1083
|
+
"devenv",
|
|
1084
|
+
"nixpkgs"
|
|
1085
|
+
]
|
|
1086
|
+
},
|
|
1087
|
+
"locked": {
|
|
1088
|
+
"lastModified": 1776796298,
|
|
1089
|
+
"narHash": "sha256-PcRvlWayisPSjd0UcRQbhG8Oqw78AcPE6x872cPRHN8=",
|
|
1090
|
+
"owner": "cachix",
|
|
1091
|
+
"repo": "git-hooks.nix",
|
|
1092
|
+
"rev": "3cfd774b0a530725a077e17354fbdb87ea1c4aad",
|
|
1093
|
+
"type": "github"
|
|
1094
|
+
},
|
|
1095
|
+
"original": {
|
|
1096
|
+
"owner": "cachix",
|
|
1097
|
+
"repo": "git-hooks.nix",
|
|
1098
|
+
"type": "github"
|
|
1099
|
+
}
|
|
1100
|
+
},
|
|
1101
|
+
"gitignore": {
|
|
1102
|
+
"inputs": {
|
|
1103
|
+
"nixpkgs": [
|
|
1104
|
+
"devenv",
|
|
1105
|
+
"git-hooks",
|
|
1106
|
+
"nixpkgs"
|
|
1107
|
+
]
|
|
1108
|
+
},
|
|
1109
|
+
"locked": {
|
|
1110
|
+
"lastModified": 1709087332,
|
|
1111
|
+
"narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
|
|
1112
|
+
"owner": "hercules-ci",
|
|
1113
|
+
"repo": "gitignore.nix",
|
|
1114
|
+
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
|
|
1115
|
+
"type": "github"
|
|
1116
|
+
},
|
|
1117
|
+
"original": {
|
|
1118
|
+
"owner": "hercules-ci",
|
|
1119
|
+
"repo": "gitignore.nix",
|
|
1120
|
+
"type": "github"
|
|
1121
|
+
}
|
|
1122
|
+
},
|
|
1123
|
+
"gitignore_2": {
|
|
1124
|
+
"inputs": {
|
|
1125
|
+
"nixpkgs": [
|
|
1126
|
+
"forge",
|
|
1127
|
+
"crate2nix",
|
|
1128
|
+
"cachix",
|
|
1129
|
+
"git-hooks",
|
|
1130
|
+
"nixpkgs"
|
|
1131
|
+
]
|
|
1132
|
+
},
|
|
1133
|
+
"locked": {
|
|
1134
|
+
"lastModified": 1709087332,
|
|
1135
|
+
"narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
|
|
1136
|
+
"owner": "hercules-ci",
|
|
1137
|
+
"repo": "gitignore.nix",
|
|
1138
|
+
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
|
|
1139
|
+
"type": "github"
|
|
1140
|
+
},
|
|
1141
|
+
"original": {
|
|
1142
|
+
"owner": "hercules-ci",
|
|
1143
|
+
"repo": "gitignore.nix",
|
|
1144
|
+
"type": "github"
|
|
1145
|
+
}
|
|
1146
|
+
},
|
|
1147
|
+
"gitignore_3": {
|
|
1148
|
+
"inputs": {
|
|
1149
|
+
"nixpkgs": [
|
|
1150
|
+
"forge",
|
|
1151
|
+
"crate2nix",
|
|
1152
|
+
"pre-commit-hooks",
|
|
1153
|
+
"nixpkgs"
|
|
1154
|
+
]
|
|
1155
|
+
},
|
|
1156
|
+
"locked": {
|
|
1157
|
+
"lastModified": 1709087332,
|
|
1158
|
+
"narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
|
|
1159
|
+
"owner": "hercules-ci",
|
|
1160
|
+
"repo": "gitignore.nix",
|
|
1161
|
+
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
|
|
1162
|
+
"type": "github"
|
|
1163
|
+
},
|
|
1164
|
+
"original": {
|
|
1165
|
+
"owner": "hercules-ci",
|
|
1166
|
+
"repo": "gitignore.nix",
|
|
1167
|
+
"type": "github"
|
|
1168
|
+
}
|
|
1169
|
+
},
|
|
1170
|
+
"gitignore_4": {
|
|
1171
|
+
"inputs": {
|
|
1172
|
+
"nixpkgs": [
|
|
1173
|
+
"forge",
|
|
1174
|
+
"devenv",
|
|
1175
|
+
"git-hooks",
|
|
1176
|
+
"nixpkgs"
|
|
1177
|
+
]
|
|
1178
|
+
},
|
|
1179
|
+
"locked": {
|
|
1180
|
+
"lastModified": 1709087332,
|
|
1181
|
+
"narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
|
|
1182
|
+
"owner": "hercules-ci",
|
|
1183
|
+
"repo": "gitignore.nix",
|
|
1184
|
+
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
|
|
1185
|
+
"type": "github"
|
|
1186
|
+
},
|
|
1187
|
+
"original": {
|
|
1188
|
+
"owner": "hercules-ci",
|
|
1189
|
+
"repo": "gitignore.nix",
|
|
1190
|
+
"type": "github"
|
|
1191
|
+
}
|
|
1192
|
+
},
|
|
1193
|
+
"gitignore_5": {
|
|
1194
|
+
"inputs": {
|
|
1195
|
+
"nixpkgs": [
|
|
1196
|
+
"substrate",
|
|
1197
|
+
"devenv",
|
|
1198
|
+
"crate2nix",
|
|
1199
|
+
"cachix",
|
|
1200
|
+
"git-hooks",
|
|
495
1201
|
"nixpkgs"
|
|
496
1202
|
]
|
|
497
1203
|
},
|
|
@@ -504,67 +1210,437 @@
|
|
|
504
1210
|
"type": "github"
|
|
505
1211
|
},
|
|
506
1212
|
"original": {
|
|
507
|
-
"owner": "hercules-ci",
|
|
508
|
-
"repo": "gitignore.nix",
|
|
1213
|
+
"owner": "hercules-ci",
|
|
1214
|
+
"repo": "gitignore.nix",
|
|
1215
|
+
"type": "github"
|
|
1216
|
+
}
|
|
1217
|
+
},
|
|
1218
|
+
"gitignore_6": {
|
|
1219
|
+
"inputs": {
|
|
1220
|
+
"nixpkgs": [
|
|
1221
|
+
"substrate",
|
|
1222
|
+
"devenv",
|
|
1223
|
+
"crate2nix",
|
|
1224
|
+
"crate2nix_stable",
|
|
1225
|
+
"cachix",
|
|
1226
|
+
"git-hooks",
|
|
1227
|
+
"nixpkgs"
|
|
1228
|
+
]
|
|
1229
|
+
},
|
|
1230
|
+
"locked": {
|
|
1231
|
+
"lastModified": 1709087332,
|
|
1232
|
+
"narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
|
|
1233
|
+
"owner": "hercules-ci",
|
|
1234
|
+
"repo": "gitignore.nix",
|
|
1235
|
+
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
|
|
1236
|
+
"type": "github"
|
|
1237
|
+
},
|
|
1238
|
+
"original": {
|
|
1239
|
+
"owner": "hercules-ci",
|
|
1240
|
+
"repo": "gitignore.nix",
|
|
1241
|
+
"type": "github"
|
|
1242
|
+
}
|
|
1243
|
+
},
|
|
1244
|
+
"gitignore_7": {
|
|
1245
|
+
"inputs": {
|
|
1246
|
+
"nixpkgs": [
|
|
1247
|
+
"substrate",
|
|
1248
|
+
"devenv",
|
|
1249
|
+
"crate2nix",
|
|
1250
|
+
"crate2nix_stable",
|
|
1251
|
+
"pre-commit-hooks",
|
|
1252
|
+
"nixpkgs"
|
|
1253
|
+
]
|
|
1254
|
+
},
|
|
1255
|
+
"locked": {
|
|
1256
|
+
"lastModified": 1709087332,
|
|
1257
|
+
"narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
|
|
1258
|
+
"owner": "hercules-ci",
|
|
1259
|
+
"repo": "gitignore.nix",
|
|
1260
|
+
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
|
|
1261
|
+
"type": "github"
|
|
1262
|
+
},
|
|
1263
|
+
"original": {
|
|
1264
|
+
"owner": "hercules-ci",
|
|
1265
|
+
"repo": "gitignore.nix",
|
|
1266
|
+
"type": "github"
|
|
1267
|
+
}
|
|
1268
|
+
},
|
|
1269
|
+
"gitignore_8": {
|
|
1270
|
+
"inputs": {
|
|
1271
|
+
"nixpkgs": [
|
|
1272
|
+
"substrate",
|
|
1273
|
+
"devenv",
|
|
1274
|
+
"crate2nix",
|
|
1275
|
+
"pre-commit-hooks",
|
|
1276
|
+
"nixpkgs"
|
|
1277
|
+
]
|
|
1278
|
+
},
|
|
1279
|
+
"locked": {
|
|
1280
|
+
"lastModified": 1709087332,
|
|
1281
|
+
"narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
|
|
1282
|
+
"owner": "hercules-ci",
|
|
1283
|
+
"repo": "gitignore.nix",
|
|
1284
|
+
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
|
|
1285
|
+
"type": "github"
|
|
1286
|
+
},
|
|
1287
|
+
"original": {
|
|
1288
|
+
"owner": "hercules-ci",
|
|
1289
|
+
"repo": "gitignore.nix",
|
|
1290
|
+
"type": "github"
|
|
1291
|
+
}
|
|
1292
|
+
},
|
|
1293
|
+
"gitignore_9": {
|
|
1294
|
+
"inputs": {
|
|
1295
|
+
"nixpkgs": [
|
|
1296
|
+
"substrate",
|
|
1297
|
+
"devenv",
|
|
1298
|
+
"git-hooks",
|
|
1299
|
+
"nixpkgs"
|
|
1300
|
+
]
|
|
1301
|
+
},
|
|
1302
|
+
"locked": {
|
|
1303
|
+
"lastModified": 1709087332,
|
|
1304
|
+
"narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
|
|
1305
|
+
"owner": "hercules-ci",
|
|
1306
|
+
"repo": "gitignore.nix",
|
|
1307
|
+
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
|
|
1308
|
+
"type": "github"
|
|
1309
|
+
},
|
|
1310
|
+
"original": {
|
|
1311
|
+
"owner": "hercules-ci",
|
|
1312
|
+
"repo": "gitignore.nix",
|
|
1313
|
+
"type": "github"
|
|
1314
|
+
}
|
|
1315
|
+
},
|
|
1316
|
+
"home-manager": {
|
|
1317
|
+
"inputs": {
|
|
1318
|
+
"nixpkgs": [
|
|
1319
|
+
"substrate",
|
|
1320
|
+
"devenv",
|
|
1321
|
+
"ghostty",
|
|
1322
|
+
"nixpkgs"
|
|
1323
|
+
]
|
|
1324
|
+
},
|
|
1325
|
+
"locked": {
|
|
1326
|
+
"lastModified": 1770586272,
|
|
1327
|
+
"narHash": "sha256-Ucci8mu8QfxwzyfER2DQDbvW9t1BnTUJhBmY7ybralo=",
|
|
1328
|
+
"owner": "nix-community",
|
|
1329
|
+
"repo": "home-manager",
|
|
1330
|
+
"rev": "b1f916ba052341edc1f80d4b2399f1092a4873ca",
|
|
1331
|
+
"type": "github"
|
|
1332
|
+
},
|
|
1333
|
+
"original": {
|
|
1334
|
+
"owner": "nix-community",
|
|
1335
|
+
"repo": "home-manager",
|
|
1336
|
+
"type": "github"
|
|
1337
|
+
}
|
|
1338
|
+
},
|
|
1339
|
+
"nix": {
|
|
1340
|
+
"inputs": {
|
|
1341
|
+
"flake-compat": [
|
|
1342
|
+
"devenv",
|
|
1343
|
+
"flake-compat"
|
|
1344
|
+
],
|
|
1345
|
+
"flake-parts": [
|
|
1346
|
+
"devenv",
|
|
1347
|
+
"flake-parts"
|
|
1348
|
+
],
|
|
1349
|
+
"git-hooks-nix": [
|
|
1350
|
+
"devenv",
|
|
1351
|
+
"git-hooks"
|
|
1352
|
+
],
|
|
1353
|
+
"nixpkgs": [
|
|
1354
|
+
"devenv",
|
|
1355
|
+
"nixpkgs"
|
|
1356
|
+
],
|
|
1357
|
+
"nixpkgs-23-11": [
|
|
1358
|
+
"devenv"
|
|
1359
|
+
],
|
|
1360
|
+
"nixpkgs-regression": [
|
|
1361
|
+
"devenv"
|
|
1362
|
+
]
|
|
1363
|
+
},
|
|
1364
|
+
"locked": {
|
|
1365
|
+
"lastModified": 1776511668,
|
|
1366
|
+
"narHash": "sha256-g2KEBuHpc3a56c+jPcg0+w6LSuIj6f+zzdztLCOyIhc=",
|
|
1367
|
+
"owner": "cachix",
|
|
1368
|
+
"repo": "nix",
|
|
1369
|
+
"rev": "42d4b7de21c15f28c568410f4383fa06a8458a40",
|
|
1370
|
+
"type": "github"
|
|
1371
|
+
},
|
|
1372
|
+
"original": {
|
|
1373
|
+
"owner": "cachix",
|
|
1374
|
+
"ref": "devenv-2.34",
|
|
1375
|
+
"repo": "nix",
|
|
1376
|
+
"type": "github"
|
|
1377
|
+
}
|
|
1378
|
+
},
|
|
1379
|
+
"nix-test-runner": {
|
|
1380
|
+
"flake": false,
|
|
1381
|
+
"locked": {
|
|
1382
|
+
"lastModified": 1588761593,
|
|
1383
|
+
"narHash": "sha256-FKJykltAN/g3eIceJl4SfDnnyuH2jHImhMrXS2KvGIs=",
|
|
1384
|
+
"owner": "stoeffel",
|
|
1385
|
+
"repo": "nix-test-runner",
|
|
1386
|
+
"rev": "c45d45b11ecef3eb9d834c3b6304c05c49b06ca2",
|
|
1387
|
+
"type": "github"
|
|
1388
|
+
},
|
|
1389
|
+
"original": {
|
|
1390
|
+
"owner": "stoeffel",
|
|
1391
|
+
"repo": "nix-test-runner",
|
|
1392
|
+
"type": "github"
|
|
1393
|
+
}
|
|
1394
|
+
},
|
|
1395
|
+
"nix-test-runner_2": {
|
|
1396
|
+
"flake": false,
|
|
1397
|
+
"locked": {
|
|
1398
|
+
"lastModified": 1588761593,
|
|
1399
|
+
"narHash": "sha256-FKJykltAN/g3eIceJl4SfDnnyuH2jHImhMrXS2KvGIs=",
|
|
1400
|
+
"owner": "stoeffel",
|
|
1401
|
+
"repo": "nix-test-runner",
|
|
1402
|
+
"rev": "c45d45b11ecef3eb9d834c3b6304c05c49b06ca2",
|
|
1403
|
+
"type": "github"
|
|
1404
|
+
},
|
|
1405
|
+
"original": {
|
|
1406
|
+
"owner": "stoeffel",
|
|
1407
|
+
"repo": "nix-test-runner",
|
|
1408
|
+
"type": "github"
|
|
1409
|
+
}
|
|
1410
|
+
},
|
|
1411
|
+
"nix-test-runner_3": {
|
|
1412
|
+
"flake": false,
|
|
1413
|
+
"locked": {
|
|
1414
|
+
"lastModified": 1588761593,
|
|
1415
|
+
"narHash": "sha256-FKJykltAN/g3eIceJl4SfDnnyuH2jHImhMrXS2KvGIs=",
|
|
1416
|
+
"owner": "stoeffel",
|
|
1417
|
+
"repo": "nix-test-runner",
|
|
1418
|
+
"rev": "c45d45b11ecef3eb9d834c3b6304c05c49b06ca2",
|
|
1419
|
+
"type": "github"
|
|
1420
|
+
},
|
|
1421
|
+
"original": {
|
|
1422
|
+
"owner": "stoeffel",
|
|
1423
|
+
"repo": "nix-test-runner",
|
|
1424
|
+
"type": "github"
|
|
1425
|
+
}
|
|
1426
|
+
},
|
|
1427
|
+
"nix_2": {
|
|
1428
|
+
"inputs": {
|
|
1429
|
+
"flake-compat": [
|
|
1430
|
+
"forge",
|
|
1431
|
+
"devenv",
|
|
1432
|
+
"flake-compat"
|
|
1433
|
+
],
|
|
1434
|
+
"flake-parts": [
|
|
1435
|
+
"forge",
|
|
1436
|
+
"devenv",
|
|
1437
|
+
"flake-parts"
|
|
1438
|
+
],
|
|
1439
|
+
"git-hooks-nix": [
|
|
1440
|
+
"forge",
|
|
1441
|
+
"devenv",
|
|
1442
|
+
"git-hooks"
|
|
1443
|
+
],
|
|
1444
|
+
"nixpkgs": [
|
|
1445
|
+
"forge",
|
|
1446
|
+
"devenv",
|
|
1447
|
+
"nixpkgs"
|
|
1448
|
+
],
|
|
1449
|
+
"nixpkgs-23-11": [
|
|
1450
|
+
"forge",
|
|
1451
|
+
"devenv"
|
|
1452
|
+
],
|
|
1453
|
+
"nixpkgs-regression": [
|
|
1454
|
+
"forge",
|
|
1455
|
+
"devenv"
|
|
1456
|
+
]
|
|
1457
|
+
},
|
|
1458
|
+
"locked": {
|
|
1459
|
+
"lastModified": 1776511668,
|
|
1460
|
+
"narHash": "sha256-g2KEBuHpc3a56c+jPcg0+w6LSuIj6f+zzdztLCOyIhc=",
|
|
1461
|
+
"owner": "cachix",
|
|
1462
|
+
"repo": "nix",
|
|
1463
|
+
"rev": "42d4b7de21c15f28c568410f4383fa06a8458a40",
|
|
1464
|
+
"type": "github"
|
|
1465
|
+
},
|
|
1466
|
+
"original": {
|
|
1467
|
+
"owner": "cachix",
|
|
1468
|
+
"ref": "devenv-2.34",
|
|
1469
|
+
"repo": "nix",
|
|
1470
|
+
"type": "github"
|
|
1471
|
+
}
|
|
1472
|
+
},
|
|
1473
|
+
"nix_3": {
|
|
1474
|
+
"inputs": {
|
|
1475
|
+
"flake-compat": [
|
|
1476
|
+
"substrate",
|
|
1477
|
+
"devenv",
|
|
1478
|
+
"flake-compat"
|
|
1479
|
+
],
|
|
1480
|
+
"flake-parts": [
|
|
1481
|
+
"substrate",
|
|
1482
|
+
"devenv",
|
|
1483
|
+
"flake-parts"
|
|
1484
|
+
],
|
|
1485
|
+
"git-hooks-nix": [
|
|
1486
|
+
"substrate",
|
|
1487
|
+
"devenv",
|
|
1488
|
+
"git-hooks"
|
|
1489
|
+
],
|
|
1490
|
+
"nixpkgs": [
|
|
1491
|
+
"substrate",
|
|
1492
|
+
"devenv",
|
|
1493
|
+
"nixpkgs"
|
|
1494
|
+
],
|
|
1495
|
+
"nixpkgs-23-11": [
|
|
1496
|
+
"substrate",
|
|
1497
|
+
"devenv"
|
|
1498
|
+
],
|
|
1499
|
+
"nixpkgs-regression": [
|
|
1500
|
+
"substrate",
|
|
1501
|
+
"devenv"
|
|
1502
|
+
]
|
|
1503
|
+
},
|
|
1504
|
+
"locked": {
|
|
1505
|
+
"lastModified": 1776511668,
|
|
1506
|
+
"narHash": "sha256-g2KEBuHpc3a56c+jPcg0+w6LSuIj6f+zzdztLCOyIhc=",
|
|
1507
|
+
"owner": "cachix",
|
|
1508
|
+
"repo": "nix",
|
|
1509
|
+
"rev": "42d4b7de21c15f28c568410f4383fa06a8458a40",
|
|
1510
|
+
"type": "github"
|
|
1511
|
+
},
|
|
1512
|
+
"original": {
|
|
1513
|
+
"owner": "cachix",
|
|
1514
|
+
"ref": "devenv-2.34",
|
|
1515
|
+
"repo": "nix",
|
|
1516
|
+
"type": "github"
|
|
1517
|
+
}
|
|
1518
|
+
},
|
|
1519
|
+
"nixd": {
|
|
1520
|
+
"inputs": {
|
|
1521
|
+
"flake-parts": [
|
|
1522
|
+
"devenv",
|
|
1523
|
+
"flake-parts"
|
|
1524
|
+
],
|
|
1525
|
+
"nixpkgs": [
|
|
1526
|
+
"devenv",
|
|
1527
|
+
"nixpkgs"
|
|
1528
|
+
],
|
|
1529
|
+
"treefmt-nix": "treefmt-nix"
|
|
1530
|
+
},
|
|
1531
|
+
"locked": {
|
|
1532
|
+
"lastModified": 1778381404,
|
|
1533
|
+
"narHash": "sha256-FqhdOTA8vyoIpkHhbs2cCT7h6EWM7nsLeOYJc1ifQLE=",
|
|
1534
|
+
"owner": "nix-community",
|
|
1535
|
+
"repo": "nixd",
|
|
1536
|
+
"rev": "e3e45eb76663f522e196b7f0cf34cab201db7779",
|
|
1537
|
+
"type": "github"
|
|
1538
|
+
},
|
|
1539
|
+
"original": {
|
|
1540
|
+
"owner": "nix-community",
|
|
1541
|
+
"repo": "nixd",
|
|
1542
|
+
"type": "github"
|
|
1543
|
+
}
|
|
1544
|
+
},
|
|
1545
|
+
"nixd_2": {
|
|
1546
|
+
"inputs": {
|
|
1547
|
+
"flake-parts": [
|
|
1548
|
+
"forge",
|
|
1549
|
+
"devenv",
|
|
1550
|
+
"flake-parts"
|
|
1551
|
+
],
|
|
1552
|
+
"nixpkgs": [
|
|
1553
|
+
"forge",
|
|
1554
|
+
"devenv",
|
|
1555
|
+
"nixpkgs"
|
|
1556
|
+
],
|
|
1557
|
+
"treefmt-nix": "treefmt-nix_2"
|
|
1558
|
+
},
|
|
1559
|
+
"locked": {
|
|
1560
|
+
"lastModified": 1778381404,
|
|
1561
|
+
"narHash": "sha256-FqhdOTA8vyoIpkHhbs2cCT7h6EWM7nsLeOYJc1ifQLE=",
|
|
1562
|
+
"owner": "nix-community",
|
|
1563
|
+
"repo": "nixd",
|
|
1564
|
+
"rev": "e3e45eb76663f522e196b7f0cf34cab201db7779",
|
|
1565
|
+
"type": "github"
|
|
1566
|
+
},
|
|
1567
|
+
"original": {
|
|
1568
|
+
"owner": "nix-community",
|
|
1569
|
+
"repo": "nixd",
|
|
509
1570
|
"type": "github"
|
|
510
1571
|
}
|
|
511
1572
|
},
|
|
512
|
-
"
|
|
1573
|
+
"nixd_3": {
|
|
513
1574
|
"inputs": {
|
|
514
|
-
"
|
|
515
|
-
"
|
|
516
|
-
"
|
|
517
|
-
"
|
|
518
|
-
|
|
519
|
-
|
|
1575
|
+
"flake-parts": [
|
|
1576
|
+
"substrate",
|
|
1577
|
+
"devenv",
|
|
1578
|
+
"flake-parts"
|
|
1579
|
+
],
|
|
1580
|
+
"nixpkgs": "nixpkgs_8",
|
|
1581
|
+
"treefmt-nix": "treefmt-nix_3"
|
|
520
1582
|
},
|
|
521
1583
|
"locked": {
|
|
522
|
-
"lastModified":
|
|
523
|
-
"narHash": "sha256-
|
|
524
|
-
"owner": "
|
|
525
|
-
"repo": "
|
|
526
|
-
"rev": "
|
|
1584
|
+
"lastModified": 1777345723,
|
|
1585
|
+
"narHash": "sha256-BhY3D5DhpDnnUcaY+AL/cpyYX+OIjQgnAkbPLZ08C38=",
|
|
1586
|
+
"owner": "nix-community",
|
|
1587
|
+
"repo": "nixd",
|
|
1588
|
+
"rev": "6bf30951a3dc407a798d30db427e3f96ac9b39f5",
|
|
527
1589
|
"type": "github"
|
|
528
1590
|
},
|
|
529
1591
|
"original": {
|
|
530
|
-
"owner": "
|
|
531
|
-
"repo": "
|
|
1592
|
+
"owner": "nix-community",
|
|
1593
|
+
"repo": "nixd",
|
|
532
1594
|
"type": "github"
|
|
533
1595
|
}
|
|
534
1596
|
},
|
|
535
|
-
"
|
|
536
|
-
"flake": false,
|
|
1597
|
+
"nixpkgs": {
|
|
537
1598
|
"locked": {
|
|
538
|
-
"lastModified":
|
|
539
|
-
"narHash": "sha256-
|
|
540
|
-
"owner": "
|
|
541
|
-
"repo": "
|
|
542
|
-
"rev": "
|
|
1599
|
+
"lastModified": 1765186076,
|
|
1600
|
+
"narHash": "sha256-hM20uyap1a0M9d344I692r+ik4gTMyj60cQWO+hAYP8=",
|
|
1601
|
+
"owner": "NixOS",
|
|
1602
|
+
"repo": "nixpkgs",
|
|
1603
|
+
"rev": "addf7cf5f383a3101ecfba091b98d0a1263dc9b8",
|
|
543
1604
|
"type": "github"
|
|
544
1605
|
},
|
|
545
1606
|
"original": {
|
|
546
|
-
"owner": "
|
|
547
|
-
"
|
|
1607
|
+
"owner": "NixOS",
|
|
1608
|
+
"ref": "nixos-unstable",
|
|
1609
|
+
"repo": "nixpkgs",
|
|
548
1610
|
"type": "github"
|
|
549
1611
|
}
|
|
550
1612
|
},
|
|
551
|
-
"
|
|
552
|
-
"flake": false,
|
|
1613
|
+
"nixpkgs_2": {
|
|
553
1614
|
"locked": {
|
|
554
|
-
"lastModified":
|
|
555
|
-
"narHash": "sha256-
|
|
556
|
-
"owner": "
|
|
557
|
-
"repo": "
|
|
558
|
-
"rev": "
|
|
1615
|
+
"lastModified": 1779102034,
|
|
1616
|
+
"narHash": "sha256-vZJZjLo513IeI8hjzHFc6TDezUd4uCE2Eq4SNO3DNNg=",
|
|
1617
|
+
"owner": "NixOS",
|
|
1618
|
+
"repo": "nixpkgs",
|
|
1619
|
+
"rev": "687f05a9184cad4eaf905c48b63649e3a86f5433",
|
|
559
1620
|
"type": "github"
|
|
560
1621
|
},
|
|
561
1622
|
"original": {
|
|
562
|
-
"owner": "
|
|
563
|
-
"
|
|
1623
|
+
"owner": "NixOS",
|
|
1624
|
+
"ref": "nixos-25.11",
|
|
1625
|
+
"repo": "nixpkgs",
|
|
564
1626
|
"type": "github"
|
|
565
1627
|
}
|
|
566
1628
|
},
|
|
567
|
-
"
|
|
1629
|
+
"nixpkgs_3": {
|
|
1630
|
+
"locked": {
|
|
1631
|
+
"lastModified": 1678875422,
|
|
1632
|
+
"narHash": "sha256-T3o6NcQPwXjxJMn2shz86Chch4ljXgZn746c2caGxd8=",
|
|
1633
|
+
"owner": "NixOS",
|
|
1634
|
+
"repo": "nixpkgs",
|
|
1635
|
+
"rev": "126f49a01de5b7e35a43fd43f891ecf6d3a51459",
|
|
1636
|
+
"type": "github"
|
|
1637
|
+
},
|
|
1638
|
+
"original": {
|
|
1639
|
+
"id": "nixpkgs",
|
|
1640
|
+
"type": "indirect"
|
|
1641
|
+
}
|
|
1642
|
+
},
|
|
1643
|
+
"nixpkgs_4": {
|
|
568
1644
|
"locked": {
|
|
569
1645
|
"lastModified": 1765186076,
|
|
570
1646
|
"narHash": "sha256-hM20uyap1a0M9d344I692r+ik4gTMyj60cQWO+hAYP8=",
|
|
@@ -580,7 +1656,7 @@
|
|
|
580
1656
|
"type": "github"
|
|
581
1657
|
}
|
|
582
1658
|
},
|
|
583
|
-
"
|
|
1659
|
+
"nixpkgs_5": {
|
|
584
1660
|
"locked": {
|
|
585
1661
|
"lastModified": 1765186076,
|
|
586
1662
|
"narHash": "sha256-hM20uyap1a0M9d344I692r+ik4gTMyj60cQWO+hAYP8=",
|
|
@@ -596,7 +1672,7 @@
|
|
|
596
1672
|
"type": "github"
|
|
597
1673
|
}
|
|
598
1674
|
},
|
|
599
|
-
"
|
|
1675
|
+
"nixpkgs_6": {
|
|
600
1676
|
"locked": {
|
|
601
1677
|
"lastModified": 1769433173,
|
|
602
1678
|
"narHash": "sha256-Gf1dFYgD344WZ3q0LPlRoWaNdNQq8kSBDLEWulRQSEs=",
|
|
@@ -612,34 +1688,30 @@
|
|
|
612
1688
|
"type": "github"
|
|
613
1689
|
}
|
|
614
1690
|
},
|
|
615
|
-
"
|
|
1691
|
+
"nixpkgs_7": {
|
|
616
1692
|
"locked": {
|
|
617
|
-
"lastModified":
|
|
618
|
-
"narHash": "sha256-
|
|
619
|
-
"
|
|
620
|
-
"
|
|
621
|
-
"
|
|
622
|
-
"type": "github"
|
|
1693
|
+
"lastModified": 1770537093,
|
|
1694
|
+
"narHash": "sha256-XV30uo8tXuxdzuV8l3sojmlPRLd/8tpMsOp4lNzLGUo=",
|
|
1695
|
+
"rev": "fef9403a3e4d31b0a23f0bacebbec52c248fbb51",
|
|
1696
|
+
"type": "tarball",
|
|
1697
|
+
"url": "https://releases.nixos.org/nixpkgs/nixpkgs-26.05pre942631.fef9403a3e4d/nixexprs.tar.xz"
|
|
623
1698
|
},
|
|
624
1699
|
"original": {
|
|
625
|
-
"
|
|
626
|
-
"
|
|
627
|
-
"repo": "nixpkgs",
|
|
628
|
-
"type": "github"
|
|
1700
|
+
"type": "tarball",
|
|
1701
|
+
"url": "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz"
|
|
629
1702
|
}
|
|
630
1703
|
},
|
|
631
|
-
"
|
|
1704
|
+
"nixpkgs_8": {
|
|
632
1705
|
"locked": {
|
|
633
|
-
"lastModified":
|
|
634
|
-
"narHash": "sha256-
|
|
635
|
-
"
|
|
636
|
-
"
|
|
637
|
-
"
|
|
638
|
-
"type": "github"
|
|
1706
|
+
"lastModified": 1776877367,
|
|
1707
|
+
"narHash": "sha256-wMN1gM00sUQ2KC9CNr/XEOGdfOrl67PabIRv9AYayTo=",
|
|
1708
|
+
"rev": "0726a0ecb6d4e08f6adced58726b95db924cef57",
|
|
1709
|
+
"type": "tarball",
|
|
1710
|
+
"url": "https://releases.nixos.org/nixos/unstable/nixos-26.05pre985613.0726a0ecb6d4/nixexprs.tar.xz"
|
|
639
1711
|
},
|
|
640
1712
|
"original": {
|
|
641
|
-
"
|
|
642
|
-
"
|
|
1713
|
+
"type": "tarball",
|
|
1714
|
+
"url": "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"
|
|
643
1715
|
}
|
|
644
1716
|
},
|
|
645
1717
|
"pre-commit-hooks": {
|
|
@@ -647,14 +1719,12 @@
|
|
|
647
1719
|
"flake-compat": [
|
|
648
1720
|
"forge",
|
|
649
1721
|
"crate2nix",
|
|
650
|
-
"crate2nix_stable",
|
|
651
1722
|
"flake-compat"
|
|
652
1723
|
],
|
|
653
1724
|
"gitignore": "gitignore_3",
|
|
654
1725
|
"nixpkgs": [
|
|
655
1726
|
"forge",
|
|
656
1727
|
"crate2nix",
|
|
657
|
-
"crate2nix_stable",
|
|
658
1728
|
"nixpkgs"
|
|
659
1729
|
]
|
|
660
1730
|
},
|
|
@@ -675,13 +1745,47 @@
|
|
|
675
1745
|
"pre-commit-hooks_2": {
|
|
676
1746
|
"inputs": {
|
|
677
1747
|
"flake-compat": [
|
|
678
|
-
"
|
|
1748
|
+
"substrate",
|
|
1749
|
+
"devenv",
|
|
679
1750
|
"crate2nix",
|
|
1751
|
+
"crate2nix_stable",
|
|
680
1752
|
"flake-compat"
|
|
681
1753
|
],
|
|
682
|
-
"gitignore": "
|
|
1754
|
+
"gitignore": "gitignore_7",
|
|
683
1755
|
"nixpkgs": [
|
|
684
|
-
"
|
|
1756
|
+
"substrate",
|
|
1757
|
+
"devenv",
|
|
1758
|
+
"crate2nix",
|
|
1759
|
+
"crate2nix_stable",
|
|
1760
|
+
"nixpkgs"
|
|
1761
|
+
]
|
|
1762
|
+
},
|
|
1763
|
+
"locked": {
|
|
1764
|
+
"lastModified": 1769069492,
|
|
1765
|
+
"narHash": "sha256-Efs3VUPelRduf3PpfPP2ovEB4CXT7vHf8W+xc49RL/U=",
|
|
1766
|
+
"owner": "cachix",
|
|
1767
|
+
"repo": "pre-commit-hooks.nix",
|
|
1768
|
+
"rev": "a1ef738813b15cf8ec759bdff5761b027e3e1d23",
|
|
1769
|
+
"type": "github"
|
|
1770
|
+
},
|
|
1771
|
+
"original": {
|
|
1772
|
+
"owner": "cachix",
|
|
1773
|
+
"repo": "pre-commit-hooks.nix",
|
|
1774
|
+
"type": "github"
|
|
1775
|
+
}
|
|
1776
|
+
},
|
|
1777
|
+
"pre-commit-hooks_3": {
|
|
1778
|
+
"inputs": {
|
|
1779
|
+
"flake-compat": [
|
|
1780
|
+
"substrate",
|
|
1781
|
+
"devenv",
|
|
1782
|
+
"crate2nix",
|
|
1783
|
+
"flake-compat"
|
|
1784
|
+
],
|
|
1785
|
+
"gitignore": "gitignore_8",
|
|
1786
|
+
"nixpkgs": [
|
|
1787
|
+
"substrate",
|
|
1788
|
+
"devenv",
|
|
685
1789
|
"crate2nix",
|
|
686
1790
|
"nixpkgs"
|
|
687
1791
|
]
|
|
@@ -702,16 +1806,17 @@
|
|
|
702
1806
|
},
|
|
703
1807
|
"root": {
|
|
704
1808
|
"inputs": {
|
|
1809
|
+
"devenv": "devenv",
|
|
705
1810
|
"flake-utils": "flake-utils",
|
|
706
1811
|
"forge": "forge",
|
|
707
|
-
"nixpkgs": "
|
|
1812
|
+
"nixpkgs": "nixpkgs_2",
|
|
708
1813
|
"ruby-nix": "ruby-nix",
|
|
709
1814
|
"substrate": "substrate"
|
|
710
1815
|
}
|
|
711
1816
|
},
|
|
712
1817
|
"ruby-nix": {
|
|
713
1818
|
"inputs": {
|
|
714
|
-
"nixpkgs": "
|
|
1819
|
+
"nixpkgs": "nixpkgs_3"
|
|
715
1820
|
},
|
|
716
1821
|
"locked": {
|
|
717
1822
|
"lastModified": 1755059052,
|
|
@@ -730,11 +1835,11 @@
|
|
|
730
1835
|
"rust-analyzer-src": {
|
|
731
1836
|
"flake": false,
|
|
732
1837
|
"locked": {
|
|
733
|
-
"lastModified":
|
|
734
|
-
"narHash": "sha256-
|
|
1838
|
+
"lastModified": 1779221047,
|
|
1839
|
+
"narHash": "sha256-HkOWI9C4kxA6xkS9GXhe4hAAme7ekOWje3b1U7rLSIo=",
|
|
735
1840
|
"owner": "rust-lang",
|
|
736
1841
|
"repo": "rust-analyzer",
|
|
737
|
-
"rev": "
|
|
1842
|
+
"rev": "f4bd646a7867c7814770168e0d4b9bd3418c1066",
|
|
738
1843
|
"type": "github"
|
|
739
1844
|
},
|
|
740
1845
|
"original": {
|
|
@@ -747,11 +1852,11 @@
|
|
|
747
1852
|
"rust-analyzer-src_2": {
|
|
748
1853
|
"flake": false,
|
|
749
1854
|
"locked": {
|
|
750
|
-
"lastModified":
|
|
751
|
-
"narHash": "sha256-
|
|
1855
|
+
"lastModified": 1779221047,
|
|
1856
|
+
"narHash": "sha256-HkOWI9C4kxA6xkS9GXhe4hAAme7ekOWje3b1U7rLSIo=",
|
|
752
1857
|
"owner": "rust-lang",
|
|
753
1858
|
"repo": "rust-analyzer",
|
|
754
|
-
"rev": "
|
|
1859
|
+
"rev": "f4bd646a7867c7814770168e0d4b9bd3418c1066",
|
|
755
1860
|
"type": "github"
|
|
756
1861
|
},
|
|
757
1862
|
"original": {
|
|
@@ -761,21 +1866,87 @@
|
|
|
761
1866
|
"type": "github"
|
|
762
1867
|
}
|
|
763
1868
|
},
|
|
1869
|
+
"rust-overlay": {
|
|
1870
|
+
"inputs": {
|
|
1871
|
+
"nixpkgs": [
|
|
1872
|
+
"devenv",
|
|
1873
|
+
"nixpkgs"
|
|
1874
|
+
]
|
|
1875
|
+
},
|
|
1876
|
+
"locked": {
|
|
1877
|
+
"lastModified": 1779074409,
|
|
1878
|
+
"narHash": "sha256-6aXy8Ga41iLVM8ibddFU1O5+wYWcBGNEfZzZuL91eIc=",
|
|
1879
|
+
"owner": "oxalica",
|
|
1880
|
+
"repo": "rust-overlay",
|
|
1881
|
+
"rev": "2a77b5b1dc952f214e8102acdef1622b68515560",
|
|
1882
|
+
"type": "github"
|
|
1883
|
+
},
|
|
1884
|
+
"original": {
|
|
1885
|
+
"owner": "oxalica",
|
|
1886
|
+
"repo": "rust-overlay",
|
|
1887
|
+
"type": "github"
|
|
1888
|
+
}
|
|
1889
|
+
},
|
|
1890
|
+
"rust-overlay_2": {
|
|
1891
|
+
"inputs": {
|
|
1892
|
+
"nixpkgs": [
|
|
1893
|
+
"forge",
|
|
1894
|
+
"devenv",
|
|
1895
|
+
"nixpkgs"
|
|
1896
|
+
]
|
|
1897
|
+
},
|
|
1898
|
+
"locked": {
|
|
1899
|
+
"lastModified": 1779074409,
|
|
1900
|
+
"narHash": "sha256-6aXy8Ga41iLVM8ibddFU1O5+wYWcBGNEfZzZuL91eIc=",
|
|
1901
|
+
"owner": "oxalica",
|
|
1902
|
+
"repo": "rust-overlay",
|
|
1903
|
+
"rev": "2a77b5b1dc952f214e8102acdef1622b68515560",
|
|
1904
|
+
"type": "github"
|
|
1905
|
+
},
|
|
1906
|
+
"original": {
|
|
1907
|
+
"owner": "oxalica",
|
|
1908
|
+
"repo": "rust-overlay",
|
|
1909
|
+
"type": "github"
|
|
1910
|
+
}
|
|
1911
|
+
},
|
|
1912
|
+
"rust-overlay_3": {
|
|
1913
|
+
"inputs": {
|
|
1914
|
+
"nixpkgs": [
|
|
1915
|
+
"substrate",
|
|
1916
|
+
"devenv",
|
|
1917
|
+
"nixpkgs"
|
|
1918
|
+
]
|
|
1919
|
+
},
|
|
1920
|
+
"locked": {
|
|
1921
|
+
"lastModified": 1777778183,
|
|
1922
|
+
"narHash": "sha256-Lqv9MZO0XAGcMbXJU+ULBSMD41Pf391uJehylUQKe7Y=",
|
|
1923
|
+
"owner": "oxalica",
|
|
1924
|
+
"repo": "rust-overlay",
|
|
1925
|
+
"rev": "dbba5f888c82ef3ce594c451c33ac2474eb80847",
|
|
1926
|
+
"type": "github"
|
|
1927
|
+
},
|
|
1928
|
+
"original": {
|
|
1929
|
+
"owner": "oxalica",
|
|
1930
|
+
"repo": "rust-overlay",
|
|
1931
|
+
"type": "github"
|
|
1932
|
+
}
|
|
1933
|
+
},
|
|
764
1934
|
"substrate": {
|
|
765
1935
|
"inputs": {
|
|
766
|
-
"crate2nix": "
|
|
1936
|
+
"crate2nix": "crate2nix_4",
|
|
1937
|
+
"devenv": "devenv_3",
|
|
767
1938
|
"fenix": "fenix_2",
|
|
768
|
-
"flake-
|
|
1939
|
+
"flake-parts": "flake-parts_8",
|
|
769
1940
|
"nixpkgs": [
|
|
770
1941
|
"nixpkgs"
|
|
771
1942
|
]
|
|
772
1943
|
},
|
|
773
1944
|
"locked": {
|
|
774
|
-
"lastModified":
|
|
775
|
-
"narHash": "sha256-
|
|
1945
|
+
"lastModified": 1779320072,
|
|
1946
|
+
"narHash": "sha256-R+aCrjazdxRJesSxg4KGxT4FtAHDSQ0W0TG5ygdYTFg=",
|
|
776
1947
|
"owner": "pleme-io",
|
|
777
1948
|
"repo": "substrate",
|
|
778
|
-
"rev": "
|
|
1949
|
+
"rev": "5175c6aa9b98adbb87f46964f3e4f5f22664d105",
|
|
779
1950
|
"type": "github"
|
|
780
1951
|
},
|
|
781
1952
|
"original": {
|
|
@@ -800,6 +1971,7 @@
|
|
|
800
1971
|
}
|
|
801
1972
|
},
|
|
802
1973
|
"systems_2": {
|
|
1974
|
+
"flake": false,
|
|
803
1975
|
"locked": {
|
|
804
1976
|
"lastModified": 1681028828,
|
|
805
1977
|
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
|
@@ -814,18 +1986,155 @@
|
|
|
814
1986
|
"type": "github"
|
|
815
1987
|
}
|
|
816
1988
|
},
|
|
817
|
-
"
|
|
1989
|
+
"treefmt-nix": {
|
|
1990
|
+
"inputs": {
|
|
1991
|
+
"nixpkgs": [
|
|
1992
|
+
"devenv",
|
|
1993
|
+
"nixd",
|
|
1994
|
+
"nixpkgs"
|
|
1995
|
+
]
|
|
1996
|
+
},
|
|
818
1997
|
"locked": {
|
|
819
|
-
"lastModified":
|
|
820
|
-
"narHash": "sha256-
|
|
821
|
-
"owner": "
|
|
822
|
-
"repo": "
|
|
823
|
-
"rev": "
|
|
1998
|
+
"lastModified": 1775636079,
|
|
1999
|
+
"narHash": "sha256-pc20NRoMdiar8oPQceQT47UUZMBTiMdUuWrYu2obUP0=",
|
|
2000
|
+
"owner": "numtide",
|
|
2001
|
+
"repo": "treefmt-nix",
|
|
2002
|
+
"rev": "790751ff7fd3801feeaf96d7dc416a8d581265ba",
|
|
824
2003
|
"type": "github"
|
|
825
2004
|
},
|
|
826
2005
|
"original": {
|
|
827
|
-
"owner": "
|
|
828
|
-
"repo": "
|
|
2006
|
+
"owner": "numtide",
|
|
2007
|
+
"repo": "treefmt-nix",
|
|
2008
|
+
"type": "github"
|
|
2009
|
+
}
|
|
2010
|
+
},
|
|
2011
|
+
"treefmt-nix_2": {
|
|
2012
|
+
"inputs": {
|
|
2013
|
+
"nixpkgs": [
|
|
2014
|
+
"forge",
|
|
2015
|
+
"devenv",
|
|
2016
|
+
"nixd",
|
|
2017
|
+
"nixpkgs"
|
|
2018
|
+
]
|
|
2019
|
+
},
|
|
2020
|
+
"locked": {
|
|
2021
|
+
"lastModified": 1775636079,
|
|
2022
|
+
"narHash": "sha256-pc20NRoMdiar8oPQceQT47UUZMBTiMdUuWrYu2obUP0=",
|
|
2023
|
+
"owner": "numtide",
|
|
2024
|
+
"repo": "treefmt-nix",
|
|
2025
|
+
"rev": "790751ff7fd3801feeaf96d7dc416a8d581265ba",
|
|
2026
|
+
"type": "github"
|
|
2027
|
+
},
|
|
2028
|
+
"original": {
|
|
2029
|
+
"owner": "numtide",
|
|
2030
|
+
"repo": "treefmt-nix",
|
|
2031
|
+
"type": "github"
|
|
2032
|
+
}
|
|
2033
|
+
},
|
|
2034
|
+
"treefmt-nix_3": {
|
|
2035
|
+
"inputs": {
|
|
2036
|
+
"nixpkgs": [
|
|
2037
|
+
"substrate",
|
|
2038
|
+
"devenv",
|
|
2039
|
+
"nixd",
|
|
2040
|
+
"nixpkgs"
|
|
2041
|
+
]
|
|
2042
|
+
},
|
|
2043
|
+
"locked": {
|
|
2044
|
+
"lastModified": 1775636079,
|
|
2045
|
+
"narHash": "sha256-pc20NRoMdiar8oPQceQT47UUZMBTiMdUuWrYu2obUP0=",
|
|
2046
|
+
"owner": "numtide",
|
|
2047
|
+
"repo": "treefmt-nix",
|
|
2048
|
+
"rev": "790751ff7fd3801feeaf96d7dc416a8d581265ba",
|
|
2049
|
+
"type": "github"
|
|
2050
|
+
},
|
|
2051
|
+
"original": {
|
|
2052
|
+
"owner": "numtide",
|
|
2053
|
+
"repo": "treefmt-nix",
|
|
2054
|
+
"type": "github"
|
|
2055
|
+
}
|
|
2056
|
+
},
|
|
2057
|
+
"zig": {
|
|
2058
|
+
"inputs": {
|
|
2059
|
+
"flake-compat": [
|
|
2060
|
+
"substrate",
|
|
2061
|
+
"devenv",
|
|
2062
|
+
"ghostty",
|
|
2063
|
+
"flake-compat"
|
|
2064
|
+
],
|
|
2065
|
+
"nixpkgs": [
|
|
2066
|
+
"substrate",
|
|
2067
|
+
"devenv",
|
|
2068
|
+
"ghostty",
|
|
2069
|
+
"nixpkgs"
|
|
2070
|
+
],
|
|
2071
|
+
"systems": [
|
|
2072
|
+
"substrate",
|
|
2073
|
+
"devenv",
|
|
2074
|
+
"ghostty",
|
|
2075
|
+
"systems"
|
|
2076
|
+
]
|
|
2077
|
+
},
|
|
2078
|
+
"locked": {
|
|
2079
|
+
"lastModified": 1776789209,
|
|
2080
|
+
"narHash": "sha256-G6B7Q4TXn7MZ1mB+f9rymjsYF5PLWoSvmbxijb/99bw=",
|
|
2081
|
+
"owner": "mitchellh",
|
|
2082
|
+
"repo": "zig-overlay",
|
|
2083
|
+
"rev": "14fe971844e841297ddd2ce9783d6892b467af39",
|
|
2084
|
+
"type": "github"
|
|
2085
|
+
},
|
|
2086
|
+
"original": {
|
|
2087
|
+
"owner": "mitchellh",
|
|
2088
|
+
"repo": "zig-overlay",
|
|
2089
|
+
"type": "github"
|
|
2090
|
+
}
|
|
2091
|
+
},
|
|
2092
|
+
"zig_2": {
|
|
2093
|
+
"inputs": {
|
|
2094
|
+
"nixpkgs": [
|
|
2095
|
+
"substrate",
|
|
2096
|
+
"devenv",
|
|
2097
|
+
"ghostty",
|
|
2098
|
+
"zon2nix",
|
|
2099
|
+
"nixpkgs"
|
|
2100
|
+
]
|
|
2101
|
+
},
|
|
2102
|
+
"locked": {
|
|
2103
|
+
"lastModified": 1777234348,
|
|
2104
|
+
"narHash": "sha256-fKw44a4qbUuI5eTG8k0gPbqMV5TOrjYF35PBzsYgd2U=",
|
|
2105
|
+
"ref": "refs/heads/main",
|
|
2106
|
+
"rev": "2c781c0609ecda600ab98f98cca417bbd981bd53",
|
|
2107
|
+
"revCount": 1677,
|
|
2108
|
+
"type": "git",
|
|
2109
|
+
"url": "https://codeberg.org/jcollie/zig-overlay.git"
|
|
2110
|
+
},
|
|
2111
|
+
"original": {
|
|
2112
|
+
"type": "git",
|
|
2113
|
+
"url": "https://codeberg.org/jcollie/zig-overlay.git"
|
|
2114
|
+
}
|
|
2115
|
+
},
|
|
2116
|
+
"zon2nix": {
|
|
2117
|
+
"inputs": {
|
|
2118
|
+
"nixpkgs": [
|
|
2119
|
+
"substrate",
|
|
2120
|
+
"devenv",
|
|
2121
|
+
"ghostty",
|
|
2122
|
+
"nixpkgs"
|
|
2123
|
+
],
|
|
2124
|
+
"zig": "zig_2"
|
|
2125
|
+
},
|
|
2126
|
+
"locked": {
|
|
2127
|
+
"lastModified": 1777314365,
|
|
2128
|
+
"narHash": "sha256-eLxQaD0wc96Neqkln8wHS0rNq/chPODifFkhwrwilEU=",
|
|
2129
|
+
"owner": "jcollie",
|
|
2130
|
+
"repo": "zon2nix",
|
|
2131
|
+
"rev": "a5a1d412ad1ab6305511997bbc92b3a9dd6cb784",
|
|
2132
|
+
"type": "github"
|
|
2133
|
+
},
|
|
2134
|
+
"original": {
|
|
2135
|
+
"owner": "jcollie",
|
|
2136
|
+
"ref": "main",
|
|
2137
|
+
"repo": "zon2nix",
|
|
829
2138
|
"type": "github"
|
|
830
2139
|
}
|
|
831
2140
|
}
|