File: unicorn.gemspec

package info (click to toggle)
unicorn 5.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,288 kB
  • ctags: 978
  • sloc: ruby: 7,591; ansic: 4,155; sh: 1,775; makefile: 11
file content (54 lines) | stat: -rw-r--r-- 2,331 bytes parent folder | download
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
42
43
44
45
46
47
48
49
50
51
52
53
54
# -*- encoding: binary -*-
ENV["VERSION"] or abort "VERSION= must be specified"
manifest = File.readlines('.manifest').map! { |x| x.chomp! }
#require 'olddoc'
#extend Olddoc::Gemspec
name='unicorn', summary='unicorn: Rack HTTP server for fast clients and Unix', title = 'unicorn is an HTTP server for Rack applications designed to only serve
fast clients on low-latency, high-bandwidth connections and take
advantage of features in Unix/Unix-like kernels.  Slow clients should
only be served by placing a reverse proxy capable of fully buffering
both the the request and response in between unicorn and slow clients.'

# don't bother with tests that fork, not worth our time to get working
# with `gem check -t` ... (of course we care for them when testing with
# GNU make when they can run in parallel)
test_files = manifest.grep(%r{\Atest/unit/test_.*\.rb\z}).map do |f|
  File.readlines(f).grep(/\bfork\b/).empty? ? f : nil
end.compact

Gem::Specification.new do |s|
  s.name = %q{unicorn}
  s.version = `./GIT-VERSION-GEN`
  s.authors = ["#{name} hackers"]
  s.summary = summary
  s.description = title
  s.email = 'unicorn-public@bogomips.org'
  s.executables = %w(unicorn unicorn_rails)
  s.extensions = %w(ext/unicorn_http/extconf.rb)
#  s.extra_rdoc_files = extra_rdoc_files(manifest)
  s.files = manifest
  s.homepage = 'http://bogomips.org/unicorn/'
  s.test_files = test_files

  # technically we need ">= 1.9.3", too, but avoid the array here since
  # old rubygems versions (1.8.23.2 at least) do not support multiple
  # version requirements here.
  s.required_ruby_version = '< 3.0'

  # We do not have a hard dependency on rack, it's possible to load
  # things which respond to #call.  HTTP status lines in responses
  # won't have descriptive text, only the numeric status.
  s.add_development_dependency(%q<rack>)

  s.add_dependency(%q<kgio>, '~> 2.6')
  s.add_dependency(%q<raindrops>, '~> 0.7')

  s.add_development_dependency('test-unit', '~> 3.0')
  s.add_development_dependency('olddoc', '~> 1.2')

  # Note: To avoid ambiguity, we intentionally avoid the SPDX-compatible
  # 'Ruby' here since Ruby 1.9.3 switched to BSD-2-Clause, but we
  # inherited our license from Mongrel when Ruby was at 1.8.
  # We cannot automatically switch licenses when Ruby changes.
  s.licenses = ['GPL-2.0+', 'Ruby-1.8']
end