json 2.10.2 → 2.19.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGES.md +205 -7
- data/LEGAL +12 -0
- data/README.md +43 -1
- data/ext/json/ext/fbuffer/fbuffer.h +140 -86
- data/ext/json/ext/generator/extconf.rb +8 -0
- data/ext/json/ext/generator/generator.c +787 -616
- data/ext/json/ext/json.h +116 -0
- data/ext/json/ext/parser/extconf.rb +11 -3
- data/ext/json/ext/parser/parser.c +974 -703
- data/ext/json/ext/simd/conf.rb +24 -0
- data/ext/json/ext/simd/simd.h +208 -0
- data/ext/json/ext/vendor/fpconv.c +480 -0
- data/ext/json/ext/vendor/jeaiii-ltoa.h +267 -0
- data/ext/json/ext/vendor/ryu.h +819 -0
- data/json.gemspec +2 -3
- data/lib/json/add/core.rb +1 -0
- data/lib/json/add/string.rb +35 -0
- data/lib/json/common.rb +374 -188
- data/lib/json/ext/generator/state.rb +11 -14
- data/lib/json/ext.rb +2 -2
- data/lib/json/generic_object.rb +0 -8
- data/lib/json/truffle_ruby/generator.rb +137 -72
- data/lib/json/version.rb +1 -1
- data/lib/json.rb +90 -2
- metadata +66 -57
metadata
CHANGED
|
@@ -1,83 +1,92 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: json
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.19.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Florian Frank
|
|
7
|
+
- Florian Frank
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies: []
|
|
12
12
|
description: This is a JSON implementation as a Ruby extension in C.
|
|
13
13
|
email: flori@ping.de
|
|
14
14
|
executables: []
|
|
15
15
|
extensions:
|
|
16
|
-
- ext/json/ext/generator/extconf.rb
|
|
17
|
-
- ext/json/ext/parser/extconf.rb
|
|
16
|
+
- ext/json/ext/generator/extconf.rb
|
|
17
|
+
- ext/json/ext/parser/extconf.rb
|
|
18
18
|
extra_rdoc_files:
|
|
19
|
-
- README.md
|
|
19
|
+
- README.md
|
|
20
20
|
files:
|
|
21
|
-
- BSDL
|
|
22
|
-
- CHANGES.md
|
|
23
|
-
- COPYING
|
|
24
|
-
- LEGAL
|
|
25
|
-
- README.md
|
|
26
|
-
- ext/json/ext/fbuffer/fbuffer.h
|
|
27
|
-
- ext/json/ext/generator/extconf.rb
|
|
28
|
-
- ext/json/ext/generator/generator.c
|
|
29
|
-
- ext/json/ext/
|
|
30
|
-
- ext/json/ext/parser/
|
|
31
|
-
- json.
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
- lib/json
|
|
39
|
-
- lib/json/add/
|
|
40
|
-
- lib/json/add/
|
|
41
|
-
- lib/json/add/
|
|
42
|
-
- lib/json/add/
|
|
43
|
-
- lib/json/add/
|
|
44
|
-
- lib/json/add/
|
|
45
|
-
- lib/json/add/
|
|
46
|
-
- lib/json/add/
|
|
47
|
-
- lib/json/
|
|
48
|
-
- lib/json/
|
|
49
|
-
- lib/json/
|
|
50
|
-
- lib/json/
|
|
51
|
-
- lib/json/
|
|
52
|
-
- lib/json/
|
|
53
|
-
|
|
21
|
+
- BSDL
|
|
22
|
+
- CHANGES.md
|
|
23
|
+
- COPYING
|
|
24
|
+
- LEGAL
|
|
25
|
+
- README.md
|
|
26
|
+
- ext/json/ext/fbuffer/fbuffer.h
|
|
27
|
+
- ext/json/ext/generator/extconf.rb
|
|
28
|
+
- ext/json/ext/generator/generator.c
|
|
29
|
+
- ext/json/ext/json.h
|
|
30
|
+
- ext/json/ext/parser/extconf.rb
|
|
31
|
+
- ext/json/ext/parser/parser.c
|
|
32
|
+
- ext/json/ext/simd/conf.rb
|
|
33
|
+
- ext/json/ext/simd/simd.h
|
|
34
|
+
- ext/json/ext/vendor/fpconv.c
|
|
35
|
+
- ext/json/ext/vendor/jeaiii-ltoa.h
|
|
36
|
+
- ext/json/ext/vendor/ryu.h
|
|
37
|
+
- json.gemspec
|
|
38
|
+
- lib/json.rb
|
|
39
|
+
- lib/json/add/bigdecimal.rb
|
|
40
|
+
- lib/json/add/complex.rb
|
|
41
|
+
- lib/json/add/core.rb
|
|
42
|
+
- lib/json/add/date.rb
|
|
43
|
+
- lib/json/add/date_time.rb
|
|
44
|
+
- lib/json/add/exception.rb
|
|
45
|
+
- lib/json/add/ostruct.rb
|
|
46
|
+
- lib/json/add/range.rb
|
|
47
|
+
- lib/json/add/rational.rb
|
|
48
|
+
- lib/json/add/regexp.rb
|
|
49
|
+
- lib/json/add/set.rb
|
|
50
|
+
- lib/json/add/string.rb
|
|
51
|
+
- lib/json/add/struct.rb
|
|
52
|
+
- lib/json/add/symbol.rb
|
|
53
|
+
- lib/json/add/time.rb
|
|
54
|
+
- lib/json/common.rb
|
|
55
|
+
- lib/json/ext.rb
|
|
56
|
+
- lib/json/ext/generator/state.rb
|
|
57
|
+
- lib/json/generic_object.rb
|
|
58
|
+
- lib/json/truffle_ruby/generator.rb
|
|
59
|
+
- lib/json/version.rb
|
|
60
|
+
homepage: "https://github.com/ruby/json"
|
|
54
61
|
licenses:
|
|
55
|
-
- Ruby
|
|
62
|
+
- Ruby
|
|
56
63
|
metadata:
|
|
57
|
-
bug_tracker_uri: https://github.com/ruby/json/issues
|
|
58
|
-
changelog_uri: https://github.com/ruby/json/blob/master/CHANGES.md
|
|
59
|
-
documentation_uri: https://docs.ruby-lang.org/en/master/JSON.html
|
|
60
|
-
homepage_uri: https://github.com/ruby/json
|
|
61
|
-
source_code_uri: https://github.com/ruby/json
|
|
64
|
+
bug_tracker_uri: "https://github.com/ruby/json/issues"
|
|
65
|
+
changelog_uri: "https://github.com/ruby/json/blob/master/CHANGES.md"
|
|
66
|
+
documentation_uri: "https://docs.ruby-lang.org/en/master/JSON.html"
|
|
67
|
+
homepage_uri: "https://github.com/ruby/json"
|
|
68
|
+
source_code_uri: "https://github.com/ruby/json"
|
|
62
69
|
rdoc_options:
|
|
63
|
-
- "--title"
|
|
64
|
-
- JSON implementation for Ruby
|
|
65
|
-
- "--main"
|
|
66
|
-
- README.md
|
|
70
|
+
- "--title"
|
|
71
|
+
- JSON implementation for Ruby
|
|
72
|
+
- "--main"
|
|
73
|
+
- README.md
|
|
67
74
|
require_paths:
|
|
68
|
-
- lib
|
|
75
|
+
- lib
|
|
69
76
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
70
77
|
requirements:
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
78
|
+
-
|
|
79
|
+
- ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: "2.7"
|
|
74
82
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
83
|
requirements:
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
84
|
+
-
|
|
85
|
+
- ">="
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
version: "0"
|
|
79
88
|
requirements: []
|
|
80
|
-
rubygems_version:
|
|
89
|
+
rubygems_version: 4.1.0.dev
|
|
81
90
|
specification_version: 4
|
|
82
91
|
summary: JSON Implementation for Ruby
|
|
83
92
|
test_files: []
|