Rakefile: kill raa_update task
[metropolis.git] / metropolis.gemspec
blob1dd563c0319c150c2a2b223e6710a979bfaf1adc
1 # -*- encoding: binary -*-
3 ENV["VERSION"] or abort "VERSION= must be specified"
4 manifest = File.readlines('.manifest').map! { |x| x.chomp! }
5 require 'wrongdoc'
6 extend Wrongdoc::Gemspec
7 name, summary, title = readme_metadata
9 # don't bother with tests that fork, not worth our time to get working
10 # with `gem check -t` ... (of course we care for them when testing with
11 # GNU make when they can run in parallel)
12 test_files = manifest.grep(%r{\Atest/test_.*\.rb\z})
14 Gem::Specification.new do |s|
15   s.name = %q{metropolis}
16   s.version = ENV["VERSION"].dup
18   s.authors = ["The Sleeper"]
19   s.date = Time.now.utc.strftime('%Y-%m-%d')
20   s.description = readme_description.delete('\\')
21   s.email = %q{metropolis@librelist.org}
22   s.executables = []
24   s.extra_rdoc_files = extra_rdoc_files(manifest)
25   s.files = manifest
26   s.homepage = %q{http://metropolis.bogomips.org/}
28   s.rdoc_options = rdoc_options
29   s.require_paths = %w(lib)
30   s.rubyforge_project = %q{rainbows}
31   s.summary = summary
33   s.test_files = test_files
34   s.add_dependency(%q<rack>)
35   s.add_development_dependency('wrongdoc', '~> 1.3')
37   # s.licenses = %w(AGPL) # licenses= method is not in older RubyGems
38 end