sys-proctable 0.9.9-universal-darwin → 1.0.0-universal-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/CHANGES +4 -0
- data/README +1 -1
- data/Rakefile +1 -1
- data/ext/darwin/sys/proctable.c +2 -2
- data/lib/sys/proctable/version.rb +1 -1
- data/sys-proctable.gemspec +1 -1
- data/test/test_sys_proctable_all.rb +1 -1
- metadata +3 -3
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d71681f166b70bdec46497d235b4d47c9061d895
|
4
|
+
data.tar.gz: 8b36e0e52bd558ce1f8c610cee8c2952a55136e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 056009b1616215f1f795596cb11ce97a16da140549f7ce4494fbd150be9c46fb3e0b13eaf69fbf84ab3516d0a00f725713e1ef51a131d9d8bd8c8f4cf1b9529c
|
7
|
+
data.tar.gz: 1ccc358831b19224de154589c00e99e8a87a335fec8b0a66cb57052fc064bd2fc2dd57b282d4ebbefddb44fb5c89418f94278df0dacb8d5e1e756818df61bd3b
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/CHANGES
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
== 1.0.0 - 11-Jan-2016
|
2
|
+
* Added smaps information for Linux. Thanks go to Joe Rafaniello for the patch.
|
3
|
+
* This is not really a major release. I just ran out of version numbers.
|
4
|
+
|
1
5
|
== 0.9.9 - 8-Nov-2015
|
2
6
|
* Added support for cgroups on Linux. Thanks go to Dennis Günnewig for the patch.
|
3
7
|
* Added a sys-proctable.rb file for convenience.
|
data/README
CHANGED
data/Rakefile
CHANGED
@@ -166,7 +166,7 @@ namespace :gem do
|
|
166
166
|
when /linux/i
|
167
167
|
spec.platform = Gem::Platform.new(['universal', 'linux'])
|
168
168
|
spec.require_paths = ['lib', 'lib/linux']
|
169
|
-
spec.files += ['lib/linux/sys/proctable.rb', 'lib/linux/sys/proctable/cgroup_entry.rb']
|
169
|
+
spec.files += ['lib/linux/sys/proctable.rb', 'lib/linux/sys/proctable/cgroup_entry.rb', 'lib/linux/sys/proctable/smaps.rb']
|
170
170
|
spec.test_files << 'test/test_sys_proctable_linux.rb'
|
171
171
|
when /sunos|solaris/i
|
172
172
|
spec.platform = Gem::Platform.new(['universal', 'solaris'])
|
data/ext/darwin/sys/proctable.c
CHANGED
@@ -399,8 +399,8 @@ void Init_proctable(){
|
|
399
399
|
/* There is no constructor */
|
400
400
|
rb_funcall(cProcTable, rb_intern("private_class_method"), 1, ID2SYM(rb_intern("new")));
|
401
401
|
|
402
|
-
/* 0.
|
403
|
-
rb_define_const(cProcTable, "VERSION", rb_str_new2("0.
|
402
|
+
/* 1.0.0: The version of the sys-proctable library */
|
403
|
+
rb_define_const(cProcTable, "VERSION", rb_str_new2("1.0.0"));
|
404
404
|
|
405
405
|
/* Structs */
|
406
406
|
|
data/sys-proctable.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sys-proctable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: universal-darwin
|
6
6
|
authors:
|
7
7
|
- Daniel J. Berger
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
30
30
|
EJYzxdPOrx2n6NYR3Hk+vHP0U7UBSveI6+qx+ndQYaeyCn+GRX2PKS9h66YF/Q1V
|
31
31
|
tGSHgAmcLlkdGgan182qsE/4kKM=
|
32
32
|
-----END CERTIFICATE-----
|
33
|
-
date:
|
33
|
+
date: 2016-01-11 00:00:00.000000000 Z
|
34
34
|
dependencies:
|
35
35
|
- !ruby/object:Gem::Dependency
|
36
36
|
name: test-unit
|
@@ -110,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
110
|
version: '0'
|
111
111
|
requirements: []
|
112
112
|
rubyforge_project:
|
113
|
-
rubygems_version: 2.5.
|
113
|
+
rubygems_version: 2.5.1
|
114
114
|
signing_key:
|
115
115
|
specification_version: 4
|
116
116
|
summary: An interface for providing process table information
|
metadata.gz.sig
CHANGED
Binary file
|