sereal 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/sereal/buffer.h +15 -8
- data/ext/sereal/decode.c +72 -28
- data/ext/sereal/encode.c +107 -18
- data/ext/sereal/lz4.c +822 -0
- data/ext/sereal/lz4.h +205 -0
- data/ext/sereal/lz4/lz4.c +822 -0
- data/ext/sereal/lz4/lz4.h +205 -0
- data/ext/sereal/lz4/lz4hc.c +817 -0
- data/ext/sereal/lz4/lz4hc.h +111 -0
- data/ext/sereal/lz4hc.c +817 -0
- data/ext/sereal/lz4hc.h +111 -0
- data/ext/sereal/proto.h +4 -2
- data/ext/sereal/sereal.c +30 -0
- data/ext/sereal/sereal.h +13 -1
- data/ext/sereal/snappy/csnappy_compat.h +16 -0
- data/ext/sereal/snappy/csnappy_compress.c +19 -16
- data/ext/sereal/snappy/csnappy_decompress.c +8 -5
- data/ext/sereal/snappy/csnappy_internal.h +12 -3
- data/ext/sereal/snappy/csnappy_internal_userspace.h +56 -18
- metadata +11 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sereal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Borislav Nikolov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-11-
|
11
|
+
date: 2013-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler
|
@@ -33,14 +33,23 @@ extra_rdoc_files: []
|
|
33
33
|
files:
|
34
34
|
- ext/sereal/decode.c
|
35
35
|
- ext/sereal/encode.c
|
36
|
+
- ext/sereal/lz4/lz4.c
|
37
|
+
- ext/sereal/lz4/lz4hc.c
|
36
38
|
- ext/sereal/snappy/csnappy_compress.c
|
37
39
|
- ext/sereal/snappy/csnappy_decompress.c
|
40
|
+
- ext/sereal/lz4.c
|
41
|
+
- ext/sereal/lz4hc.c
|
38
42
|
- ext/sereal/sereal.c
|
43
|
+
- ext/sereal/lz4hc.h
|
39
44
|
- ext/sereal/sereal.h
|
45
|
+
- ext/sereal/lz4/lz4hc.h
|
46
|
+
- ext/sereal/lz4/lz4.h
|
40
47
|
- ext/sereal/buffer.h
|
41
48
|
- ext/sereal/snappy/csnappy_internal.h
|
42
49
|
- ext/sereal/snappy/csnappy.h
|
43
50
|
- ext/sereal/snappy/csnappy_internal_userspace.h
|
51
|
+
- ext/sereal/snappy/csnappy_compat.h
|
52
|
+
- ext/sereal/lz4.h
|
44
53
|
- ext/sereal/decode.h
|
45
54
|
- ext/sereal/proto.h
|
46
55
|
- ext/sereal/encode.h
|