oj 0.8.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of oj might be problematic. Click here for more details.
- data/LICENSE +1 -1
- data/README.md +163 -104
- data/ext/oj/cache8.c +130 -0
- data/ext/oj/cache8.h +46 -0
- data/ext/oj/dump.c +270 -106
- data/ext/oj/load.c +266 -77
- data/ext/oj/oj.c +7 -0
- data/ext/oj/oj.h +3 -0
- data/lib/oj/version.rb +1 -1
- data/test/perf_obj.rb +3 -3
- data/test/perf_strict.rb +105 -35
- data/test/tests.rb +108 -7
- metadata +4 -2
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oj
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-03-05 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: ! 'The fastest JSON parser and object serializer. '
|
15
15
|
email: peter@ohler.com
|
@@ -24,8 +24,10 @@ files:
|
|
24
24
|
- lib/oj.rb
|
25
25
|
- ext/oj/extconf.rb
|
26
26
|
- ext/oj/cache.h
|
27
|
+
- ext/oj/cache8.h
|
27
28
|
- ext/oj/oj.h
|
28
29
|
- ext/oj/cache.c
|
30
|
+
- ext/oj/cache8.c
|
29
31
|
- ext/oj/dump.c
|
30
32
|
- ext/oj/load.c
|
31
33
|
- ext/oj/oj.c
|