1 # -*- encoding: binary -*-
3 ENV["VERSION"] or abort "VERSION= must be specified"
4 manifest = File.readlines('.manifest').map! { |x| x.chomp! }
6 # don't bother with tests that fork, not worth our time to get working
7 # with `gem check -t` ... (of course we care for them when testing with
8 # GNU make when they can run in parallel)
9 test_files = manifest.grep(%r{\Atest/unit/test_.*\.rb\z}).map do |f|
10 File.readlines(f).grep(/\bfork\b/).empty? ? f : nil
13 Gem::Specification.new do |s|
15 s.version = ENV["VERSION"]
17 s.authors = ["Unicorn hackers"]
18 s.date = Time.now.utc.strftime('%Y-%m-%d')
19 s.description = File.read("README").split(/\n\n/)[1]
20 s.email = %q{mongrel-unicorn@rubyforge.org}
21 s.executables = %w(unicorn unicorn_rails)
22 s.extensions = %w(ext/unicorn_http/extconf.rb)
24 s.extra_rdoc_files = File.readlines('.document').map! do |x|
27 manifest.grep(%r{\A#{x}/})
36 s.homepage = %q{http://unicorn.bogomips.org/}
38 summary = %q{Rack HTTP server for fast clients and Unix}
39 s.rdoc_options = [ "-Na", "-t", "Unicorn: #{summary}" ]
40 s.require_paths = %w(lib ext)
41 s.rubyforge_project = %q{mongrel}
44 s.test_files = test_files
46 # for people that are absolutely stuck on Rails 2.3.2 and can't
47 # up/downgrade to any other version, the Rack dependency may be
48 # commented out. Nevertheless, upgrading to Rails 2.3.4 or later is
49 # *strongly* recommended for security reasons.
50 s.add_dependency(%q<rack>)
52 # s.licenses = %w(GPLv2 Ruby) # licenses= method is not in older RubyGems