sys-proctable 0.9.3-universal-solaris → 0.9.4-universal-solaris
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 +7 -0
- data/CHANGES +11 -0
- data/MANIFEST +5 -3
- data/README +8 -9
- data/Rakefile +32 -21
- data/lib/sunos/sys/proctable.rb +432 -444
- data/lib/sys/top.rb +6 -4
- data/sys-proctable.gemspec +3 -2
- data/test/test_sys_proctable_all.rb +2 -5
- data/test/test_sys_proctable_sunos.rb +295 -297
- metadata +49 -49
metadata
CHANGED
@@ -1,83 +1,83 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: sys-proctable
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
5
|
-
prerelease:
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.9.4
|
6
5
|
platform: universal-solaris
|
7
|
-
authors:
|
6
|
+
authors:
|
8
7
|
- Daniel J. Berger
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
11
|
+
|
12
|
+
date: 2014-03-04 00:00:00 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
15
|
name: test-unit
|
16
|
-
|
17
|
-
|
18
|
-
requirements:
|
19
|
-
-
|
20
|
-
-
|
21
|
-
|
16
|
+
prerelease: false
|
17
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
18
|
+
requirements:
|
19
|
+
- &id002
|
20
|
+
- ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: "0"
|
22
23
|
type: :development
|
24
|
+
version_requirements: *id001
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: rake
|
23
27
|
prerelease: false
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
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"
|
28
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- *id002
|
31
|
+
type: :development
|
32
|
+
version_requirements: *id003
|
33
|
+
description: " The sys-proctable library provides an interface for gathering information\n about processes on your system, i.e. the process table. Most major\n platforms are supported and, while different platforms may return\n different information, the external interface is identical across\n platforms.\n"
|
34
34
|
email: djberg96@gmail.com
|
35
35
|
executables: []
|
36
|
+
|
36
37
|
extensions: []
|
37
|
-
|
38
|
+
|
39
|
+
extra_rdoc_files:
|
38
40
|
- CHANGES
|
39
41
|
- README
|
40
42
|
- MANIFEST
|
41
43
|
- doc/top.txt
|
42
|
-
files:
|
43
|
-
- benchmarks/bench_ps.rb
|
44
|
-
- examples/example_ps.rb
|
45
|
-
- lib/sys/top.rb
|
44
|
+
files:
|
46
45
|
- CHANGES
|
47
46
|
- MANIFEST
|
48
|
-
- Rakefile
|
49
47
|
- README
|
50
|
-
-
|
51
|
-
-
|
48
|
+
- Rakefile
|
49
|
+
- benchmarks/bench_ps.rb
|
52
50
|
- doc/top.txt
|
51
|
+
- examples/example_ps.rb
|
53
52
|
- lib/sunos/sys/proctable.rb
|
53
|
+
- lib/sys/top.rb
|
54
|
+
- sys-proctable.gemspec
|
55
|
+
- test/test_sys_proctable_all.rb
|
54
56
|
- test/test_sys_proctable_sunos.rb
|
55
57
|
homepage: http://www.rubyforge.org/projects/sysutils
|
56
|
-
licenses:
|
58
|
+
licenses:
|
57
59
|
- Artistic 2.0
|
60
|
+
metadata: {}
|
61
|
+
|
58
62
|
post_install_message:
|
59
63
|
rdoc_options: []
|
60
|
-
|
64
|
+
|
65
|
+
require_paths:
|
61
66
|
- lib
|
62
67
|
- lib/sunos
|
63
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
|
-
none: false
|
71
|
-
requirements:
|
72
|
-
- - ! '>='
|
73
|
-
- !ruby/object:Gem::Version
|
74
|
-
version: '0'
|
68
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
+
requirements:
|
70
|
+
- *id002
|
71
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- *id002
|
75
74
|
requirements: []
|
75
|
+
|
76
76
|
rubyforge_project: sysutils
|
77
|
-
rubygems_version:
|
77
|
+
rubygems_version: 2.2.2
|
78
78
|
signing_key:
|
79
|
-
specification_version:
|
79
|
+
specification_version: 4
|
80
80
|
summary: An interface for providing process table information
|
81
|
-
test_files:
|
81
|
+
test_files:
|
82
82
|
- test/test_sys_proctable_all.rb
|
83
83
|
- test/test_sys_proctable_sunos.rb
|