libyajl2 0.1.5 → 0.1.6

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: a9aaac355ea45375884e78ae8dfc3f69870c0b31
4
- data.tar.gz: 6ffa830fddd7751e20a87e038890cd367f52fa50
3
+ metadata.gz: 896fc728c70b7e65781206c53da09f49be52b057
4
+ data.tar.gz: a2b2e6f2a6e987062247e0378c5b13ed28d411ee
5
5
  SHA512:
6
- metadata.gz: 6e642db48bf78b1c4085e8b71344dbbd51a22345be128b037d4bcb055738b958e4ed3ddf28d75d4ea4d15b49cbfab8be5d14a50669548052fceddba190763cca
7
- data.tar.gz: cea43bd5d95bc27453978d973db3b86b78eec5ad1f5ca15e055834d4bd5605da8aa02d4265048e53fdd8ef2a83fe6944faa6447754a4b7579a4ba347ef44a97d
6
+ metadata.gz: 7ca52643419c5b38eeddef64a7ec6cb8b91359c7eae90083a7f8b4083634cfe0d1d0056aaa706890b12deef9a8a668ad0dc375eaeecd3134fedec6bc301ec565
7
+ data.tar.gz: a1fea35d16286b8a05b2f0a1ea4fac3219cbd681688771daa35c4585a23da678486e3a853b8829fd16fea5903c001a0805d12f8c417fabf8d618ba593ba91065
data/Rakefile CHANGED
@@ -104,7 +104,8 @@ end
104
104
 
105
105
  # FIXME: need a rake task to update the git submodule and need to do that before shipping
106
106
  desc "Build it and ship it"
107
- task :ship => [:clean, :prep, :gem] do
107
+ #task :ship => [:clean, :prep, :gem] do
108
+ task :ship do
108
109
  sh("git tag #{Libyajl2::VERSION}")
109
110
  sh("git push --tags")
110
111
  Dir[File.expand_path("../pkg/*.gem", __FILE__)].reverse.each do |built_gem|
@@ -7,7 +7,7 @@ index 0f5c68e..a86a6ed 100644
7
7
  }
8
8
 
9
9
  -#if defined(_WIN32) || defined(WIN32)
10
- +#if ( defined(_WIN32) || defined(WIN32) ) && !defined(__GCC__)
10
+ +#if ( defined(_WIN32) || defined(WIN32) ) && !defined(__GNUC__)
11
11
  #include <float.h>
12
12
  #define isnan _isnan
13
13
  #define isinf !_finite
@@ -20,7 +20,7 @@ index 3d357a3..2b4c183 100644
20
20
  #include "yajl_parser.h"
21
21
 
22
22
  -#if defined(_WIN32) || defined(WIN32)
23
- +#if ( defined(_WIN32) || defined(WIN32) ) && !defined(__GCC__)
23
+ +#if ( defined(_WIN32) || defined(WIN32) ) && !defined(__GNUC__)
24
24
  #define snprintf sprintf_s
25
25
  #endif
26
26
 
@@ -217,7 +217,7 @@ yajl_gen_integer(yajl_gen g, long long int number)
217
217
  return yajl_gen_status_ok;
218
218
  }
219
219
 
220
- #if ( defined(_WIN32) || defined(WIN32) ) && !defined(__GCC__)
220
+ #if ( defined(_WIN32) || defined(WIN32) ) && !defined(__GNUC__)
221
221
  #include <float.h>
222
222
  #define isnan _isnan
223
223
  #define isinf !_finite
@@ -25,7 +25,7 @@
25
25
 
26
26
  #include "yajl_parser.h"
27
27
 
28
- #if ( defined(_WIN32) || defined(WIN32) ) && !defined(__GCC__)
28
+ #if ( defined(_WIN32) || defined(WIN32) ) && !defined(__GNUC__)
29
29
  #define snprintf sprintf_s
30
30
  #endif
31
31
 
@@ -1,3 +1,3 @@
1
1
  module Libyajl2
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libyajl2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - lamont-granquist