unicorn.git  about / heads / tags
Rack HTTP server for Unix and fast clients
blob c2e1a99f7a38d546ed46e55d0adf7253bc1dccbc 1322 bytes (raw)
$ git show v0.92.0:unicorn.gemspec	# shows this blob on the CLI

 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
 
# -*- encoding: binary -*-

ENV["VERSION"] or abort "VERSION= must be specified"
manifest = File.readlines('.manifest').map! { |x| x.chomp! }

Gem::Specification.new do |s|
  s.name = %q{unicorn}
  s.version = ENV["VERSION"]

  s.authors = ["Eric Wong"]
  s.date = Time.now.utc.strftime('%Y-%m-%d')

  s.description = %q{
HTTP server for Rack applications designed to take advantage of features
in Unix/Unix-like operating systems and serve low-latency, high-bandwidth
clients (such as a buffering reverse proxy server).
}.strip

  s.email = %q{mongrel-unicorn@rubyforge.org}
  s.executables = %w(unicorn unicorn_rails)
  s.extensions = %w(ext/unicorn_http/extconf.rb)

  s.extra_rdoc_files = File.readlines('.document').map! do |x|
    x.chomp!
    if File.directory?(x)
      manifest.grep(%r{\A#{x}/})
    elsif File.file?(x)
      x
    else
      nil
    end
  end.flatten.compact

  s.files = manifest
  s.homepage = %q{http://unicorn.bogomips.org/}

  s.rdoc_options = [ "-Na", "-t",
                     "Unicorn: Rack HTTP server for Unix and fast clients" ]
  s.require_paths = %w(lib ext)
  s.rubyforge_project = %q{mongrel}
  s.summary = %q{Rack HTTP server for Unix and fast clients}
  s.test_files = manifest.grep(%r{\Atest/unit/test_*\.rb\z})

  s.add_dependency(%q<rack>)
  s.licenses = %w(GPLv2 Ruby)
end

git clone https://yhbt.net/unicorn.git