Sha256: 306fbbb55f74bd7c6ca9909e987ed0a48f86be7f04e62dd975882c7eaac2edb4

Contents?: true

Size: 889 Bytes

Versions: 2

Compression:

Stored size: 889 Bytes

Contents

# -*- 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<nokogiri>, ['~> 1.4.4'])
  s.add_dependency(%q<tidy_ffi>, ['~> 0.1.3'])
  s.add_dependency(%q<rdoc>, ['~> 3.1'])
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
wrongdoc-1.1.1 wrongdoc.gemspec
wrongdoc-1.1.0 wrongdoc.gemspec