ed-precompiled_json 2.15.1-arm64-darwin

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.
Files changed (49) hide show
  1. checksums.yaml +7 -0
  2. data/BSDL +22 -0
  3. data/CHANGES.md +693 -0
  4. data/COPYING +56 -0
  5. data/LEGAL +8 -0
  6. data/README.md +283 -0
  7. data/ext/json/ext/fbuffer/fbuffer.h +296 -0
  8. data/ext/json/ext/generator/extconf.rb +16 -0
  9. data/ext/json/ext/generator/generator.c +2169 -0
  10. data/ext/json/ext/parser/extconf.rb +15 -0
  11. data/ext/json/ext/parser/parser.c +1557 -0
  12. data/ext/json/ext/simd/conf.rb +24 -0
  13. data/ext/json/ext/simd/simd.h +188 -0
  14. data/ext/json/ext/vendor/fpconv.c +480 -0
  15. data/ext/json/ext/vendor/jeaiii-ltoa.h +267 -0
  16. data/json.gemspec +62 -0
  17. data/lib/json/add/bigdecimal.rb +58 -0
  18. data/lib/json/add/complex.rb +51 -0
  19. data/lib/json/add/core.rb +13 -0
  20. data/lib/json/add/date.rb +54 -0
  21. data/lib/json/add/date_time.rb +67 -0
  22. data/lib/json/add/exception.rb +49 -0
  23. data/lib/json/add/ostruct.rb +54 -0
  24. data/lib/json/add/range.rb +54 -0
  25. data/lib/json/add/rational.rb +49 -0
  26. data/lib/json/add/regexp.rb +48 -0
  27. data/lib/json/add/set.rb +48 -0
  28. data/lib/json/add/string.rb +35 -0
  29. data/lib/json/add/struct.rb +52 -0
  30. data/lib/json/add/symbol.rb +52 -0
  31. data/lib/json/add/time.rb +52 -0
  32. data/lib/json/common.rb +1130 -0
  33. data/lib/json/ext/3.0/generator.bundle +0 -0
  34. data/lib/json/ext/3.0/parser.bundle +0 -0
  35. data/lib/json/ext/3.1/generator.bundle +0 -0
  36. data/lib/json/ext/3.1/parser.bundle +0 -0
  37. data/lib/json/ext/3.2/generator.bundle +0 -0
  38. data/lib/json/ext/3.2/parser.bundle +0 -0
  39. data/lib/json/ext/3.3/generator.bundle +0 -0
  40. data/lib/json/ext/3.3/parser.bundle +0 -0
  41. data/lib/json/ext/3.4/generator.bundle +0 -0
  42. data/lib/json/ext/3.4/parser.bundle +0 -0
  43. data/lib/json/ext/generator/state.rb +99 -0
  44. data/lib/json/ext.rb +57 -0
  45. data/lib/json/generic_object.rb +67 -0
  46. data/lib/json/truffle_ruby/generator.rb +708 -0
  47. data/lib/json/version.rb +5 -0
  48. data/lib/json.rb +642 -0
  49. metadata +99 -0
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ed-precompiled_json
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.15.1
5
+ platform: arm64-darwin
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
+ extra_rdoc_files:
17
+ - README.md
18
+ files:
19
+ - BSDL
20
+ - CHANGES.md
21
+ - COPYING
22
+ - LEGAL
23
+ - README.md
24
+ - ext/json/ext/fbuffer/fbuffer.h
25
+ - ext/json/ext/generator/extconf.rb
26
+ - ext/json/ext/generator/generator.c
27
+ - ext/json/ext/parser/extconf.rb
28
+ - ext/json/ext/parser/parser.c
29
+ - ext/json/ext/simd/conf.rb
30
+ - ext/json/ext/simd/simd.h
31
+ - ext/json/ext/vendor/fpconv.c
32
+ - ext/json/ext/vendor/jeaiii-ltoa.h
33
+ - json.gemspec
34
+ - lib/json.rb
35
+ - lib/json/add/bigdecimal.rb
36
+ - lib/json/add/complex.rb
37
+ - lib/json/add/core.rb
38
+ - lib/json/add/date.rb
39
+ - lib/json/add/date_time.rb
40
+ - lib/json/add/exception.rb
41
+ - lib/json/add/ostruct.rb
42
+ - lib/json/add/range.rb
43
+ - lib/json/add/rational.rb
44
+ - lib/json/add/regexp.rb
45
+ - lib/json/add/set.rb
46
+ - lib/json/add/string.rb
47
+ - lib/json/add/struct.rb
48
+ - lib/json/add/symbol.rb
49
+ - lib/json/add/time.rb
50
+ - lib/json/common.rb
51
+ - lib/json/ext.rb
52
+ - lib/json/ext/3.0/generator.bundle
53
+ - lib/json/ext/3.0/parser.bundle
54
+ - lib/json/ext/3.1/generator.bundle
55
+ - lib/json/ext/3.1/parser.bundle
56
+ - lib/json/ext/3.2/generator.bundle
57
+ - lib/json/ext/3.2/parser.bundle
58
+ - lib/json/ext/3.3/generator.bundle
59
+ - lib/json/ext/3.3/parser.bundle
60
+ - lib/json/ext/3.4/generator.bundle
61
+ - lib/json/ext/3.4/parser.bundle
62
+ - lib/json/ext/generator/state.rb
63
+ - lib/json/generic_object.rb
64
+ - lib/json/truffle_ruby/generator.rb
65
+ - lib/json/version.rb
66
+ homepage: https://github.com/ruby/json
67
+ licenses:
68
+ - Ruby
69
+ metadata:
70
+ bug_tracker_uri: https://github.com/ruby/json/issues
71
+ changelog_uri: https://github.com/ruby/json/blob/master/CHANGES.md
72
+ documentation_uri: https://docs.ruby-lang.org/en/master/JSON.html
73
+ homepage_uri: https://github.com/ruby/json
74
+ source_code_uri: https://github.com/ruby/json
75
+ rdoc_options:
76
+ - "--title"
77
+ - JSON implementation for Ruby
78
+ - "--main"
79
+ - README.md
80
+ require_paths:
81
+ - lib
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: '3.0'
87
+ - - "<"
88
+ - !ruby/object:Gem::Version
89
+ version: 3.5.dev
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ requirements: []
96
+ rubygems_version: 3.6.7
97
+ specification_version: 4
98
+ summary: JSON Implementation for Ruby
99
+ test_files: []