/usr/share/rubygems-integration/1.9.1/specifications/childprocess-0.3.9.gemspec is in ruby-childprocess 0.3.9-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "childprocess"
s.version = "0.3.9"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jari Bakken"]
s.date = "2013-03-02"
s.description = "This gem aims at being a simple and reliable solution for controlling external programs running in the background on any Ruby / OS combination."
s.email = ["jari.bakken@gmail.com"]
s.files = [".document", ".gitignore", ".rspec", ".travis.yml", "Gemfile", "LICENSE", "README.md", "Rakefile", "childprocess.gemspec", "lib/childprocess.rb", "lib/childprocess/abstract_io.rb", "lib/childprocess/abstract_process.rb", "lib/childprocess/errors.rb", "lib/childprocess/jruby.rb", "lib/childprocess/jruby/io.rb", "lib/childprocess/jruby/process.rb", "lib/childprocess/jruby/pump.rb", "lib/childprocess/tools/generator.rb", "lib/childprocess/unix.rb", "lib/childprocess/unix/fork_exec_process.rb", "lib/childprocess/unix/io.rb", "lib/childprocess/unix/lib.rb", "lib/childprocess/unix/platform/i386-linux.rb", "lib/childprocess/unix/platform/i386-solaris.rb", "lib/childprocess/unix/platform/x86_64-linux.rb", "lib/childprocess/unix/platform/x86_64-macosx.rb", "lib/childprocess/unix/posix_spawn_process.rb", "lib/childprocess/unix/process.rb", "lib/childprocess/version.rb", "lib/childprocess/windows.rb", "lib/childprocess/windows/handle.rb", "lib/childprocess/windows/io.rb", "lib/childprocess/windows/lib.rb", "lib/childprocess/windows/process.rb", "lib/childprocess/windows/process_builder.rb", "lib/childprocess/windows/structs.rb", "spec/abstract_io_spec.rb", "spec/childprocess_spec.rb", "spec/io_spec.rb", "spec/jruby_spec.rb", "spec/pid_behavior.rb", "spec/spec_helper.rb", "spec/unix_spec.rb", "spec/windows_spec.rb"]
s.homepage = "http://github.com/jarib/childprocess"
s.require_paths = ["lib"]
s.rubyforge_project = "childprocess"
s.rubygems_version = "1.8.23"
s.summary = "This gem aims at being a simple and reliable solution for controlling external programs running in the background on any Ruby / OS combination."
s.test_files = ["spec/abstract_io_spec.rb", "spec/childprocess_spec.rb", "spec/io_spec.rb", "spec/jruby_spec.rb", "spec/pid_behavior.rb", "spec/spec_helper.rb", "spec/unix_spec.rb", "spec/windows_spec.rb"]
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, [">= 2.0.0"])
s.add_development_dependency(%q<yard>, [">= 0"])
s.add_development_dependency(%q<rake>, ["~> 0.9.2"])
s.add_runtime_dependency(%q<ffi>, [">= 1.0.11", "~> 1.0"])
else
s.add_dependency(%q<rspec>, [">= 2.0.0"])
s.add_dependency(%q<yard>, [">= 0"])
s.add_dependency(%q<rake>, ["~> 0.9.2"])
s.add_dependency(%q<ffi>, [">= 1.0.11", "~> 1.0"])
end
else
s.add_dependency(%q<rspec>, [">= 2.0.0"])
s.add_dependency(%q<yard>, [">= 0"])
s.add_dependency(%q<rake>, ["~> 0.9.2"])
s.add_dependency(%q<ffi>, [">= 1.0.11", "~> 1.0"])
end
end
|