Rakefile in rake-0.8.3 vs Rakefile in rake-0.8.4

- old
+ new

@@ -128,16 +128,14 @@ # Create a task to build the RDOC documentation tree. rd = Rake::RDocTask.new("rdoc") { |rdoc| rdoc.rdoc_dir = 'html' -# rdoc.template = 'kilmer' -# rdoc.template = 'css2' rdoc.template = 'doc/jamis.rb' rdoc.title = "Rake -- Ruby Make" rdoc.options << '--line-numbers' << '--inline-source' << - '--main' << 'README' << - '--title' << 'Rake -- Ruby Make' + '--main' << 'README' << + '--title' << 'Rake -- Ruby Make' rdoc.rdoc_files.include('README', 'MIT-LICENSE', 'TODO', 'CHANGES') rdoc.rdoc_files.include('lib/**/*.rb', 'doc/**/*.rdoc') rdoc.rdoc_files.exclude(/\bcontrib\b/) }