wankel 0.6.1 → 0.6.2
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/CHANGELOG.md +6 -0
- data/ext/wankel/yajl_helpers.c +1 -1
- data/wankel.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2b856b73489a55a81a465ac913fda8bf7f5c38bc
|
|
4
|
+
data.tar.gz: 3d161a490b6af0ec0a762915a677a89a7ce5ce64
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf05bb3a7f27115bd1725c0c86ae194fec76083b6038683752ef6ae53029ea03de8d56230c0c056e93ea6a180762b745c216fb0275e3f69aad080238ebfda180
|
|
7
|
+
data.tar.gz: 808195b02c8111037363f27ecc7c99b90e8a9024e48fab1f68fb5bda5bc1683ab5d027f754bbbe2e9867bf2366be0a2f2415bebbe88ca64b5070569d810858f4
|
data/CHANGELOG.md
CHANGED
data/ext/wankel/yajl_helpers.c
CHANGED
|
@@ -28,7 +28,7 @@ void yajl_helper_check_status(yajl_handle handle, yajl_status status, int verbos
|
|
|
28
28
|
if(status != yajl_status_ok) {
|
|
29
29
|
unsigned char * str = yajl_get_error(handle, verbose, jsonText, jsonTextLength);
|
|
30
30
|
yajl_free_error(handle, str);
|
|
31
|
-
rb_raise(rb_const_get(rb_const_get(rb_cObject, rb_intern("Wankel")), rb_intern("ParseError")), (const char*) str);
|
|
31
|
+
rb_raise(rb_const_get(rb_const_get(rb_cObject, rb_intern("Wankel")), rb_intern("ParseError")), "%s", (const char*) str);
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
|
data/wankel.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wankel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jon Bracy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-08-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake-compiler
|