| 12
 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.4"
  spec.platform = Gem::Platform::RUBY
  spec.summary = "open4"
  spec.description = "open child process with handles on pid, stdin, stdout, and stderr: manage child processes and their io handles easily."
  spec.license = "Ruby"
  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/lib",
 "test/lib/test_case.rb",
 "test/pfork4_test.rb",
 "test/popen4_test.rb",
 "test/popen4ext_test.rb",
 "white_box",
 "white_box/leak.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/open4"
end
 |