wankel 0.6.1 → 0.6.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6a30cd18f093f7366a4c609f85cf8dd4b18069da
4
- data.tar.gz: f6f2487195546f47c0b5c90a7a5e5d66cabec691
3
+ metadata.gz: 2b856b73489a55a81a465ac913fda8bf7f5c38bc
4
+ data.tar.gz: 3d161a490b6af0ec0a762915a677a89a7ce5ce64
5
5
  SHA512:
6
- metadata.gz: e3b7d590baf87ea2b7fe04de19bf79b240f14ca076365e76e24a995f117755fef5ca34bf5304adbe01faa7497cac5de8ba98a4dad40a65fdcb8e4f2e9f7a7cd6
7
- data.tar.gz: cf8ce5e0386a8ad28eb1fbcc5890f52102cf9a30b6fcaf0011057e54ad8248014436687021bb423b0cdf7e9a9eec164de133a8bfd121fcfb47f169b1f38831f8
6
+ metadata.gz: bf05bb3a7f27115bd1725c0c86ae194fec76083b6038683752ef6ae53029ea03de8d56230c0c056e93ea6a180762b745c216fb0275e3f69aad080238ebfda180
7
+ data.tar.gz: 808195b02c8111037363f27ecc7c99b90e8a9024e48fab1f68fb5bda5bc1683ab5d027f754bbbe2e9867bf2366be0a2f2415bebbe88ca64b5070569d810858f4
@@ -8,6 +8,12 @@ Minor Changes:
8
8
 
9
9
  Bugfixes:
10
10
 
11
+ ## 0.6.2 (August 27th, 2015)
12
+
13
+ Bugfixes:
14
+
15
+ - Fix downstream sprintf arguments through rb_raise
16
+
11
17
  ## 0.6.1 (February 19th, 2015)
12
18
 
13
19
  Minor Changes:
@@ -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
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'wankel'
3
- s.version = '0.6.1'
3
+ s.version = '0.6.2'
4
4
  s.licenses = ['MIT']
5
5
  s.authors = ['Jon Bracy']
6
6
  s.email = ['jonbracy@gmail.com']
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.1
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-02-19 00:00:00.000000000 Z
11
+ date: 2015-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler