zbatery.git  about / heads / tags
Zbatery HTTP server for Rack
blob 029a36c1f468a22640b488014395ed47925a1a1b 1234 bytes (raw)
$ git show v4.1.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
 
# -*- encoding: binary -*-
ENV["VERSION"] or abort "VERSION= must be specified"
manifest = File.readlines('.manifest').map! { |x| x.chomp! }
require 'wrongdoc'
extend Wrongdoc::Gemspec
name, summary, title = readme_metadata

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

  s.authors = ["Zbatery hackers"]
  s.date = Time.now.utc.strftime('%Y-%m-%d')
  s.description = readme_description
  s.email = %q{rainbows-talk@rubyforge.org}
  s.executables = %w(zbatery)
  s.extra_rdoc_files = extra_rdoc_files(manifest)
  s.files = manifest
  s.homepage = Wrongdoc.config[:rdoc_url]
  s.summary = summary
  s.rdoc_options = rdoc_options
  s.require_paths = %w(lib)
  s.rubyforge_project = %q{rainbows}

  # rainbows has a boatload of optional dependencies
  # required:
  #   unicorn + rack
  # optional:
  #   revactor + rev + iobuffer
  #   rev + iobuffer
  #   eventmachine
  #   espace-neverblock + eventmachine
  #   async_sinatra + sinatra + eventmachine
  #
  s.add_dependency(%q<rainbows>, ["~> 4.3"])
  s.add_development_dependency(%q<wrongdoc>, "~> 1.6")
  s.add_development_dependency(%q<isolate>, "~> 3.1")

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

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