sys-proctable 0.9.1-universal-mingw32 → 0.9.2-universal-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +8 -0
- data/MANIFEST +30 -30
- data/README +4 -11
- data/Rakefile +20 -21
- data/benchmarks/bench_ps.rb +21 -21
- data/doc/top.txt +46 -46
- data/examples/example_ps.rb +20 -20
- data/lib/sys/top.rb +29 -32
- data/lib/windows/sys/proctable.rb +209 -209
- data/sys-proctable.gemspec +38 -39
- data/test/test_sys_proctable_all.rb +2 -3
- data/test/test_sys_proctable_windows.rb +324 -320
- metadata +39 -52
metadata
CHANGED
@@ -1,50 +1,45 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: sys-proctable
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.9.2
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 9
|
9
|
-
- 1
|
10
|
-
version: 0.9.1
|
11
6
|
platform: universal-mingw32
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Daniel J. Berger
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2012-10-28 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
21
15
|
name: test-unit
|
22
|
-
|
23
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
24
17
|
none: false
|
25
|
-
requirements:
|
26
|
-
- -
|
27
|
-
- !ruby/object:Gem::Version
|
28
|
-
|
29
|
-
segments:
|
30
|
-
- 2
|
31
|
-
- 1
|
32
|
-
- 2
|
33
|
-
version: 2.1.2
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 2.4.0
|
34
22
|
type: :development
|
35
|
-
|
36
|
-
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 2.4.0
|
30
|
+
description: ! " The sys-proctable library provides an interface for gathering
|
31
|
+
information\n about processes on your system, i.e. the process table. Most major\n
|
32
|
+
\ platforms are supported and, while different platforms may return\n different
|
33
|
+
information, the external interface is identical across\n platforms.\n"
|
37
34
|
email: djberg96@gmail.com
|
38
35
|
executables: []
|
39
|
-
|
40
36
|
extensions: []
|
41
|
-
|
42
|
-
extra_rdoc_files:
|
37
|
+
extra_rdoc_files:
|
43
38
|
- CHANGES
|
44
39
|
- README
|
45
40
|
- MANIFEST
|
46
41
|
- doc/top.txt
|
47
|
-
files:
|
42
|
+
files:
|
48
43
|
- benchmarks/bench_ps.rb
|
49
44
|
- examples/example_ps.rb
|
50
45
|
- lib/sys/top.rb
|
@@ -58,39 +53,31 @@ files:
|
|
58
53
|
- lib/windows/sys/proctable.rb
|
59
54
|
- test/test_sys_proctable_windows.rb
|
60
55
|
homepage: http://www.rubyforge.org/projects/sysutils
|
61
|
-
licenses:
|
56
|
+
licenses:
|
62
57
|
- Artistic 2.0
|
63
58
|
post_install_message:
|
64
59
|
rdoc_options: []
|
65
|
-
|
66
|
-
require_paths:
|
60
|
+
require_paths:
|
67
61
|
- lib
|
68
62
|
- lib/windows
|
69
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
63
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
70
64
|
none: false
|
71
|
-
requirements:
|
72
|
-
- -
|
73
|
-
- !ruby/object:Gem::Version
|
74
|
-
|
75
|
-
|
76
|
-
- 0
|
77
|
-
version: "0"
|
78
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ! '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
79
70
|
none: false
|
80
|
-
requirements:
|
81
|
-
- -
|
82
|
-
- !ruby/object:Gem::Version
|
83
|
-
|
84
|
-
segments:
|
85
|
-
- 0
|
86
|
-
version: "0"
|
71
|
+
requirements:
|
72
|
+
- - ! '>='
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
87
75
|
requirements: []
|
88
|
-
|
89
76
|
rubyforge_project: sysutils
|
90
|
-
rubygems_version: 1.8.
|
77
|
+
rubygems_version: 1.8.24
|
91
78
|
signing_key:
|
92
79
|
specification_version: 3
|
93
80
|
summary: An interface for providing process table information
|
94
|
-
test_files:
|
81
|
+
test_files:
|
95
82
|
- test/test_sys_proctable_all.rb
|
96
83
|
- test/test_sys_proctable_windows.rb
|