crack icon indicating copy to clipboard operation
crack copied to clipboard

Really simple JSON and XML parsing, ripped from Merb and Rails.

Results 23 crack issues
Sort by recently updated
recently updated
newest added

This is available since Psych 3.1 [[1], [2]], but mandatory since Psych 4.0 [[3]]. Of course the question is if this is acceptable with regard to backward compatibility, because if...

Testing with Ruby 3.1 / Psych 4.0, I observe a lot of test failures: ~~~ $ ruby -Ilib:test -e 'Dir.glob "./test/**/json_test.rb", &method(:require)' Run options: --seed 18403 # Running: EEEEEEEEEEEEEEEEEEE.EEEEEEEEEEEEEEEEEEEE Finished...

Could you please push v0.4.5 tag? That would be super useful. Thx.

PR #61 removed not only test files, but also useful files, such as LICENSE file. This file is demanded by Linux distros such as Fedora.

I've unpacked the gem v4.4.0 from rubygems and there's no LICENSE file.

Run the following code: # ```ruby require 'crack' class Launcher def initialize end def run strj = "{\"budget_start\":\"2014-02-28\",\"budget_end\":\"2014-02-20\"}" resp = Crack::JSON.parse(strj); print "\n" end end l = Launcher.new l.run ```...

Hi, thanks for the awesome software! Many big companies have the policy to only allow software in production that's stable. This is determined in most cases by having a 1.0.0...

Hi, I have found out, that UTF-8 string parsing is not working correctly. Sample input: ``` {"winstrom":{"widget":[{"name":"John Ďoe","age":"3.14"}]}} ``` I get this: ``` {"winstrom"=>{"widget"=>[{"name"=>"John Ďoe", " age"=>" 3.14"}]}} ^ ^...