forked from timcharper/background_process
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackground_process.gemspec
More file actions
26 lines (23 loc) · 882 Bytes
/
background_process.gemspec
File metadata and controls
26 lines (23 loc) · 882 Bytes
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
Gem::Specification.new do |s|
s.name = %q{background_process}
s.version = "1.3"
s.authors = ["Tim Harper"]
s.date = Date.today.to_s
s.description = %q{A library for spawning and interacting with UNIX processes}
s.email = ["timcharper+bp@gmail.com"]
s.extra_rdoc_files = [
"MIT-LICENSE",
"README.textile"
]
s.files = ["README.textile", "MIT-LICENSE", "Gemfile", "Gemfile.lock", "Rakefile", ".gemtest"] + Dir["lib/**/*"] + Dir["spec/**/*"]
s.homepage = %q{http://github.com/timcharper/background_process}
s.rdoc_options = ["--main", "README.textile"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{background_process}
s.rubygems_version = %q{1.3.5}
s.summary = %q{background_process}
s.test_files = Dir["spec/**/*"]
s.add_development_dependency "rspec", "2.5.0"
s.add_development_dependency "rake"
s.specification_version = 3
end