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 47 48 49 50 51 52 53
|
## open4.gemspec
#
Gem::Specification::new do |spec|
spec.name = "open4"
spec.version = "1.3.0"
spec.platform = Gem::Platform::RUBY
spec.summary = "open4"
spec.description = "description: open4 kicks the ass"
spec.files =
["LICENSE",
"README",
"README.erb",
"lib",
"lib/open4.rb",
"open4.gemspec",
"rakefile",
"samples",
"samples/bg.rb",
"samples/block.rb",
"samples/exception.rb",
"samples/jesse-caldwell.rb",
"samples/pfork4.rb",
"samples/simple.rb",
"samples/spawn.rb",
"samples/stdin_timeout.rb",
"samples/timeout.rb",
"test",
"test/pfork4_test.rb",
"test/popen4_test.rb",
"test/popen4ext_test.rb",
"test/support",
"test/support/test_case.rb",
"white_box",
"white_box/leak.rb"]
spec.executables = []
spec.require_path = "lib"
spec.test_files = nil
### spec.add_dependency 'lib', '>= version'
#### spec.add_dependency 'map'
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/open4"
end
|