├── .bundle └── config ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── main.yml │ └── release.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── bundler-compose ├── console ├── rake ├── rspec ├── rubocop └── setup ├── bundler-compose.gemspec ├── exe └── bundler-compose ├── lib └── bundler │ ├── compose.rb │ └── compose │ ├── cli.rb │ ├── composer.rb │ └── version.rb ├── sig └── bundler │ └── compose.rbs ├── spec ├── bundler │ └── compose_spec.rb ├── spec_helper.rb └── support │ ├── api_request_limit_hax.rb │ ├── artifice │ ├── compact_index.rb │ ├── compact_index_api_missing.rb │ ├── compact_index_basic_authentication.rb │ ├── compact_index_checksum_mismatch.rb │ ├── compact_index_concurrent_download.rb │ ├── compact_index_creds_diff_host.rb │ ├── compact_index_extra.rb │ ├── compact_index_extra_api.rb │ ├── compact_index_extra_api_missing.rb │ ├── compact_index_extra_missing.rb │ ├── compact_index_forbidden.rb │ ├── compact_index_host_redirect.rb │ ├── compact_index_no_gem.rb │ ├── compact_index_partial_update.rb │ ├── compact_index_partial_update_no_etag_not_incremental.rb │ ├── compact_index_precompiled_before.rb │ ├── compact_index_range_not_satisfiable.rb │ ├── compact_index_rate_limited.rb │ ├── compact_index_redirects.rb │ ├── compact_index_strict_basic_authentication.rb │ ├── compact_index_wrong_dependencies.rb │ ├── compact_index_wrong_gem_checksum.rb │ ├── endpoint.rb │ ├── endpoint_500.rb │ ├── endpoint_api_forbidden.rb │ ├── endpoint_basic_authentication.rb │ ├── endpoint_creds_diff_host.rb │ ├── endpoint_extra.rb │ ├── endpoint_extra_api.rb │ ├── endpoint_extra_missing.rb │ ├── endpoint_fallback.rb │ ├── endpoint_host_redirect.rb │ ├── endpoint_marshal_fail.rb │ ├── endpoint_marshal_fail_basic_authentication.rb │ ├── endpoint_mirror_source.rb │ ├── endpoint_redirect.rb │ ├── endpoint_strict_basic_authentication.rb │ ├── endpoint_timeout.rb │ ├── fail.rb │ ├── helpers │ │ ├── artifice.rb │ │ ├── compact_index.rb │ │ ├── compact_index_extra.rb │ │ ├── compact_index_extra_api.rb │ │ ├── endpoint.rb │ │ ├── endpoint_extra.rb │ │ ├── endpoint_fallback.rb │ │ ├── endpoint_marshal_fail.rb │ │ └── rack_request.rb │ ├── vcr.rb │ ├── vcr_cassettes │ │ └── realworld │ │ │ ├── index.rubygems.org │ │ │ ├── info │ │ │ │ ├── Ascii85 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── CFPropertyList │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ParseTree │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── Platform │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── RedCloth │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── RubyInline │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── SexpProcessor │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ZenTest │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── abstract │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── actioncable │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── actionmailbox │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── actionmailer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── actionpack │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── actiontext │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── actionview │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── actionwebservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── active_record_inline_schema │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── activejob │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── activemodel-globalid │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── activemodel-serializers-xml │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── activemodel │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── activerecord-deprecated_finders │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── activerecord-honeycomb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── activerecord │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── activeresource │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── activestorage │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── activesupport │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── adamantium │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── addressable │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── afm │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── akami │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── albino │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── algoliasearch │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aliyun-sdk │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── annotate │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ansi │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── appsignal │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── apricoteatsgorilla │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ar_transaction_changes │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── archive-tar-minitar │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── arel │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── assistance │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ast │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── astrolabe │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── atk │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── atomic │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── atomos │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── audited │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── autoparse │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── awesome_nested_set │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── awesome_print │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-crt │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-eventstream │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-partitions │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-accessanalyzer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-account │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-acm │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-acmpca │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-alexaforbusiness │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-amplify │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-amplifybackend │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-apigateway │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-apigatewaymanagementapi │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-apigatewayv2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-appconfig │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-appflow │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-appintegrationsservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-applicationautoscaling │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-applicationcostprofiler │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-applicationdiscoveryservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-applicationinsights │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-appmesh │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-appregistry │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-apprunner │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-appstream │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-appsync │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-athena │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-auditmanager │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-augmentedairuntime │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-autoscaling │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-autoscalingplans │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-backup │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-batch │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-braket │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-budgets │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-chime │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-chimesdkidentity │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-chimesdkmessaging │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-cloud9 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-cloudcontrolapi │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-clouddirectory │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-cloudformation │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-cloudfront │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-cloudhsm │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-cloudhsmv2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-cloudsearch │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-cloudsearchdomain │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-cloudtrail │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-cloudwatch │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-cloudwatchevents │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-cloudwatchlogs │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-codeartifact │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-codebuild │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-codecommit │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-codedeploy │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-codeguruprofiler │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-codegurureviewer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-codepipeline │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-codestar │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-codestarconnections │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-codestarnotifications │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-cognitoidentity │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-cognitoidentityprovider │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-cognitosync │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-comprehend │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-comprehendmedical │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-computeoptimizer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-configservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-connect │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-connectcontactlens │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-connectparticipant │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-connectwisdomservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-core │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-costandusagereportservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-costexplorer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-customerprofiles │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-databasemigrationservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-dataexchange │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-datapipeline │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-datasync │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-dax │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-detective │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-devicefarm │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-devopsguru │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-directconnect │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-directoryservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-dlm │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-docdb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-dynamodb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-dynamodbstreams │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-ebs │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-ec2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-ec2instanceconnect │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-ecr │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-ecrpublic │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-ecs │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-efs │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-eks │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-elasticache │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-elasticbeanstalk │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-elasticinference │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-elasticloadbalancing │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-elasticloadbalancingv2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-elasticsearchservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-elastictranscoder │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-emr │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-emrcontainers │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-eventbridge │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-finspace │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-finspacedata │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-firehose │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-fis │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-fms │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-forecastqueryservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-forecastservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-frauddetector │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-fsx │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-gamelift │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-glacier │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-globalaccelerator │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-glue │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-gluedatabrew │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-greengrass │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-greengrassv2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-groundstation │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-guardduty │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-health │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-healthlake │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-honeycode │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-iam │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-identitystore │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-imagebuilder │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-importexport │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-inspector │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-iot │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-iot1clickdevicesservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-iot1clickprojects │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-iotanalytics │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-iotdataplane │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-iotdeviceadvisor │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-iotevents │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-ioteventsdata │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-iotfleethub │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-iotjobsdataplane │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-iotsecuretunneling │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-iotsitewise │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-iotthingsgraph │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-iotwireless │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-ivs │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-kafka │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-kafkaconnect │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-kendra │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-kinesis │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-kinesisanalytics │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-kinesisanalyticsv2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-kinesisvideo │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-kinesisvideoarchivedmedia │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-kinesisvideomedia │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-kinesisvideosignalingchannels │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-kms │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-lakeformation │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-lambda │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-lambdapreview │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-lex │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-lexmodelbuildingservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-lexmodelsv2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-lexruntimeservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-lexruntimev2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-licensemanager │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-lightsail │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-locationservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-lookoutequipment │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-lookoutforvision │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-lookoutmetrics │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-machinelearning │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-macie │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-macie2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-managedblockchain │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-managedgrafana │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-marketplacecatalog │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-marketplacecommerceanalytics │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-marketplaceentitlementservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-marketplacemetering │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-mediaconnect │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-mediaconvert │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-medialive │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-mediapackage │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-mediapackagevod │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-mediastore │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-mediastoredata │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-mediatailor │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-memorydb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-mgn │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-migrationhub │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-migrationhubconfig │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-mobile │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-mq │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-mturk │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-mwaa │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-neptune │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-networkfirewall │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-networkmanager │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-nimblestudio │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-opensearchservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-opsworks │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-opsworkscm │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-organizations │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-outposts │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-panorama │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-personalize │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-personalizeevents │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-personalizeruntime │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-pi │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-pinpoint │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-pinpointemail │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-pinpointsmsvoice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-polly │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-pricing │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-prometheusservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-proton │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-qldb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-qldbsession │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-quicksight │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-ram │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-rds │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-rdsdataservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-redshift │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-redshiftdataapiservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-rekognition │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-resourcegroups │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-resourcegroupstaggingapi │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-resources │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-robomaker │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-route53 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-route53domains │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-route53recoverycluster │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-route53recoverycontrolconfig │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-route53recoveryreadiness │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-route53resolver │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-s3 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-s3control │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-s3outposts │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-sagemaker │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-sagemakeredgemanager │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-sagemakerfeaturestoreruntime │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-sagemakerruntime │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-savingsplans │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-schemas │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-secretsmanager │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-securityhub │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-serverlessapplicationrepository │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-servicecatalog │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-servicediscovery │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-servicequotas │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-ses │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-sesv2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-sfn │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-shield │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-signer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-simpledb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-sms │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-snowball │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-snowdevicemanagement │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-sns │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-sqs │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-ssm │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-ssmcontacts │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-ssmincidents │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-sso │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-ssoadmin │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-ssooidc │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-states │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-storagegateway │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-support │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-swf │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-synthetics │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-textract │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-timestreamquery │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-timestreamwrite │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-transcribeservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-transcribestreamingservice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-transfer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-translate │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-v1 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-voiceid │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-waf │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-wafregional │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-wafv2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-wellarchitected │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-workdocs │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-worklink │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-workmail │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-workmailmessageflow │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-workspaces │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk-xray │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sdk │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sigv2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── aws-sigv4 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── axiom-types │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── backport │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── backports │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── bacon │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── bcrypt-ruby │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── bcrypt │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── bcrypt_pbkdf │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-abs │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-answers │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-aws │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-docker │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-facter │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-google │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-hiera │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-hostgenerator │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-module_install_helper │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-openstack │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-pe │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-puppet │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-puppet_install_helper │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-rspec │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-vagrant │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-vcloud │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-vmpooler │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker-vmware │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── beaker │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── benchmark │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── bigdecimal │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── bindata │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── bit-struct │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── blankslate │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── blimpy │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── bolt │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── brakeman │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── bson │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── builder │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── bundler-audit │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── bundler │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── business_time │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── byebug │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── c21e │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cache │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cache_method │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cairo-gobject │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cairo │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── camping │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── capybara │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cdb-full │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── celerity │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── celluloid-essentials │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── celluloid-extras │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── celluloid-fsm │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── celluloid-io │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── celluloid-pool │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── celluloid-supervision │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── celluloid │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── certified │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cgi_multipart_eof_fix │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── charlock_holmes │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── childprocess │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── choice │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── chunky_png │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── circuitbox │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── claide │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── clamp │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── classifier-reborn │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── classifier │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cld3 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── climate_control │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocaine │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-acknowledgements │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-art │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-bin │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-browser │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-bugsnag │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-check │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-clean │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-clean_build_phases_scripts │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-core │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-coverage │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-deintegrate │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-dependencies │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-deploy │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-disable-podfile-validations │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-downloader │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-expert-difficulty │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-fix-react-native │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-generate │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-git_url_rewriter │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-keys │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-no-dev-schemes │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-open │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-packager-pro │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-packager │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-playgrounds │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-plugins │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-prune-localizations │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-rome │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-search │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-sorted-search │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-static-swift-framework │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-stats │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-tdfire-binary │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-testing │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-trunk │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-try-release-fix │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-try │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-update-if-you-dare │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-whitelist │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods-wholemodule │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cocoapods │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── codecov │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── coderay │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── coercible │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── coffee-rails │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── coffee-script-source │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── coffee-script │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── color-tools │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── color │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── colorator │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── colored │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── colored2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── colorize │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── columnize │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── commander │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── compass-core │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── compass-import-once │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── compass │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── concurrent-ruby │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── configuration │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── connection_pool │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── corefoundation │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── coveralls │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── crack │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── crass │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cri │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── csv │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cucumber-core │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cucumber-create-meta │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cucumber-cucumber-expressions │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cucumber-expressions │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cucumber-formatter-dots │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cucumber-gherkin │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cucumber-html-formatter │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cucumber-messages │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cucumber-tag-expressions │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cucumber-tag_expressions │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cucumber-wire │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── cucumber │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── culerity │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── curb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── curses │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── daemon_controller │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── daemons │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── data_objects │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── database_cleaner-active_record │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── database_cleaner-core │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── database_cleaner-redis │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── database_cleaner │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── date │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── debugger-linecache │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── debugger-ruby_core_source │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── debugger │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── declarative-option │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── declarative │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── deep_merge │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── dep-selector-libgecode │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── dependency_checker │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── descendants_tracker │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── diff-lcs │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── digest-sha3 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── directory_watcher │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── discard │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── do_jdbc │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── do_sqlite3 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── docile │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── docker-api │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── domain_name │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── dotenv-deployment │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── dotenv-rails │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── dotenv │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── dry-inflector │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── durran-validatable │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── e2mmap │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ed25519 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── elastic-transport │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── elasticsearch-api │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── elasticsearch-transport │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── elasticsearch │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── em-hiredis │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── em-websocket │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── english │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── equalizer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── equatable │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── erubi │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── erubis │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── escape │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── escape_utils │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── et-orbi │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── etc │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ethon │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── event-bus │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── eventmachine │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── excon │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── execjs │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── extlib │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── facets │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── facter │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── facterdb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── factory_bot │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── factory_bot_rails │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── faker │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── faraday-em_http │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── faraday-em_synchrony │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── faraday-excon │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── faraday-honeycomb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── faraday-httpclient │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── faraday-net_http │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── faraday-net_http_persistent │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── faraday-patron │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── faraday-rack │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── faraday │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── faraday_middleware-aws-sigv4 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── faraday_middleware-multi_json │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── faraday_middleware │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fast-stemmer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fast_gettext │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fastercsv │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fastthread │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fattr │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── faye-websocket │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fcm │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ffi-compiler │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ffi-rzmq-core │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ffi-win32-extensions │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ffi │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fiddle │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── file-tail │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── filesize │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fission │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── flexmock │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-aliyun │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-atmos │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-aws │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-brightbox │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-cloudatcost │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-cloudstack │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-core │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-digitalocean │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-dnsimple │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-dynect │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-ecloud │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-google │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-internet-archive │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-joyent │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-json │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-local │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-openstack │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-ovirt │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-powerdns │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-profitbricks │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-rackspace │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-radosgw │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-riakcs │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-sakuracloud │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-serverlove │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-softlayer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-storm_on_demand │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-terremark │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-vmfusion │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-voxel │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-vsphere │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-xenserver │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog-xml │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fog │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── formatador │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── forwardable-extended │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── forwardable │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fourflusher │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fssm │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fugit │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── functional-ruby │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── fuzzy_match │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gdk_pixbuf2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gdkpixbuf │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gem_plugin │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gemcutter │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gems │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gettext-setup │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gettext │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gh_inspector │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gherkin │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gherkin3 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gio2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gitlab-markup │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── glib2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── globalid │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gobject-introspection │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── goldiloader │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── google-api-client │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── google-apis-compute_v1 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── google-apis-core │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── google-apis-discovery_v1 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── google-apis-dns_v1 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── google-apis-generator │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── google-apis-iamcredentials_v1 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── google-apis-monitoring_v3 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── google-apis-oslogin_v1 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── google-apis-pubsub_v1 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── google-apis-sqladmin_v1beta4 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── google-apis-storage_v1 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── google-cloud-env │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── google-protobuf │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── googleauth │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gpgme │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── graphiql-rails │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── graphql │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── growl │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gssapi │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gtk2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── guard-bundler │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── guard-compat │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── guard-rspec │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── guard │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gxapi_rails │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── gyoku │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── haml │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── handsoap │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── hashdiff │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── hashery │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── hashie │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── hashr │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── her │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── hiera-eyaml │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── hiera-puppet │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── hiera │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── highline │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── hike │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── hirb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── hiredis │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── hitimes │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── hocon │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── hoe │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── holidays │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── honeycomb-beeline │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── hooks │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── hpricot │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── htmlentities │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── http-2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── http-accept │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── http-cookie │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── http-form_data │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── http-parser │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── http │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── http_parser.rb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── httpadapter │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── httparty │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── httpauth │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── httpclient │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── httpi │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── hurley │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── i18n │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ice_nine │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── iconv │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── idn-ruby │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── in-parallel │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── inflecto │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── inifile │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── interactor │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── io-console │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── io-wait │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ipaddress │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── irb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── jamespath │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── jar-dependencies │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── jaro_winkler │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── jbuilder │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── jdbc-sqlite3 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── jekyll-coffeescript │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── jekyll-gist │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── jekyll-paginate │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── jekyll-sass-converter │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── jekyll-watch │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── jekyll │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── jgrep │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── jmespath │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── jnunemaker-crack │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── journey │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── jruby-pageant │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── json-schema │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── json │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── json_pure │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── jwt │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── kramdown-parser-gfm │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── kramdown │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── launchy │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── leshill-will_paginate │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── levenshtein │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── libhoney │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── libnotify │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── libv8 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── libwebsocket │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── libxml-ruby │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── linear_regression_trend │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── liquid │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── listen │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── little-plugger │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── llhttp-ffi │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── locale │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── lock_method │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── lockfile │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── log4r │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── logging │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── lograge │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── loofah │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── lumberjack │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mab │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── macaddr │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── magic │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mail │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mailfactory │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── marcel │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── markaby │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── maruku │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mathn │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── matrix │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── maven-tools │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mcollective-client │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── memcache-client │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── memoist │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── memoizable │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mercenary │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── metaclass │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── metadata-json-lint │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── metaid │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── metasploit-erd │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── method_source │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── middleware │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mime-types-data │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mime-types │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mimemagic │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mini_magick │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mini_mime │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mini_portile │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mini_portile2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── minitar-cli │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── minitar │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── minitest │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mislav-will_paginate │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mkrf │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mocha │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── molinillo │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── moneta │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── monetize │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── money │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mongo │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mongo_ext │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mongodb-mongo │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mongoid │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mongrel │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mono_logger │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── moped │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── msgpack │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── multi_json │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── multi_test │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── multi_xml │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── multimap │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── multipart-post │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mustermann │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── mysql2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── named-parameters │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── nanaimo │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── nap │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── native-package-installer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ncursesw │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── necromancer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── needle │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── nenv │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── net-ftp │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── net-http-persistent │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── net-ldap │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── net-ping │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── net-protocol │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── net-scp │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── net-sftp │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── net-ssh-krb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── net-ssh │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── net-telnet │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── netrc │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── nio4r │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── nokogiri │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── nori │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── notiffany │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ntlm-http │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── oauth2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── octokit │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── oga │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── open4 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── open_gem │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── open_uri_redirections │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── opennebula │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── openssl-ccm │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── openssl-cmac │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── optimist │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── optionable │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── options │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── opus-ruby │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── orchestrator_client │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── origin │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── os │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── osx_keychain │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ovirt-engine-sdk │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── paint │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pango │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── paperclip │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── parallel │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── parallel_tests │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── parse-cron │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── parseinput │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── parser │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── parslet │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── passenger │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pastel │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pathspec │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pathutil │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── patron │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pattern-match │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pcaprub │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pdf-core │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pdf-reader │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pdf-writer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pdk │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pg │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pkg-config │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pluginator │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── polyglot │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── popen4 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── posix-spawn │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── power_assert │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── powerbar │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── powerpack │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── prawn-core │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── prawn-format │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── prawn-layout │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── prawn-security │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── prawn-table │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── prawn │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── prime │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── progress_bar │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── protobuf-cucumber │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pry-byebug │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pry-debugger │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pry-doc │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pry │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── psych │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ptools │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── public_suffix │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── puma │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pundit │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── puppet-blacksmith │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── puppet-debugger │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── puppet-lint │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── puppet-module-posix-default-r2.7 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── puppet-module-posix-dev-r2.7 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── puppet-modulebuilder │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── puppet-resource_api │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── puppet-strings │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── puppet-syntax │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── puppet │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── puppet_forge │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── puppet_litmus │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── puppet_pot_generator │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── puppetfile-resolver │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── puppetlabs_spec_helper │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pusher-signature │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pusher │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pygments.rb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── pyu-ntlm-http │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── r10k │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── raabro │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── racc │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rack-cache │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rack-cors │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rack-honeycomb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rack-mount │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rack-protection │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rack-ssl │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rack-test │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rack │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rails-deprecated_sanitizer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rails-dom-testing │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rails-erd │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rails-html-sanitizer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rails-observers │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rails-pg-extras │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rails │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── railties │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rainbow │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rake-compiler │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rake │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rash │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rb-fchange │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rb-fsevent │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rb-inotify │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rb-kqueue │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rb-readline │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rbnacl-libsodium │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rbnacl │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rbovirt │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rbtree-jruby │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rbtree │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rbtree3 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rbvmomi │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rbvmomi2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rdiscount │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rdoc │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── re2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── red-colors │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── red-datasets │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── redcarpet │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── redis-actionpack │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── redis-activesupport │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── redis-namespace │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── redis-rack-cache │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── redis-rack │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── redis-rails │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── redis-store │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── redis │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ref │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── regexp_parser │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── reline │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── remote_ip_proxy_scrubber │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── representable │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── request_store │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── require_all │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── resque-scheduler │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── resque │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rest-client │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── retriable │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── retryable │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── reverse_markdown │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rexml │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rgen │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── right_aws │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── right_http_connection │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rmagick │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── roauth │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rouge │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rpam2 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rspec-collection_matchers │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rspec-core │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rspec-expectations │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rspec-its │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rspec-logsplit │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rspec-mocks │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rspec-puppet-facts │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rspec-puppet │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rspec-rails │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rspec-retry │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rspec-sidekiq │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rspec-support │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rspec │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rspec_honeycomb_formatter │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rspec_junit_formatter │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rsync │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rubiii-apricoteatsgorilla │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rubocop-ast │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rubocop-i18n │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rubocop-performance │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rubocop-rails │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rubocop-rspec │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rubocop │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby-graphviz │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby-hmac │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby-keychain │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby-libvirt │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby-ll │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby-lxc │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby-macho │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby-maven-libs │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby-maven │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby-pg-extras │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby-progressbar │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby-rc4 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby-terminfo │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby-vips │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby2_keywords │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby2ruby │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby_core_source │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby_dep │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby_parser │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruby_smb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rubyforge │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rubyntlm │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rubypython │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rubyzip │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rufus-scheduler │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── rugged │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ruport │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── safe_yaml │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sass-embedded │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sass-listen │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sass-rails │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sass │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sassc-rails │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sassc │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── savon │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sawyer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── scanf │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── scruffy │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── scrypt │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── searchkick │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── seed_migration │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── selenium-webdriver │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── semantic │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── semantic_puppet │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── semian │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sequel-honeycomb │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sequel │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sequel_core │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sequel_model │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sequel_pg │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── serverspec │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── set │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sexp_processor │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sfl │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── shellany │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── shellter │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sidekiq-cron │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sidekiq-undertaker │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sidekiq │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── signature │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── signet │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── simplecov-console │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── simplecov-html │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── simplecov │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── simplecov_json_formatter │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sinatra │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── singleton │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sixarm_ruby_unaccent │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── slather │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── slim │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── slop │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── slyphon-log4j │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── slyphon-zookeeper_jar │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── snappy-jars │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── snappy │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── socksify │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── solargraph │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sorted_set │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── spdx-licenses │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── specinfra │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── spoon │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sprockets-helpers │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sprockets-rails │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sprockets-sass │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sprockets │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── spruz │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sql_queries_count │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sqlite3 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── state_machines-activemodel │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── state_machines-activerecord │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── state_machines-audit_trail │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── state_machines-rspec │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── state_machines │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── stemmer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── stomp │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── storext │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── stringify-hash │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── stringio │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── strings-ansi │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── strings │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── strip_attributes │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── strscan │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── structured_warnings │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── subexec │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sync │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── syntax │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sys-admin │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── sys-uname │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── system_timer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── systemu │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── table_print │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── taglib-ruby │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── temple │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── term-ansicolor │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── terminal-table │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── termios │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── terrapin │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── test-unit │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── text-format │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── text-hyphen │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── text │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── therubyracer │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── thin │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── thor │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── thoughtbot-shoulda │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── thread_safe │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── thrift │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tilt │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── time │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── timecop │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── timeout │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── timers │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tins │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tiny_tds │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tire-contrib │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tire │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tlsmail │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── to_regexp │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tokyocabinet │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── toml │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tool │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── trailblazer-option │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── transaction-simple │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── treetop │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── trollop │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── ttfunk │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tty-color │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tty-cursor │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tty-pager │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tty-platform │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tty-prompt │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tty-reader │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tty-screen │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tty-spinner │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tty-tree │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tty-which │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── typhoeus │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── tzinfo │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── uber │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── uglifier │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── unf │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── unf_ext │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── unicode-display_width │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── unicode │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── unicode_utils │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── uri_template │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── uuid │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── uuid4r │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── uuidtools │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── validatable │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── validates_email_format_of │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── vegas │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── verse │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── virtus │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── vmfloaty │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── wasabi │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── weakling │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── webrat │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── webrick │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── websocket-driver │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── websocket-extensions │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── websocket │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── whois │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── will_paginate │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── win32-api │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── win32-dir │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── win32-eventlog │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── win32-file-stat │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── win32-file │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── win32-open3 │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── win32-process │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── win32-security │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── win32-service │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── win32-taskscheduler │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── win32console │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── windows-api │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── windows-pr │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── windows_error │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── winrm-fs │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── winrm │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── wisper │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── with_advisory_lock │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── xcodeproj │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── xctasks │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── xml-simple │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── xmlrpc │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── xpath │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── yajl-ruby │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── yard │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ ├── zeitwerk │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ └── zookeeper │ │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ └── versions │ │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ └── rubygems.org │ │ │ └── gems │ │ │ ├── activesupport-3.2.12.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── activesupport-3.2.22.5.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── bundler-2.3.0.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── bundler-2.3.10.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── concurrent-ruby-1.1.9.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── diff-lcs-1.4.4.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── faker-1.1.2.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── ffi-1.15.4.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── i18n-0.6.11.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── i18n-0.9.5.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── io-console-0.6.0.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── mono_logger-1.1.1.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── multi_json-1.15.0.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── mustermann-1.1.1.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── rack-2.0.9.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── rack-2.2.3.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── rack-protection-2.1.0.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── redis-4.5.1.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── redis-namespace-1.6.0.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── resque-1.24.1.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── resque-scheduler-2.2.0.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── ruby2_keywords-0.0.5.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── rufus-scheduler-2.0.24.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── sinatra-2.1.0.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── tilt-2.0.10.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ ├── tzinfo-2.0.4.gem │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ │ └── vegas-0.1.11.gem │ │ │ └── GET │ │ │ ├── request │ │ │ └── response │ └── windows.rb │ ├── build_metadata.rb │ ├── builders.rb │ ├── bundle.rb │ ├── command_execution.rb │ ├── filters.rb │ ├── hax.rb │ ├── helpers.rb │ ├── indexes.rb │ ├── matchers.rb │ ├── path.rb │ ├── permissions.rb │ ├── platforms.rb │ ├── rubygems_ext.rb │ ├── rubygems_version_manager.rb │ ├── silent_logger.rb │ ├── switch_rubygems.rb │ └── the_bundle.rb └── tool └── bundler ├── Gemfile └── Gemfile.lock /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH__SYSTEM: "true" 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: 2 | - segiddins 3 | - rubygems 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "github-actions" 4 | directory: "/" 5 | schedule: 6 | interval: "weekly" 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.bundle/ 2 | /.yardoc 3 | /_yardoc/ 4 | /coverage/ 5 | /doc/ 6 | /pkg/ 7 | /spec/reports/ 8 | /tmp/ 9 | 10 | # rspec failure tracking 11 | .rspec_status 12 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /bin/bundler-compose: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | # frozen_string_literal: true 3 | 4 | require "pathname" 5 | 6 | $LOAD_PATH.unshift File.expand_path("../lib", Pathname.new(__dir__).realpath) 7 | load File.expand_path("../exe/bundler-compose", Pathname.new(__dir__).realpath) 8 | -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | # frozen_string_literal: true 3 | 4 | require_relative "../spec/support/rubygems_ext" 5 | 6 | if ["dev:deps", "dev:frozen_deps", "spec:deps", "spec:parallel_deps"].include?(ARGV[0]) 7 | Spec::Rubygems.gem_load_and_possibly_install("rake", "rake") 8 | else 9 | Spec::Rubygems.gem_load("rake", "rake") 10 | end 11 | -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | # frozen_string_literal: true 3 | 4 | require_relative "../spec/support/rubygems_ext" 5 | 6 | Spec::Rubygems.gem_load("rspec-core", "rspec") 7 | -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | # frozen_string_literal: true 3 | 4 | require_relative "../spec/support/rubygems_ext" 5 | 6 | Spec::Rubygems.gem_load("rubocop", "rubocop") 7 | -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -euo pipefail 3 | IFS=$'\n\t' 4 | set -vx 5 | 6 | bundle install 7 | 8 | # Do any other automated setup that you need to do here 9 | -------------------------------------------------------------------------------- /lib/bundler/compose/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Bundler 4 | module Compose 5 | VERSION = "0.1.0" 6 | end 7 | end 8 | -------------------------------------------------------------------------------- /sig/bundler/compose.rbs: -------------------------------------------------------------------------------- 1 | module Bundler 2 | module Compose 3 | VERSION: String 4 | # See the writing guide of rbs: https://github.com/ruby/rbs#guides 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /spec/support/artifice/compact_index.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative "helpers/compact_index" 4 | require_relative "helpers/artifice" 5 | 6 | Artifice.activate_with(CompactIndexAPI) 7 | -------------------------------------------------------------------------------- /spec/support/artifice/compact_index_api_missing.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative "helpers/compact_index" 4 | 5 | class CompactIndexApiMissing < CompactIndexAPI 6 | get "/fetch/actual/gem/:id" do 7 | halt 404 8 | end 9 | end 10 | 11 | require_relative "helpers/artifice" 12 | 13 | Artifice.activate_with(CompactIndexApiMissing) 14 | -------------------------------------------------------------------------------- /spec/support/artifice/compact_index_extra.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative "helpers/compact_index_extra" 4 | require_relative "helpers/artifice" 5 | 6 | Artifice.activate_with(CompactIndexExtra) 7 | -------------------------------------------------------------------------------- /spec/support/artifice/compact_index_extra_api.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative "helpers/compact_index_extra_api" 4 | require_relative "helpers/artifice" 5 | 6 | Artifice.activate_with(CompactIndexExtraApi) 7 | -------------------------------------------------------------------------------- /spec/support/artifice/compact_index_forbidden.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative "helpers/compact_index" 4 | 5 | class CompactIndexForbidden < CompactIndexAPI 6 | get "/versions" do 7 | halt 403 8 | end 9 | end 10 | 11 | require_relative "helpers/artifice" 12 | 13 | Artifice.activate_with(CompactIndexForbidden) 14 | -------------------------------------------------------------------------------- /spec/support/artifice/compact_index_no_gem.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative "helpers/compact_index" 4 | 5 | class CompactIndexNoGem < CompactIndexAPI 6 | get "/gems/:id" do 7 | halt 500 8 | end 9 | end 10 | 11 | require_relative "helpers/artifice" 12 | 13 | Artifice.activate_with(CompactIndexNoGem) 14 | -------------------------------------------------------------------------------- /spec/support/artifice/endpoint.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative "helpers/endpoint" 4 | require_relative "helpers/artifice" 5 | 6 | Artifice.activate_with(Endpoint) 7 | -------------------------------------------------------------------------------- /spec/support/artifice/endpoint_api_forbidden.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative "helpers/endpoint" 4 | 5 | class EndpointApiForbidden < Endpoint 6 | get "/api/v1/dependencies" do 7 | halt 403 8 | end 9 | end 10 | 11 | require_relative "helpers/artifice" 12 | 13 | Artifice.activate_with(EndpointApiForbidden) 14 | -------------------------------------------------------------------------------- /spec/support/artifice/endpoint_marshal_fail.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative "helpers/endpoint_marshal_fail" 4 | require_relative "helpers/artifice" 5 | 6 | Artifice.activate_with(EndpointMarshalFail) 7 | -------------------------------------------------------------------------------- /spec/support/artifice/helpers/endpoint_marshal_fail.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative "endpoint_fallback" 4 | 5 | class EndpointMarshalFail < EndpointFallback 6 | get "/api/v1/dependencies" do 7 | "f0283y01hasf" 8 | end 9 | end 10 | -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/Ascii85/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/Ascii85 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/Platform/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/Platform 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/RedCloth/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/RedCloth 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/afm/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/afm 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/akami/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/akami 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/albino/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/albino 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/algoliasearch/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/algoliasearch 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aliyun-sdk/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aliyun-sdk 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/annotate/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/annotate 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ansi/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ansi 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/appsignal/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/appsignal 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/arel/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/arel 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/2.3.0.dev rubygems/3.3.0.dev ruby/3.1.0 (x86_64-pc-linux) command/lock options/spec_run 70fc0d27760850fa 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/assistance/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/assistance 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ast/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ast 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/2.3.0.dev rubygems/3.3.0.dev ruby/3.1.0 (x86_64-pc-linux) command/lock options/spec_run 70fc0d27760850fa 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/atk/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/atk 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/atomos/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/atomos 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/audited/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/audited 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/awesome_print/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/awesome_print 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-crt/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-crt 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-acm/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-acm 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-batch/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-batch 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-chime/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-chime 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-core/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-core 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-dax/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-dax 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-dlm/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-dlm 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-docdb/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-docdb 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-ebs/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-ebs 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-ec2/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-ec2 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-ecr/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-ecr 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-ecs/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-ecs 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-efs/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-efs 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-eks/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-eks 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-emr/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-emr 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-fis/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-fis 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-fms/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-fms 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-fsx/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-fsx 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-glue/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-glue 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-iam/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-iam 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-iot/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-iot 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-ivs/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-ivs 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-kafka/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-kafka 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-kms/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-kms 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-lex/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-lex 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-macie/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-macie 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-mgn/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-mgn 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-mq/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-mq 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-mturk/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-mturk 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-mwaa/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-mwaa 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-pi/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-pi 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-polly/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-polly 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-qldb/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-qldb 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-ram/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-ram 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-rds/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-rds 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-s3/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-s3 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-ses/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-ses 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-sesv2/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-sesv2 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-sfn/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-sfn 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-sms/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-sms 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-sns/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-sns 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-sqs/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-sqs 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-ssm/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-ssm 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-sso/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-sso 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-swf/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-swf 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-v1/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-v1 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk-waf/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk-waf 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sdk/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sdk 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sigv2/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sigv2 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/aws-sigv4/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/aws-sigv4 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/backport/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/backport 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/bacon/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/bacon 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/beaker-abs/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/beaker-abs 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/beaker-aws/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/beaker-aws 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/beaker-pe/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/beaker-pe 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/beaker/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/beaker 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/benchmark/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/benchmark 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/bigdecimal/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/bigdecimal 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/bindata/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/bindata 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/bit-struct/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/bit-struct 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/blankslate/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/blankslate 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/blimpy/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/blimpy 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/bolt/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/bolt 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/brakeman/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/brakeman 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/byebug/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/byebug 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/cache/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/cache 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/cairo/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/cairo 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/camping/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/camping 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/cdb-full/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/cdb-full 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/certified/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/certified 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/chunky_png/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/chunky_png 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/circuitbox/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/circuitbox 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/claide/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/claide 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/clamp/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/clamp 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/classifier/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/classifier 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/cld3/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/cld3 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/cocoapods/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/cocoapods 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/codecov/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/codecov 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/color-tools/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/color-tools 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/color/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/color 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/colorator/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/colorator 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/colored/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/colored 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/colored2/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/colored2 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/columnize/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/columnize 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/commander/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/commander 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/compass/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/compass 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/crack/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/crack 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/cri/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/cri 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/csv/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/csv 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/curb/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/curb 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/debugger/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/debugger 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/deep_merge/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/deep_merge 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/discard/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/discard 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/do_jdbc/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/do_jdbc 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/do_sqlite3/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/do_sqlite3 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/docker-api/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/docker-api 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/e2mmap/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/e2mmap 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ed25519/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ed25519 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/escape/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/escape 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/etc/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/etc 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ethon/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ethon 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/facterdb/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/facterdb 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/factory_bot/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/factory_bot 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fastercsv/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fastercsv 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fattr/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fattr 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fcm/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fcm 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ffi/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ffi 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/2.3.0.dev rubygems/3.3.0.dev ruby/3.1.0 (x86_64-pc-linux) command/lock options/spec_run e39b57c93f6e3eb9 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fiddle/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fiddle 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/file-tail/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/file-tail 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/filesize/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/filesize 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fission/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fission 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog-aliyun/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog-aliyun 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog-atmos/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog-atmos 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog-aws/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog-aws 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog-core/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog-core 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog-dynect/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog-dynect 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog-ecloud/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog-ecloud 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog-google/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog-google 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog-joyent/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog-joyent 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog-json/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog-json 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog-local/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog-local 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog-ovirt/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog-ovirt 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog-radosgw/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog-radosgw 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog-riakcs/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog-riakcs 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog-voxel/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog-voxel 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog-vsphere/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog-vsphere 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog-xml/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog-xml 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fog/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fog 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/formatador/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/formatador 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/forwardable/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/forwardable 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/fssm/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/fssm 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/gdkpixbuf/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/gdkpixbuf 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/gettext/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/gettext 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/gio2/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/gio2 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/glib2/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/glib2 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/goldiloader/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/goldiloader 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/gpgme/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/gpgme 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/graphql/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/graphql 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/growl/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/growl 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/gssapi/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/gssapi 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/gtk2/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/gtk2 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/guard-rspec/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/guard-rspec 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/guard/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/guard 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/gyoku/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/gyoku 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/haml/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/haml 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/handsoap/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/handsoap 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/hashdiff/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/hashdiff 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/hashery/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/hashery 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/hashr/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/hashr 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/her/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/her 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/hiera-eyaml/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/hiera-eyaml 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/hiera/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/hiera 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/highline/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/highline 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/hirb/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/hirb 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/hoe/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/hoe 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/2.3.0.dev rubygems/3.3.0.dev ruby/3.1.0 (x86_64-pc-linux) command/lock options/spec_run e39b57c93f6e3eb9 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/holidays/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/holidays 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/http-2/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/http-2 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/http-parser/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/http-parser 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/http/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/http 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/httparty/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/httparty 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/httpi/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/httpi 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/iconv/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/iconv 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/idn-ruby/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/idn-ruby 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/in-parallel/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/in-parallel 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/inflecto/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/inflecto 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/inifile/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/inifile 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/interactor/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/interactor 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/io-console/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/io-console 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ipaddress/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ipaddress 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/irb/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/irb 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/jamespath/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/jamespath 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/jbuilder/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/jbuilder 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/jekyll/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/jekyll 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/jgrep/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/jgrep 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/jmespath/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/jmespath 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/json-schema/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/json-schema 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/jwt/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/jwt 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/2.3.0.dev rubygems/3.3.0.dev ruby/3.1.0 (x86_64-pc-linux) command/lock options/spec_run 70fc0d27760850fa 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/kramdown/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/kramdown 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/levenshtein/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/levenshtein 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/libhoney/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/libhoney 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/libnotify/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/libnotify 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/llhttp-ffi/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/llhttp-ffi 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/locale/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/locale 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/log4r/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/log4r 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/lograge/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/lograge 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/lumberjack/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/lumberjack 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/mab/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/mab 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/macaddr/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/macaddr 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/magic/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/magic 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/mailfactory/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/mailfactory 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/markaby/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/markaby 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/maruku/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/maruku 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/mathn/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/mathn 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/mercenary/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/mercenary 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/metaid/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/metaid 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/minitar-cli/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/minitar-cli 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/minitar/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/minitar 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/molinillo/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/molinillo 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/moneta/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/moneta 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/monetize/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/monetize 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/money/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/money 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/msgpack/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/msgpack 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/mysql2/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/mysql2 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/nanaimo/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/nanaimo 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/nap/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/nap 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ncursesw/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ncursesw 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/necromancer/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/necromancer 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/net-ldap/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/net-ldap 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/net-ping/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/net-ping 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/net-sftp/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/net-sftp 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/net-ssh-krb/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/net-ssh-krb 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/net-telnet/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/net-telnet 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/nori/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/nori 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/notiffany/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/notiffany 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ntlm-http/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ntlm-http 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/octokit/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/octokit 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/oga/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/oga 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/open4/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/open4 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/open_gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/open_gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/opennebula/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/opennebula 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/openssl-ccm/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/openssl-ccm 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/optimist/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/optimist 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/options/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/options 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/opus-ruby/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/opus-ruby 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/os/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/os 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/2.3.0.dev rubygems/3.3.0.dev ruby/3.1.0 (x86_64-pc-linux) command/lock options/spec_run 70fc0d27760850fa 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/paint/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/paint 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/pango/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/pango 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/parse-cron/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/parse-cron 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/parseinput/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/parseinput 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/parslet/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/parslet 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/passenger/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/passenger 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/pathspec/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/pathspec 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/pathutil/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/pathutil 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/patron/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/patron 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/pcaprub/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/pcaprub 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/pdf-core/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/pdf-core 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/pdf-reader/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/pdf-reader 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/pdf-writer/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/pdf-writer 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/pdk/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/pdk 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/pg/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/pg 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/pluginator/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/pluginator 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/popen4/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/popen4 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/powerbar/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/powerbar 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/prawn-core/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/prawn-core 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/prawn-table/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/prawn-table 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/prawn/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/prawn 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/prime/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/prime 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/pry-byebug/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/pry-byebug 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/pry-doc/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/pry-doc 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/pry/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/pry 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/2.3.0.dev rubygems/3.3.0.dev ruby/3.1.0 (x86_64-pc-linux) command/lock options/spec_run e39b57c93f6e3eb9 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ptools/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ptools 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/puma/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/puma 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/pundit/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/pundit 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/puppet-lint/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/puppet-lint 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/puppet/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/puppet 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/pusher/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/pusher 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/r10k/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/r10k 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rack-cors/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rack-cors 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rb-readline/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rb-readline 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rbovirt/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rbovirt 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rbtree/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rbtree 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rbtree3/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rbtree3 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rbvmomi/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rbvmomi 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rbvmomi2/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rbvmomi2 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rdiscount/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rdiscount 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/re2/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/re2 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/red-colors/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/red-colors 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/redcarpet/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/redcarpet 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/redis-rack/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/redis-rack 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/redis-rails/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/redis-rails 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/redis-store/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/redis-store 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ref/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ref 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/2.3.0.dev rubygems/3.3.0.dev ruby/3.1.0 (x86_64-pc-linux) command/lock options/spec_run e39b57c93f6e3eb9 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/reline/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/reline 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/require_all/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/require_all 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/retryable/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/retryable 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rgen/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rgen 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rmagick/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rmagick 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rouge/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rouge 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rpam2/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rpam2 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rspec-its/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rspec-its 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rspec-retry/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rspec-retry 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rsync/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rsync 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ruby-hmac/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ruby-hmac 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ruby-ll/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ruby-ll 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ruby-lxc/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ruby-lxc 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ruby-macho/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ruby-macho 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ruby-rc4/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ruby-rc4 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ruby-vips/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ruby-vips 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ruby2ruby/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ruby2ruby 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ruby_smb/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ruby_smb 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rubyntlm/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rubyntlm 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rubypython/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rubypython 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/rugged/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/rugged 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ruport/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ruport 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/safe_yaml/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/safe_yaml 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/savon/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/savon 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/sawyer/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/sawyer 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/scanf/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/scanf 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/scruffy/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/scruffy 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/scrypt/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/scrypt 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/searchkick/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/searchkick 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/semantic/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/semantic 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/semian/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/semian 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/sequel/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/sequel 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/sequel_pg/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/sequel_pg 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/serverspec/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/serverspec 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/set/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/set 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/sfl/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/sfl 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/shellany/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/shellany 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/shellter/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/shellter 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/sidekiq/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/sidekiq 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/signature/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/signature 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/singleton/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/singleton 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/slather/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/slather 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/slim/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/slim 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/snappy/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/snappy 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/socksify/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/socksify 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/solargraph/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/solargraph 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/sorted_set/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/sorted_set 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/specinfra/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/specinfra 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/stemmer/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/stemmer 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/stomp/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/stomp 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/storext/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/storext 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/stringio/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/stringio 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/subexec/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/subexec 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/syntax/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/syntax 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/systemu/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/systemu 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/table_print/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/table_print 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/temple/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/temple 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/termios/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/termios 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/text/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/text 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/thrift/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/thrift 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/timecop/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/timecop 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/tiny_tds/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/tiny_tds 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/tire/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/tire 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/to_regexp/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/to_regexp 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/toml/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/toml 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/ttfunk/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/ttfunk 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/tty-cursor/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/tty-cursor 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/tty-prompt/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/tty-prompt 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/tty-reader/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/tty-reader 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/tty-spinner/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/tty-spinner 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/typhoeus/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/typhoeus 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/unf/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/unf 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/2.3.0.dev rubygems/3.3.0.dev ruby/3.1.0 (x86_64-pc-linux) command/lock options/spec_run 70fc0d27760850fa 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/unicode/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/unicode 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/uuid/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/uuid 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/uuid4r/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/uuid4r 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/vmfloaty/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/vmfloaty 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/wasabi/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/wasabi 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/whois/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/whois 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/win32-file/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/win32-file 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/win32-open3/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/win32-open3 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/winrm-fs/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/winrm-fs 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/winrm/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/winrm 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/wisper/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/wisper 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/xcodeproj/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/xcodeproj 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/xctasks/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/xctasks 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/xml-simple/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/xml-simple 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/xmlrpc/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/xmlrpc 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ dbea14278e71a98b 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/yajl-ruby/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/yajl-ruby 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.1.6 ruby/2.7.7 (x86_64-pc-linux) command/lock options/ 82ffd88c19d63eda 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/info/zookeeper/GET/request: -------------------------------------------------------------------------------- 1 | > GET /info/zookeeper 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/3.0.0 rubygems/3.2.33 ruby/3.0.5 (x86_64-pc-linux) command/lock options/ 01ee184bc84b1379 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/index.rubygems.org/versions/GET/request: -------------------------------------------------------------------------------- 1 | > GET /versions 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: bundler/2.3.0.dev rubygems/3.3.0.dev ruby/3.1.0 (x86_64-pc-linux) command/lock options/spec_run e39b57c93f6e3eb9 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: index.rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/activesupport-3.2.12.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/activesupport-3.2.12.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/activesupport-3.2.12.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/activesupport-3.2.12.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/activesupport-3.2.22.5.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/activesupport-3.2.22.5.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/activesupport-3.2.22.5.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/activesupport-3.2.22.5.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/bundler-2.3.0.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/bundler-2.3.0.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/bundler-2.3.0.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/bundler-2.3.0.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/bundler-2.3.10.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/bundler-2.3.10.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/bundler-2.3.10.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/bundler-2.3.10.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/concurrent-ruby-1.1.9.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/concurrent-ruby-1.1.9.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/concurrent-ruby-1.1.9.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/concurrent-ruby-1.1.9.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/diff-lcs-1.4.4.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/diff-lcs-1.4.4.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/diff-lcs-1.4.4.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/diff-lcs-1.4.4.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/faker-1.1.2.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/faker-1.1.2.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/faker-1.1.2.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/faker-1.1.2.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/ffi-1.15.4.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/ffi-1.15.4.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/ffi-1.15.4.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/ffi-1.15.4.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/i18n-0.6.11.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/i18n-0.6.11.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/i18n-0.6.11.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/i18n-0.6.11.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/i18n-0.9.5.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/i18n-0.9.5.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/i18n-0.9.5.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/i18n-0.9.5.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/io-console-0.6.0.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/io-console-0.6.0.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/io-console-0.6.0.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/io-console-0.6.0.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/mono_logger-1.1.1.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/mono_logger-1.1.1.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/mono_logger-1.1.1.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/mono_logger-1.1.1.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/multi_json-1.15.0.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/multi_json-1.15.0.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/multi_json-1.15.0.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/multi_json-1.15.0.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/mustermann-1.1.1.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/mustermann-1.1.1.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/mustermann-1.1.1.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/mustermann-1.1.1.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/rack-2.0.9.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/rack-2.0.9.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/rack-2.0.9.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/rack-2.0.9.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/rack-2.2.3.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/rack-2.2.3.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/rack-2.2.3.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/rack-2.2.3.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/rack-protection-2.1.0.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/rack-protection-2.1.0.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/rack-protection-2.1.0.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/rack-protection-2.1.0.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/redis-4.5.1.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/redis-4.5.1.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/redis-4.5.1.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/redis-4.5.1.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/redis-namespace-1.6.0.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/redis-namespace-1.6.0.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/redis-namespace-1.6.0.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/redis-namespace-1.6.0.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/resque-1.24.1.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/resque-1.24.1.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/resque-1.24.1.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/resque-1.24.1.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/resque-scheduler-2.2.0.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/resque-scheduler-2.2.0.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/resque-scheduler-2.2.0.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/resque-scheduler-2.2.0.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/ruby2_keywords-0.0.5.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/ruby2_keywords-0.0.5.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/ruby2_keywords-0.0.5.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/ruby2_keywords-0.0.5.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/rufus-scheduler-2.0.24.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/rufus-scheduler-2.0.24.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/rufus-scheduler-2.0.24.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/rufus-scheduler-2.0.24.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/sinatra-2.1.0.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/sinatra-2.1.0.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/sinatra-2.1.0.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/sinatra-2.1.0.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/tilt-2.0.10.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/tilt-2.0.10.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/tilt-2.0.10.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/tilt-2.0.10.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/tzinfo-2.0.4.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/tzinfo-2.0.4.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/tzinfo-2.0.4.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/tzinfo-2.0.4.gem/GET/response -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/vegas-0.1.11.gem/GET/request: -------------------------------------------------------------------------------- 1 | > GET /gems/vegas-0.1.11.gem 2 | > accept-encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 3 | > accept: */* 4 | > user-agent: Ruby 5 | > connection: keep-alive 6 | > keep-alive: 30 7 | > host: rubygems.org -------------------------------------------------------------------------------- /spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/vegas-0.1.11.gem/GET/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-compose/6657fc3def47e6b14607b451cb9f16332a8860b0/spec/support/artifice/vcr_cassettes/realworld/rubygems.org/gems/vegas-0.1.11.gem/GET/response -------------------------------------------------------------------------------- /spec/support/bundle.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | # frozen_string_literal: true 3 | 4 | require "rubygems" 5 | Gem.instance_variable_set(:@ruby, ENV["RUBY"]) if ENV["RUBY"] 6 | 7 | load Gem.activate_bin_path("bundler", "bundle") 8 | -------------------------------------------------------------------------------- /spec/support/permissions.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Spec 4 | module Permissions 5 | def with_umask(new_umask) 6 | old_umask = File.umask(new_umask) 7 | yield if block_given? 8 | ensure 9 | File.umask(old_umask) 10 | end 11 | end 12 | end 13 | -------------------------------------------------------------------------------- /spec/support/silent_logger.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require "logger" 4 | module Spec 5 | class SilentLogger 6 | (::Logger.instance_methods - Object.instance_methods).each do |logger_instance_method| 7 | define_method(logger_instance_method) { |*args, &blk| } 8 | end 9 | end 10 | end 11 | -------------------------------------------------------------------------------- /spec/support/switch_rubygems.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative "rubygems_version_manager" 4 | RubygemsVersionManager.new(ENV["RGV"]).switch 5 | -------------------------------------------------------------------------------- /tool/bundler/Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source "https://rubygems.org" 4 | 5 | gem "bundler" 6 | gem "rake", "13.0.1" 7 | gem "rspec", "~> 3.0" 8 | 9 | gem "rubocop", "~> 1.21" 10 | gem "rubocop-rake", "~> 0.6.0" 11 | gem "rubocop-rspec", "~> 2.19" 12 | --------------------------------------------------------------------------------