wrongdoc.git  about / heads / tags
RDoc done right (IMNSHO)
blob d9fdea8fedf3b84ee7dd3aa7218b58bffeaf2957 823 bytes (raw)
$ git show HEAD:wrongdoc.gemspec	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 
# -*- 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.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.add_dependency(%q<nokogiri>, ['~> 1.5'])
  s.add_dependency(%q<tidy_ffi>, ['~> 0.1', '>= 0.1.5'])
  s.add_dependency(%q<rdoc>, ['~> 3.9', '>= 3.9'])
  s.licenses = %w(GPLv3+)
end

git clone https://yhbt.net/wrongdoc.git