-
Notifications
You must be signed in to change notification settings - Fork 202
/
spork.gemspec
42 lines (37 loc) · 1.26 KB
/
spork.gemspec
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
require 'date'
Gem::Specification.new do |s|
s.name = %q{spork}
s.version = "1.0.0rc4"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Tim Harper", "Donald Parish"]
s.date = Date.today.to_s
s.description = %q{A forking Drb spec server}
s.email = ["[email protected]"]
s.executables = ["spork"]
s.extra_rdoc_files = [
"MIT-LICENSE",
"README.rdoc"
]
s.files = ["Gemfile", "README.rdoc", "MIT-LICENSE"] + Dir["lib/**/*"] + Dir["spec/**/*"] + Dir["assets/**/*"] + Dir["features/**/*"]
s.homepage = %q{http://github.com/sporkrb/spork}
s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"]
s.summary = %q{spork}
s.test_files = Dir["features/**/*"] + Dir["spec/**/*"]
case ENV['PLATFORM']
when NilClass
when "x86-mingw32", "x86-mswin32"
s.platform = ENV['PLATFORM']
s.add_dependency('win32-process')
else
STDERR.puts "Warning: no customization for #{ENV['PLATFORM']}"
end
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end