forked from djberg96/sys-proctable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsys-proctable.gemspec
More file actions
38 lines (33 loc) · 1.26 KB
/
sys-proctable.gemspec
File metadata and controls
38 lines (33 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
require 'rubygems'
Gem::Specification.new do |spec|
spec.name = 'sys-proctable'
spec.version = '0.9.3'
spec.author = 'Daniel J. Berger'
spec.license = 'Artistic 2.0'
spec.email = 'djberg96@gmail.com'
spec.homepage = 'http://www.rubyforge.org/projects/sysutils'
spec.platform = Gem::Platform::CURRENT # Probably altered by Rake task
spec.summary = 'An interface for providing process table information'
spec.test_files = ['test/test_sys_proctable_all.rb']
# Additional files for your platform are added by the 'rake gem' task.
spec.files = [
'benchmarks/bench_ps.rb',
'examples/example_ps.rb',
'lib/sys/top.rb',
'CHANGES',
'MANIFEST',
'Rakefile',
'README',
'sys-proctable.gemspec'
]
spec.rubyforge_project = 'sysutils'
spec.extra_rdoc_files = ['CHANGES', 'README', 'MANIFEST', 'doc/top.txt']
spec.add_development_dependency('test-unit', '>= 2.4.0')
spec.description = <<-EOF
The sys-proctable library provides an interface for gathering information
about processes on your system, i.e. the process table. Most major
platforms are supported and, while different platforms may return
different information, the external interface is identical across
platforms.
EOF
end