bump dependency on kgio
[unicorn.git] / unicorn.gemspec
bloba8ce3fcc5cc8f040149a40e4e50ad60860c2cc85
1 # -*- encoding: binary -*-
2 ENV["VERSION"] or abort "VERSION= must be specified"
3 manifest = File.readlines('.manifest').map! { |x| x.chomp! }
4 require 'wrongdoc'
5 extend Wrongdoc::Gemspec
6 name, summary, title = readme_metadata
8 # don't bother with tests that fork, not worth our time to get working
9 # with `gem check -t` ... (of course we care for them when testing with
10 # GNU make when they can run in parallel)
11 test_files = manifest.grep(%r{\Atest/unit/test_.*\.rb\z}).map do |f|
12   File.readlines(f).grep(/\bfork\b/).empty? ? f : nil
13 end.compact
15 Gem::Specification.new do |s|
16   s.name = %q{unicorn}
17   s.version = ENV["VERSION"].dup
18   s.authors = ["#{name} hackers"]
19   s.summary = summary
20   s.date = Time.now.utc.strftime('%Y-%m-%d')
21   s.description = readme_description
22   s.email = %q{mongrel-unicorn@rubyforge.org}
23   s.executables = %w(unicorn unicorn_rails)
24   s.extensions = %w(ext/unicorn_http/extconf.rb)
25   s.extra_rdoc_files = extra_rdoc_files(manifest)
26   s.files = manifest
27   s.homepage = Wrongdoc.config[:rdoc_url]
28   s.rdoc_options = rdoc_options
29   s.require_paths = %w(lib ext)
30   s.rubyforge_project = %q{mongrel}
31   s.test_files = test_files
33   # for people that are absolutely stuck on Rails 2.3.2 and can't
34   # up/downgrade to any other version, the Rack dependency may be
35   # commented out.  Nevertheless, upgrading to Rails 2.3.4 or later is
36   # *strongly* recommended for security reasons.
37   s.add_dependency(%q<rack>)
38   s.add_dependency(%q<kgio>, '~> 2.2')
40   s.add_development_dependency('isolate', '~> 3.0.0')
41   s.add_development_dependency('wrongdoc', '~> 1.5')
43   # s.licenses = %w(GPLv2 Ruby) # licenses= method is not in older RubyGems
44 end