oj 3.2.1 → 3.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/oj/dump.c +2 -1
- data/ext/oj/dump.h +1 -0
- data/ext/oj/oj.c +59 -6
- data/ext/oj/oj.h +2 -0
- data/ext/oj/parse.h +1 -0
- data/ext/oj/wab.c +562 -0
- data/lib/oj/version.rb +1 -1
- data/pages/Modes.md +47 -40
- data/pages/WAB.md +13 -0
- data/test/perf_wab.rb +131 -0
- data/test/test_wab.rb +307 -0
- data/test/tests.rb +1 -0
- metadata +9 -2
data/test/tests.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oj
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Ohler
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-07-
|
11
|
+
date: 2017-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler
|
@@ -60,6 +60,7 @@ extensions:
|
|
60
60
|
extra_rdoc_files:
|
61
61
|
- README.md
|
62
62
|
- pages/Advanced.md
|
63
|
+
- pages/WAB.md
|
63
64
|
- pages/Encoding.md
|
64
65
|
- pages/Modes.md
|
65
66
|
- pages/Security.md
|
@@ -118,6 +119,7 @@ files:
|
|
118
119
|
- ext/oj/string_writer.c
|
119
120
|
- ext/oj/val_stack.c
|
120
121
|
- ext/oj/val_stack.h
|
122
|
+
- ext/oj/wab.c
|
121
123
|
- lib/oj.rb
|
122
124
|
- lib/oj/active_support_helper.rb
|
123
125
|
- lib/oj/bag.rb
|
@@ -138,6 +140,7 @@ files:
|
|
138
140
|
- pages/Options.md
|
139
141
|
- pages/Rails.md
|
140
142
|
- pages/Security.md
|
143
|
+
- pages/WAB.md
|
141
144
|
- test/_test_active.rb
|
142
145
|
- test/_test_active_mimic.rb
|
143
146
|
- test/_test_mimic_rails.rb
|
@@ -179,6 +182,7 @@ files:
|
|
179
182
|
- test/perf_scp.rb
|
180
183
|
- test/perf_simple.rb
|
181
184
|
- test/perf_strict.rb
|
185
|
+
- test/perf_wab.rb
|
182
186
|
- test/sample.rb
|
183
187
|
- test/sample/change.rb
|
184
188
|
- test/sample/dir.rb
|
@@ -206,6 +210,7 @@ files:
|
|
206
210
|
- test/test_scp.rb
|
207
211
|
- test/test_strict.rb
|
208
212
|
- test/test_various.rb
|
213
|
+
- test/test_wab.rb
|
209
214
|
- test/test_writer.rb
|
210
215
|
- test/tests.rb
|
211
216
|
- test/tests_mimic.rb
|
@@ -266,6 +271,7 @@ test_files:
|
|
266
271
|
- test/sample/rect.rb
|
267
272
|
- test/tests.rb
|
268
273
|
- test/test_object.rb
|
274
|
+
- test/perf_wab.rb
|
269
275
|
- test/tests_mimic.rb
|
270
276
|
- test/perf_saj.rb
|
271
277
|
- test/tests_mimic_addition.rb
|
@@ -293,6 +299,7 @@ test_files:
|
|
293
299
|
- test/activesupport4/test_helper.rb
|
294
300
|
- test/activesupport4/decoding_test.rb
|
295
301
|
- test/activesupport4/encoding_test.rb
|
302
|
+
- test/test_wab.rb
|
296
303
|
- test/perf_file.rb
|
297
304
|
- test/perf_compat.rb
|
298
305
|
- test/test_various.rb
|