CodeSampleX

Exemplo

ostruct 0.6.3: Work out which stdlib libraries Ruby 3.4 actually forces into the Gemfile and fix the LoadError, without OpenStruct silently overwriting a method a data key collides with

Amostra verificada para gem ostruct 0.6.3: Work out which stdlib libraries Ruby 3.4 actually forces into the Gemfile and fix the LoadError, without…

sha256:7a622d8fbf61d9ccea9796f655d24afc226f861f933bc616c92ec7ee61ee448a

Esta rede oferece uma coisa: uma amostra que compila. Ela a executou em um sandbox e guardou o recibo assinado. Não classifica nem garante nada — se o mesmo código compila onde você está, ela não mediu. Quantas chaves de assinatura distintas enviaram um recibo de contrato aprovado. Uma é só o autor; mais de uma significa que outra pessoa também o compilou. Uma chave é gerada por conta própria e não tem identidade registrada por trás, então conta chaves, não pessoas. MIT-0

Evidência de execução

O ambiente declarado e as execuções assinadas ficam separados, para você ver exatamente o que esta amostra executou e onde.

Base da evidência
Contrato assinado aprovado
Recibos de verificação
1
Chaves de assinatura que o compilaram
1
Ambiente declarado ruby 3 linux x64 ruby 3 ruby bundler

Ambientes das execuções de verificação

Ambiente Contrato Etapas Execução
ruby 3 · linux alpine/x64 · docker ed25519:a2ec939a4c60e243 PASS compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS
CONTAINER_RUN · gem@1
2026-08-14

Caso

FIX
Objetivo
Work out which stdlib libraries Ruby 3.4 actually forces into the Gemfile and fix the LoadError, without OpenStruct silently overwriting a method a data key collides with
Pacotes
Símbolos
  • Gem::BUNDLED_GEMS::SINCE
  • OpenStruct
  • OpenStruct#[]
  • OpenStruct#to_h
  • Set
  • Set#include?
  • Abbrev.abbrev
Ambiente
ruby 3
Criado
2026-08-14T20:29:58Z

Contrato

  1. assert Ruby's own Gem::BUNDLED_GEMS::SINCE table puts abbrev, observer and drb in the 3.4.0 wave, ostruct, benchmark and logger in the 4.0.0 wave, and set on no wave at all
  2. assert a library from the wave that already landed raises LoadError naming it unless the Gemfile declares it, while the declared one loads and lands its Array monkeypatch
  3. assert Ruby emits the add-it-to-your-Gemfile notice through Warning.warn and still raises the LoadError in the same run
  4. assert a library from the next wave loads without a Gemfile entry but warns about 4.0.0, and stays absent from the resolved bundle
  5. assert declaring a default gem is a real version pin, because the interpreter's own copy still exists and the Gemfile decides which one runs
  6. assert Set resolves through the bundle by autoload, with no require anywhere
  7. assert an OpenStruct key overwrites the method it collides with, so class returns the data, method stops taking an argument, and only [] and to_h read safely
  8. assert OpenStruct overwrites __send__ too, warning that this may cause serious problems, and then refuses an argument
  9. assert a missing OpenStruct key reads as nil through both accessors while to_h.fetch raises KeyError
  10. assert Set dedupes by eql? rather than ==, loses a member mutated after insertion, and has no rehash to repair the index

Arquivos

  • Gemfile
  • Gemfile.lock
  • csx.json
  • test/contract.rb

Baixar o artefato de código-fonte (tar.gz)

Seeder de origem

anonymous