-
Notifications
You must be signed in to change notification settings - Fork 33
/
systemu.gemspec
45 lines (36 loc) · 885 Bytes
/
systemu.gemspec
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
39
40
41
42
43
44
45
## systemu.gemspec
#
Gem::Specification::new do |spec|
spec.name = "systemu"
spec.version = "2.6.4"
spec.platform = Gem::Platform::RUBY
spec.summary = "systemu"
spec.description = "universal capture of stdout and stderr and handling of child process pid for windows, *nix, etc."
spec.license = "Ruby"
spec.files =
["LICENSE",
"README",
"README.erb",
"Rakefile",
"lib",
"lib/systemu.rb",
"samples",
"samples/a.rb",
"samples/b.rb",
"samples/c.rb",
"samples/d.rb",
"samples/e.rb",
"samples/f.rb",
"systemu.gemspec",
"test",
"test/systemu_test.rb",
"test/testing.rb"]
spec.executables = []
spec.require_path = "lib"
spec.test_files = nil
spec.extensions.push(*[])
spec.rubyforge_project = "codeforpeople"
spec.author = "Ara T. Howard"
spec.email = "[email protected]"
spec.homepage = "https://github.com/ahoward/systemu"
end