kostya-sigar 2.0.3.test → 2.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.
- checksums.yaml +4 -4
- data/README.md +3 -0
- data/Rakefile +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 178477827b5824c00e09c9bef1db16ad3efcd0a3
|
|
4
|
+
data.tar.gz: 8a31cabd505d0948cfc3801ffe51dfb5590e040b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 85f67157492473aeb3442555283e44a91aa45899d892e8a1d93fdc8218106c74d9a2816dc70247b666621d378cdb1c1f3dd663be5e82bdf26014c99f59e697ca
|
|
7
|
+
data.tar.gz: 1e5cf5780af47f0479e2d3e744b85f9af3669c2559957ebae59c2c4a792b205dd6350d293f48d550a88b7538013196cf136caab1fb33736845c9d0c46de2a188
|
data/README.md
CHANGED
|
@@ -15,6 +15,9 @@ Fork of hyperic/sigar with some fixes. Support only ruby binding.
|
|
|
15
15
|
[2.0.2]
|
|
16
16
|
* Remove obsolete rpc usage (fix compilation fail with glibc 2.27) ([commit](https://github.com/kostya/sigar/commit/a971b9e8e1443fdf236c5ffa199c1994c05fcd4b))
|
|
17
17
|
|
|
18
|
+
[2.0.3]
|
|
19
|
+
* fix compilation with glibc 2.26, major/minor functions, fixed [#2](https://github.com/kostya/sigar/issues/2) ([commit](https://github.com/kostya/sigar/commit/507640940ff90095b2623c560d1166788b9d140b))
|
|
20
|
+
|
|
18
21
|
|
|
19
22
|
## Installation:
|
|
20
23
|
|
data/Rakefile
CHANGED
|
@@ -20,7 +20,7 @@ MAKE = (/mswin/ =~ RUBY_PLATFORM) ? 'nmake' : 'make'
|
|
|
20
20
|
|
|
21
21
|
spec = Gem::Specification.new do |s|
|
|
22
22
|
s.name = GEM
|
|
23
|
-
s.version = props['version.major'] + '.' + props['version.minor'] + '.' + props['version.maint']
|
|
23
|
+
s.version = props['version.major'] + '.' + props['version.minor'] + '.' + props['version.maint']
|
|
24
24
|
s.summary = props['project.summary']
|
|
25
25
|
s.description = s.summary
|
|
26
26
|
s.author = props['project.author']
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kostya-sigar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.3
|
|
4
|
+
version: 2.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Doug MacEachern
|
|
@@ -78,9 +78,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
78
78
|
version: '0'
|
|
79
79
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
80
|
requirements:
|
|
81
|
-
- - "
|
|
81
|
+
- - ">="
|
|
82
82
|
- !ruby/object:Gem::Version
|
|
83
|
-
version:
|
|
83
|
+
version: '0'
|
|
84
84
|
requirements: []
|
|
85
85
|
rubyforge_project:
|
|
86
86
|
rubygems_version: 2.4.5
|