gitextract_cy1fxiqg/ ├── .github/ │ └── workflows/ │ └── ruby.yml ├── .gitignore ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin/ │ ├── bundler │ ├── console │ ├── rake │ └── setup ├── json-stream.gemspec ├── lib/ │ └── json/ │ ├── stream/ │ │ ├── buffer.rb │ │ ├── builder.rb │ │ ├── parser.rb │ │ └── version.rb │ └── stream.rb └── spec/ ├── buffer_spec.rb ├── builder_spec.rb ├── fixtures/ │ └── repository.json └── parser_spec.rb