sys-proctable 0.9.6-universal-linux → 0.9.8-universal-linux
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/CHANGES +12 -0
- data/MANIFEST +1 -0
- data/README +1 -1
- data/Rakefile +1 -1
- data/lib/linux/sys/proctable.rb +2 -3
- data/lib/sys/proctable/version.rb +6 -0
- data/sys-proctable.gemspec +3 -3
- data/test/test_sys_proctable_all.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0f7b6e2b99153aa8c0095ef07fd9a682d2c5b63
|
4
|
+
data.tar.gz: 91fb8f80a4cf9e108f81b646c04d719aae532075
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72790583c7695cdb38feaaf579d2cf96142432fe7642ee9e47d2975d14002cf2afb64e96babcd4cf1610bf3a84b157c428ec32ff66e7907ca3677aa729dd92f0
|
7
|
+
data.tar.gz: 6a7e1051b83d71f5359f9f576abbb148ce7937bc4dee1be794299b6b20508d5868f57408132cbffa533f7e0abdb326af8bef3b8ae906bef1a3b6374a01d8370b
|
data/CHANGES
CHANGED
@@ -1,3 +1,15 @@
|
|
1
|
+
== 0.9.8 - 18-Apr-2015
|
2
|
+
* Fixed a bug in the gemspec. Last version got yanked.
|
3
|
+
|
4
|
+
== 0.9.7 - 18-Apr-2015
|
5
|
+
* Fixed a bug in the OSX code that could cause the ps method to fail. Thanks
|
6
|
+
go to Koshevoy Anton for the spot.
|
7
|
+
* Some internal refactoring of version handling. Now all platforms use a
|
8
|
+
single version file.
|
9
|
+
* Replaced vm_size_t and lwpid_t with universal data types on FreeBSD because
|
10
|
+
FFI on FreeBSD 10 no longer understands them. Thanks go to Mike Owens for
|
11
|
+
the spot.
|
12
|
+
|
1
13
|
== 0.9.6 - 24-Feb-2015
|
2
14
|
* Added NLWP field on Linux. Thanks go to Rich Chatterton for the patch.
|
3
15
|
|
data/MANIFEST
CHANGED
data/README
CHANGED
data/Rakefile
CHANGED
data/lib/linux/sys/proctable.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
require 'sys/proctable/version'
|
2
|
+
|
1
3
|
# The Sys module serves as a namespace only.
|
2
4
|
module Sys
|
3
5
|
|
@@ -10,9 +12,6 @@ module Sys
|
|
10
12
|
# There is no constructor
|
11
13
|
private_class_method :new
|
12
14
|
|
13
|
-
# The version of the sys-proctable library
|
14
|
-
VERSION = '0.9.6'
|
15
|
-
|
16
15
|
private
|
17
16
|
|
18
17
|
@mem_total = IO.read("/proc/meminfo")[/MemTotal.*/].split[1].to_i * 1024 rescue nil
|
data/sys-proctable.gemspec
CHANGED
@@ -2,11 +2,11 @@ require 'rubygems'
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = 'sys-proctable'
|
5
|
-
spec.version = '0.9.
|
5
|
+
spec.version = '0.9.8'
|
6
6
|
spec.author = 'Daniel J. Berger'
|
7
7
|
spec.license = 'Artistic 2.0'
|
8
8
|
spec.email = 'djberg96@gmail.com'
|
9
|
-
spec.homepage = 'http://
|
9
|
+
spec.homepage = 'http://github.com/djberg96/sys-proctable'
|
10
10
|
spec.platform = Gem::Platform::CURRENT # Probably altered by Rake task
|
11
11
|
spec.summary = 'An interface for providing process table information'
|
12
12
|
spec.test_files = ['test/test_sys_proctable_all.rb']
|
@@ -15,6 +15,7 @@ Gem::Specification.new do |spec|
|
|
15
15
|
spec.files = [
|
16
16
|
'benchmarks/bench_ps.rb',
|
17
17
|
'examples/example_ps.rb',
|
18
|
+
'lib/sys/proctable/version.rb',
|
18
19
|
'lib/sys/top.rb',
|
19
20
|
'CHANGES',
|
20
21
|
'MANIFEST',
|
@@ -23,7 +24,6 @@ Gem::Specification.new do |spec|
|
|
23
24
|
'sys-proctable.gemspec'
|
24
25
|
]
|
25
26
|
|
26
|
-
spec.rubyforge_project = 'sysutils'
|
27
27
|
spec.extra_rdoc_files = ['CHANGES', 'README', 'MANIFEST', 'doc/top.txt']
|
28
28
|
|
29
29
|
spec.add_development_dependency('test-unit')
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sys-proctable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.8
|
5
5
|
platform: universal-linux
|
6
6
|
authors:
|
7
7
|
- Daniel J. Berger
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-04-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: test-unit
|
@@ -61,12 +61,13 @@ files:
|
|
61
61
|
- doc/top.txt
|
62
62
|
- examples/example_ps.rb
|
63
63
|
- lib/linux/sys/proctable.rb
|
64
|
+
- lib/sys/proctable/version.rb
|
64
65
|
- lib/sys/top.rb
|
65
66
|
- sys-proctable.gemspec
|
66
67
|
- test/test_sys_proctable_all.rb
|
67
68
|
- test/test_sys_proctable_linux.rb
|
68
69
|
- test/test_sys_top.rb
|
69
|
-
homepage: http://
|
70
|
+
homepage: http://github.com/djberg96/sys-proctable
|
70
71
|
licenses:
|
71
72
|
- Artistic 2.0
|
72
73
|
metadata: {}
|
@@ -86,7 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
86
87
|
- !ruby/object:Gem::Version
|
87
88
|
version: '0'
|
88
89
|
requirements: []
|
89
|
-
rubyforge_project:
|
90
|
+
rubyforge_project:
|
90
91
|
rubygems_version: 2.4.5
|
91
92
|
signing_key:
|
92
93
|
specification_version: 4
|