README: reference yahns
[zbatery.git] / zbatery.gemspec
blob80b6f62bd9bd5e4c60aad6ac438cc1b13b1bdabd
1 # -*- encoding: binary -*-
2 ENV["VERSION"] or abort "VERSION= must be specified"
3 manifest = File.readlines('.manifest').map! { |x| x.chomp! }
4 require 'wrongdoc'
5 extend Wrongdoc::Gemspec
6 name, summary, title = readme_metadata
8 Gem::Specification.new do |s|
9   s.name = %q{zbatery}
10   s.version = ENV["VERSION"].dup
12   s.authors = ["Zbatery hackers"]
13   s.description = readme_description
14   s.email = %q{rainbows-public@bogomips.org}
15   s.executables = %w(zbatery)
16   s.extra_rdoc_files = extra_rdoc_files(manifest)
17   s.files = manifest
18   s.homepage = Wrongdoc.config[:rdoc_url]
19   s.summary = summary
20   s.rdoc_options = rdoc_options
21   s.rubyforge_project = %q{rainbows}
23   # rainbows has a boatload of optional dependencies
24   # required:
25   #   unicorn + rack
26   # optional:
27   #   revactor + rev + iobuffer
28   #   rev + iobuffer
29   #   eventmachine
30   #   espace-neverblock + eventmachine
31   #   async_sinatra + sinatra + eventmachine
32   #
33   s.add_dependency(%q<rainbows>, ["~> 4.6"])
34   s.add_development_dependency(%q<wrongdoc>, "~> 1.8")
35   s.add_development_dependency(%q<isolate>, "~> 3.1")
37   s.licenses = %w(GPLv2+ Ruby)
38 end