librrd 1.0.2 → 1.0.3

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.
data/CHANGES.md CHANGED
@@ -1,6 +1,9 @@
1
1
  ChangeLog
2
2
  =========
3
3
 
4
+ # 1.0.3
5
+ * Update 1.4.x binding to rrdtool-1.4.7.
6
+
4
7
  # 1.0.2
5
8
  * Backport rev 2206 from svn to fix a problem with RRD.xport.
6
9
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.2
1
+ 1.0.3
@@ -51,13 +51,13 @@ string_arr string_arr_new(
51
51
  a.strings[i + 1] = strdup(StringValuePtr(v));
52
52
  break;
53
53
  case T_FIXNUM:
54
- snprintf(buf, 63, "%d", FIX2INT(v));
54
+ snprintf(buf, 63, "%ld", (long)FIX2INT(v));
55
55
  a.strings[i + 1] = strdup(buf);
56
56
  break;
57
57
  default:
58
58
  rb_raise(rb_eTypeError,
59
- "invalid argument - %s, expected T_STRING or T_FIXNUM on index %d",
60
- rb_class2name(CLASS_OF(v)), i);
59
+ "invalid argument - %s, expected T_STRING or T_FIXNUM on index %ld",
60
+ (long)rb_class2name(CLASS_OF(v)), i);
61
61
  break;
62
62
  }
63
63
  }
data/librrd.gemspec CHANGED
@@ -7,8 +7,8 @@ Gem::Specification.new do |s|
7
7
  ## If your rubyforge_project name is different, then edit it and comment out
8
8
  ## the sub! line in the Rakefile
9
9
  s.name = 'librrd'
10
- s.version = '1.0.2'
11
- s.date = '2012-01-07'
10
+ s.version = '1.0.3'
11
+ s.date = '2012-08-11'
12
12
 
13
13
  s.summary = "Ruby bindings for librrd"
14
14
  s.description = "Ruby bindings for librrd. Extracted from the RRDtool source."
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: librrd
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-01-07 00:00:00.000000000 Z
12
+ date: 2012-08-11 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Ruby bindings for librrd. Extracted from the RRDtool source.
15
15
  email: bernd@tuneafish.de
@@ -60,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
60
60
  version: '0'
61
61
  requirements: []
62
62
  rubyforge_project:
63
- rubygems_version: 1.8.11
63
+ rubygems_version: 1.8.24
64
64
  signing_key:
65
65
  specification_version: 2
66
66
  summary: Ruby bindings for librrd