# -*- encoding: binary -*- ENV["VERSION"] or abort "VERSION= must be specified" manifest = File.readlines('.manifest').map! { |x| x.chomp! } $LOAD_PATH << 'lib' require 'wrongdoc' extend Wrongdoc::Gemspec name, summary, title = readme_metadata Gem::Specification.new do |s| s.name = %q{wrongdoc} s.version = ENV["VERSION"].dup s.authors = ["#{name} hackers"] s.date = Time.now.utc.strftime('%Y-%m-%d') s.description = readme_description s.email = %q{wrongdoc@librelist.org} s.executables = %w(wrongdoc) 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} s.add_dependency(%q, ['~> 1.5']) s.add_dependency(%q, ['~> 0.1.3']) s.add_dependency(%q, ['~> 3.9']) end