ed-precompiled_json 2.15.1
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 +7 -0
- data/BSDL +22 -0
- data/CHANGES.md +693 -0
- data/COPYING +56 -0
- data/LEGAL +8 -0
- data/README.md +283 -0
- data/ext/json/ext/fbuffer/fbuffer.h +296 -0
- data/ext/json/ext/generator/extconf.rb +16 -0
- data/ext/json/ext/generator/generator.c +2169 -0
- data/ext/json/ext/parser/extconf.rb +15 -0
- data/ext/json/ext/parser/parser.c +1557 -0
- data/ext/json/ext/simd/conf.rb +24 -0
- data/ext/json/ext/simd/simd.h +188 -0
- data/ext/json/ext/vendor/fpconv.c +480 -0
- data/ext/json/ext/vendor/jeaiii-ltoa.h +267 -0
- data/json.gemspec +62 -0
- data/lib/json/add/bigdecimal.rb +58 -0
- data/lib/json/add/complex.rb +51 -0
- data/lib/json/add/core.rb +13 -0
- data/lib/json/add/date.rb +54 -0
- data/lib/json/add/date_time.rb +67 -0
- data/lib/json/add/exception.rb +49 -0
- data/lib/json/add/ostruct.rb +54 -0
- data/lib/json/add/range.rb +54 -0
- data/lib/json/add/rational.rb +49 -0
- data/lib/json/add/regexp.rb +48 -0
- data/lib/json/add/set.rb +48 -0
- data/lib/json/add/string.rb +35 -0
- data/lib/json/add/struct.rb +52 -0
- data/lib/json/add/symbol.rb +52 -0
- data/lib/json/add/time.rb +52 -0
- data/lib/json/common.rb +1130 -0
- data/lib/json/ext/generator/state.rb +99 -0
- data/lib/json/ext.rb +57 -0
- data/lib/json/generic_object.rb +67 -0
- data/lib/json/truffle_ruby/generator.rb +708 -0
- data/lib/json/version.rb +5 -0
- data/lib/json.rb +642 -0
- metadata +88 -0
metadata
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ed-precompiled_json
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 2.15.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Florian Frank
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: This is a JSON implementation as a Ruby extension in C.
|
|
13
|
+
email: flori@ping.de
|
|
14
|
+
executables: []
|
|
15
|
+
extensions:
|
|
16
|
+
- ext/json/ext/generator/extconf.rb
|
|
17
|
+
- ext/json/ext/parser/extconf.rb
|
|
18
|
+
extra_rdoc_files:
|
|
19
|
+
- README.md
|
|
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/parser/extconf.rb
|
|
30
|
+
- ext/json/ext/parser/parser.c
|
|
31
|
+
- ext/json/ext/simd/conf.rb
|
|
32
|
+
- ext/json/ext/simd/simd.h
|
|
33
|
+
- ext/json/ext/vendor/fpconv.c
|
|
34
|
+
- ext/json/ext/vendor/jeaiii-ltoa.h
|
|
35
|
+
- json.gemspec
|
|
36
|
+
- lib/json.rb
|
|
37
|
+
- lib/json/add/bigdecimal.rb
|
|
38
|
+
- lib/json/add/complex.rb
|
|
39
|
+
- lib/json/add/core.rb
|
|
40
|
+
- lib/json/add/date.rb
|
|
41
|
+
- lib/json/add/date_time.rb
|
|
42
|
+
- lib/json/add/exception.rb
|
|
43
|
+
- lib/json/add/ostruct.rb
|
|
44
|
+
- lib/json/add/range.rb
|
|
45
|
+
- lib/json/add/rational.rb
|
|
46
|
+
- lib/json/add/regexp.rb
|
|
47
|
+
- lib/json/add/set.rb
|
|
48
|
+
- lib/json/add/string.rb
|
|
49
|
+
- lib/json/add/struct.rb
|
|
50
|
+
- lib/json/add/symbol.rb
|
|
51
|
+
- lib/json/add/time.rb
|
|
52
|
+
- lib/json/common.rb
|
|
53
|
+
- lib/json/ext.rb
|
|
54
|
+
- lib/json/ext/generator/state.rb
|
|
55
|
+
- lib/json/generic_object.rb
|
|
56
|
+
- lib/json/truffle_ruby/generator.rb
|
|
57
|
+
- lib/json/version.rb
|
|
58
|
+
homepage: https://github.com/ruby/json
|
|
59
|
+
licenses:
|
|
60
|
+
- Ruby
|
|
61
|
+
metadata:
|
|
62
|
+
bug_tracker_uri: https://github.com/ruby/json/issues
|
|
63
|
+
changelog_uri: https://github.com/ruby/json/blob/master/CHANGES.md
|
|
64
|
+
documentation_uri: https://docs.ruby-lang.org/en/master/JSON.html
|
|
65
|
+
homepage_uri: https://github.com/ruby/json
|
|
66
|
+
source_code_uri: https://github.com/ruby/json
|
|
67
|
+
rdoc_options:
|
|
68
|
+
- "--title"
|
|
69
|
+
- JSON implementation for Ruby
|
|
70
|
+
- "--main"
|
|
71
|
+
- README.md
|
|
72
|
+
require_paths:
|
|
73
|
+
- lib
|
|
74
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
75
|
+
requirements:
|
|
76
|
+
- - ">="
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
version: '2.7'
|
|
79
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
|
+
requirements:
|
|
81
|
+
- - ">="
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
version: '0'
|
|
84
|
+
requirements: []
|
|
85
|
+
rubygems_version: 3.6.7
|
|
86
|
+
specification_version: 4
|
|
87
|
+
summary: JSON Implementation for Ruby
|
|
88
|
+
test_files: []
|