wrongdoc.git  about / heads / tags
RDoc done right (IMNSHO)
blob 85922ad66e7426c69486a1fe902e3ae4fa8024b7 362 bytes (raw)
$ git show HEAD:lib/wrongdoc/prepare.rb	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
 
class Wrongdoc::Prepare
  include Wrongdoc::NewsRdoc
  include Wrongdoc::Changelog
  include Wrongdoc::Readme

  def initialize(opts)
    @rdoc_uri = URI.parse(opts[:rdoc_url])
    @cgit_uri = URI.parse(opts[:cgit_url])
    @changelog_start = opts[:changelog_start]
    @name, @short_desc = readme_metadata
  end

  def run
    news_rdoc
    changelog
  end
end

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