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{http_spew} s.version = ENV["VERSION"].dup s.authors = ["HTTP Spew hackers"] s.date = Time.now.utc.strftime('%Y-%m-%d') s.description = readme_description s.email = %q{http.spew@librelist.org} 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.rubyforge_project = %q{rainbows} s.test_files = Dir["test/test_*.rb"] s.add_dependency(%q, "~> 0.2") s.add_dependency(%q, "~> 2.4") s.add_development_dependency(%q, "~> 1.5") end