unicorn Ruby/Rack server user+dev discussion/patches/pulls/bugs/help
 help / color / mirror / code / Atom feed
blob 85183d94743024e1abba5a15bb01dbf69923f3e7 1931 bytes (raw)
name: unicorn.gemspec 	 # note: path name is non-authoritative(*)

 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
 
# -*- encoding: binary -*-
manifest = File.exist?('.manifest') ?
  IO.readlines('.manifest').map!(&:chomp!) : `git ls-files`.split("\n")

# 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 = (ENV['VERSION'] || '6.1.0').dup
  s.authors = ['unicorn hackers']
  s.summary = 'Rack HTTP server for fast clients and Unix'
  s.description = File.read('README').split("\n\n")[1]
  s.email = %q{unicorn-public@yhbt.net}
  s.executables = %w(unicorn unicorn_rails)
  s.extensions = %w(ext/unicorn_http/extconf.rb)
  s.extra_rdoc_files = IO.readlines('.document').map!(&:chomp!).keep_if do |f|
    File.exist?(f)
  end
  s.files = manifest
  s.homepage = 'https://yhbt.net/unicorn/'
  s.test_files = test_files

  # 2.0.0 is the minimum supported version. We don't specify
  # a maximum version to make it easier to test pre-releases,
  # but we do warn users if they install unicorn on an untested
  # version in extconf.rb
  s.required_ruby_version = ">= 2.0.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<raindrops>, '~> 0.7')

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

  # 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

debug log:

solving 85183d9 ...
found 85183d9 in https://yhbt.net/unicorn-public/2c3b457c-7525-44ca-8bdb-493f5a785dad@shopify.com/
found 7bb1154 in https://yhbt.net/unicorn.git/
preparing index
index prepared:
100644 7bb1154b737fa2adb4d1f9774ad29864a977f19d	unicorn.gemspec

applying [1/1] https://yhbt.net/unicorn-public/2c3b457c-7525-44ca-8bdb-493f5a785dad@shopify.com/
diff --git a/unicorn.gemspec b/unicorn.gemspec
index 7bb1154..85183d9 100644

Checking patch unicorn.gemspec...
error: while searching for:
   # 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')

error: patch failed: unicorn.gemspec:36
error: unicorn.gemspec: patch does not apply

git apply error:; exit status=1
trying https://yhbt.net/unicorn-public/2c3b457c-7525-44ca-8bdb-493f5a785dad@shopify.com/

applying [2/1] https://yhbt.net/unicorn-public/2c3b457c-7525-44ca-8bdb-493f5a785dad@shopify.com/
diff --git a/unicorn.gemspec b/unicorn.gemspec
index 7bb1154..85183d9 100644

Checking patch unicorn.gemspec...
Applied patch unicorn.gemspec cleanly.

index at:
100644 85183d94743024e1abba5a15bb01dbf69923f3e7	unicorn.gemspec

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).