Sha256: b246698dc30c6f5f26ae7b541026c4b1fe42df3e7fb8bf192af08f01661a7948
Contents?: true
Size: 1.11 KB
Versions: 2
Compression:
Stored size: 1.11 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "childprocess/version" Gem::Specification.new do |s| s.name = "childprocess" s.version = ChildProcess::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Jari Bakken"] s.email = ["jari.bakken@gmail.com"] s.homepage = "http://github.com/jarib/childprocess" s.summary = %q{This gem aims at being a simple and reliable solution for controlling external programs running in the background on any Ruby / OS combination.} s.description = %q{This gem aims at being a simple and reliable solution for controlling external programs running in the background on any Ruby / OS combination.} s.rubyforge_project = "childprocess" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_development_dependency "rspec", [">= 2.0.0"] s.add_development_dependency "yard", [">= 0"] s.add_runtime_dependency "ffi", ["~> 1.0.6"] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
childprocess-0.1.8 | childprocess.gemspec |
childprocess-0.1.8.pre | childprocess.gemspec |