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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1ca200517605ad62ba962df669b12dcf92364361
4
- data.tar.gz: 2ecf70785ae36190c14514232877ce0a1635e2e7
3
+ metadata.gz: b3c3d737cec65d40c157d8caf434a39b3fafa117
4
+ data.tar.gz: e97017c6ce5f58def9de69f44518be9dd8be9535
5
5
  SHA512:
6
- metadata.gz: d83f1150939497976672c7f0d3a19c3e2095f2af8af9a631f4e4068a8ff009c5235b451e16489faabd7b501bffe21666fa5c7211b6ae6746eb747e5cb50dbcb3
7
- data.tar.gz: 9a45dcdb8afec5f39856f5e49294c5a831f04ad409e04125d5c5af21e6a6f8156421caed3088a1327d2f570426e38ea86f1fc3d2abc314edbbcf0cf9ffc3c96c
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
- Currently, `edn_turbo` cannot read multiple EDN values from a stream
111
- the way that `edn-ruby`'s parser can. `edn_turbo` expects string input
112
- and has no way to control ruby streams of other types.
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
  ==============
@@ -0,0 +1,3 @@
1
+ edn_parser.o: edn_parser.cc edn_parser.h
2
+ edn_parser_util.o: edn_parser_util.cc edn_parser.h edn_parser_util.h
3
+ edn_parser_util_encode.o: edn_parse_util_encode.cc edn_parser_util.h