sys-proctable 0.9.6-universal-mingw32 → 0.9.8-universal-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/CHANGES +12 -0
- data/MANIFEST +1 -0
- data/README +1 -1
- data/Rakefile +1 -1
- data/lib/sys/proctable/version.rb +6 -0
- data/lib/windows/sys/proctable.rb +1 -3
- data/sys-proctable.gemspec +3 -3
- data/test/test_sys_proctable_all.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
M2EwZjM4NDczYzJhZDcxMzBhOWMxNGY3MmU3ZTBjNjdiZmJhMWJmOA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YTI5NTkyNTFhN2UwZDA1OTIzNDI2N2VhMWQxNzg3ODM3MDZkYjNlOQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NDRhNWEzYWU1OGM0MTA1NGFkNWQ3OGJkNmRhNzk2ZDJkMWU4NDc5NmQ3MmUy
|
10
|
+
MzQyY2FiZDA1Mjg1ZTE4NmRkMzZlMDRiMWY2NDM1NzA5ZDk5YzYxNTNjOTJk
|
11
|
+
MDJkYWUzNmZkMjMyNzFiMzc4ZjMyZDkyNDEzYmY0NmQwYTliZTg=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NWJhMWY4Yzg0YjgyNzljZWUzZWFjYTM2NjgyZDMyMDBkOTA3ZGQ1MDdiYWRj
|
14
|
+
NDdmNGViOTA4NmMyYWJlYjc1NjQ2YTdkZWQxNjVhM2ZlOWI5YWFlMTExZjg4
|
15
|
+
ZWNjOGU2MGM1MTQ0OWU0OGI3NjEyNWY4OTQyMmYxZTVlMjFmOTc=
|
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
@@ -1,6 +1,7 @@
|
|
1
1
|
require 'win32ole'
|
2
2
|
require 'socket'
|
3
3
|
require 'date'
|
4
|
+
require 'sys/proctable/version'
|
4
5
|
|
5
6
|
# The Sys module serves as a namespace only
|
6
7
|
module Sys
|
@@ -14,9 +15,6 @@ module Sys
|
|
14
15
|
# Error typically raised if one of the Sys::ProcTable methods fails
|
15
16
|
class Error < StandardError; end
|
16
17
|
|
17
|
-
# The version of the sys-proctable library
|
18
|
-
VERSION = '0.9.6'
|
19
|
-
|
20
18
|
# The comm field corresponds to the 'name' field. The 'cmdline' field
|
21
19
|
# is the CommandLine attribute on Windows XP or later, or the
|
22
20
|
# 'executable_path' field on Windows 2000 or earlier.
|
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-mingw32
|
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
|
@@ -58,13 +58,14 @@ files:
|
|
58
58
|
- benchmarks/bench_ps.rb
|
59
59
|
- doc/top.txt
|
60
60
|
- examples/example_ps.rb
|
61
|
+
- lib/sys/proctable/version.rb
|
61
62
|
- lib/sys/top.rb
|
62
63
|
- lib/windows/sys/proctable.rb
|
63
64
|
- sys-proctable.gemspec
|
64
65
|
- test/test_sys_proctable_all.rb
|
65
66
|
- test/test_sys_proctable_windows.rb
|
66
67
|
- test/test_sys_top.rb
|
67
|
-
homepage: http://
|
68
|
+
homepage: http://github.com/djberg96/sys-proctable
|
68
69
|
licenses:
|
69
70
|
- Artistic 2.0
|
70
71
|
metadata: {}
|
@@ -84,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
85
|
- !ruby/object:Gem::Version
|
85
86
|
version: '0'
|
86
87
|
requirements: []
|
87
|
-
rubyforge_project:
|
88
|
+
rubyforge_project:
|
88
89
|
rubygems_version: 2.4.2
|
89
90
|
signing_key:
|
90
91
|
specification_version: 4
|