about summary refs log tree commit homepage
path: root/lib/olddoc/prepare.rb
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-01-09 00:55:08 +0000
committerEric Wong <e@80x24.org>2015-01-09 00:55:08 +0000
commit40d0ad0cedc0b4389ec86f247edf8681b330037c (patch)
tree8519fc357ff5f8841f2df41bb2cb9fef964ab31d /lib/olddoc/prepare.rb
parent4ffa14b8d8aa58276ffcf4ed839a6f4c6c1c836d (diff)
downloadolddoc-40d0ad0cedc0b4389ec86f247edf8681b330037c.tar.gz
Nowadays, RDoc 4.x expects GNU-style ChangeLog files and cannot seem
to parse them verbatim anymore.  Since I've long been against
GNU-style ChangeLogs, we'll leave them out and tell folks to read
"git log" instead.
Diffstat (limited to 'lib/olddoc/prepare.rb')
-rw-r--r--lib/olddoc/prepare.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/olddoc/prepare.rb b/lib/olddoc/prepare.rb
index f760bd3..1ed66a0 100644
--- a/lib/olddoc/prepare.rb
+++ b/lib/olddoc/prepare.rb
@@ -5,7 +5,6 @@ require 'uri'
 class Olddoc::Prepare
   include Olddoc::NewsRdoc
   include Olddoc::NewsAtom
-  include Olddoc::Changelog
   include Olddoc::Readme
 
   def initialize(opts)
@@ -15,13 +14,11 @@ class Olddoc::Prepare
       abort "rdoc_url and cgit_url required in .olddoc.yml for `prepare'"
     @rdoc_uri = URI.parse(rdoc_url)
     @cgit_uri = URI.parse(cgit_url)
-    @changelog_start = opts['changelog_start']
     @name, @short_desc = readme_metadata
   end
 
   def run
     news_rdoc
-    changelog
     news_atom
   end
 end