zbatery.git  about / heads / tags
Zbatery HTTP server for Rack
blob 67c595b98b2cc620769107f0df6b59406acc9776 1954 bytes (raw)
$ git show v0.2.1:zbatery.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
 
# -*- encoding: binary -*-

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

# 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{zbatery}
  s.version = ENV["VERSION"]

  s.authors = ["Zbatery hackers"]
  s.date = Time.now.utc.strftime('%Y-%m-%d')
  s.description = File.read("README").split(/\n\n/)[1]
  s.email = %q{rainbows-talk@rubyforge.org}
  s.executables = %w(zbatery)

  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://zbatery.bogomip.org/}
  s.summary = %q{Rack HTTP server without a fork stuck in it}
  s.rdoc_options = [ "-Na", "-t", "Zbatery - #{s.summary}" ]
  s.require_paths = %w(lib)
  s.rubyforge_project = %q{rainbows}

  s.test_files = test_files

  # rainbows has a boatload of dependencies
  # required:
  #   unicorn + rack
  # optional:
  #   revactor + rev + iobuffer
  #   rev + iobuffer
  #   eventmachine
  #   espace-neverblock + eventmachine
  #   async_sinatra + sinatra + eventmachine
  #
  # rainbows 0.91.1 depends on unicorn ~> 0.97.1, previous versions of
  # Unicorn were vulnerable to a remote DoS when exposed directly to
  # untrusted clients (a configuration only supported by Zbatery and Rainbows!,
  # Unicorn has never and will never be supported without trusted LAN clients.
  s.add_dependency(%q<rainbows>, [">= 0.91.1", "<= 1.0.0"])

  # s.licenses = %w(GPLv2 Ruby) # accessor not compatible with older RubyGems
end

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