edn_turbo 0.4.1 → 0.5.0
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/README.md +3 -3
- data/ext/edn_turbo/depend +3 -0
- data/ext/edn_turbo/edn_parser.cc +274 -275
- data/ext/edn_turbo/edn_parser.h +16 -12
- data/ext/edn_turbo/edn_parser.rl +8 -9
- data/ext/edn_turbo/edn_parser_util.cc +105 -1
- data/ext/edn_turbo/edn_parser_util.h +11 -0
- data/ext/edn_turbo/edn_parser_util_unicode.cc +32 -0
- data/ext/edn_turbo/main.cc +57 -14
- data/lib/edn_turbo/version.rb +2 -2
- data/test/test_output_diff.rb +169 -129
- metadata +6 -4
- data/ext/edn_turbo/edn_parser_unicode.cc +0 -29
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b3c3d737cec65d40c157d8caf434a39b3fafa117
|
4
|
+
data.tar.gz: e97017c6ce5f58def9de69f44518be9dd8be9535
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e600859d741c0b7c116ba2a0e077d8a38d9c5dc57a6970bdbd3403ee60792911eb112b139fce67b02e58cd683de444f96ac7841a6f2498c39ea42e8140e0d9de
|
7
|
+
data.tar.gz: '0830c6b56d2835d795628f65895ebf044cf5f120dfe4870bcc6d0c1ef2d2e13d12e9ee36e19e942ab8fccf2807578eeedbc09ca227ffaac93ec9f9cb71ef756e'
|
data/README.md
CHANGED
@@ -107,9 +107,9 @@ Or instantiate and reuse an instance of a parser:
|
|
107
107
|
|
108
108
|
Differences with edn gem
|
109
109
|
========================
|
110
|
-
|
111
|
-
|
112
|
-
|
110
|
+
`edn_turbo` reads `String` and core IO types using C-api calls.
|
111
|
+
However, data from `StringIO` sources is extracted using `read()`
|
112
|
+
calls into the ruby side.
|
113
113
|
|
114
114
|
Known problems
|
115
115
|
==============
|