yajl-ruby
yajl-ruby copied to clipboard
A streaming JSON parsing and encoding library for Ruby (C bindings to yajl)
Why the archive streaming support will be deprecated in 2.0? See https://github.com/brianmario/yajl-ruby/blob/master/CHANGELOG.md#100-september-13th-2011
I wanted to test this in our app, but I saw some sorbet errors: ``` TypeError: T.let: Expected type OpenStruct, got type Hash with value {"..."=>"..."} Caller: some_ruby.rb:71 ``` The...
With yajl-ruby-1.4.1 Over the last week we have been experiencing a, for lack of a better word, massive issue with ruby applications just crashing intermittently The backtrace ultimately points to...
Please update the library to work with UN-bundled system YAJL 2 library versions.
This PR updates GitHub Actions workflows. Adding Ruby 3.1 to the CI matrix is included. Here are the details: - Update actions/checkout from v2 to v3 - Use ruby/setup-ruby instead...
I am getting this error while adding gem to vendor set when it tries to load the gem specifications. ``` Invalid gemspec in [/Users/vjagdale/.inspec/gems/3.0.0/gems/yajl-ruby-1.4.3/yajl-ruby.gemspec]: cannot load such file -- ./lib/yajl/version...
Calling `Yajl.load(ARGF)` will hang after the last object has been yielded. E.g. ```bash echo '{"a": 1}' | ruby -ryajl -e 'Yajl.load(ARGF) {|o| p o }' ``` Will output ``` {"a"=>1}...