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 46
|
## systemu.gemspec
#
Gem::Specification::new do |spec|
spec.name = "systemu"
spec.version = "2.6.5"
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 =
["BSDL",
"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 = "ara.t.howard@gmail.com"
spec.homepage = "https://github.com/ahoward/systemu"
end
|