Rakefile in asciidoctor-pdf-1.5.0.alpha.7 vs Rakefile in asciidoctor-pdf-1.5.0.alpha.8

- old
+ new

@@ -6,24 +6,25 @@ default_tasks = [] begin require 'bundler/gem_tasks' + # Enhance the release task to create an explicit commit for the release + #Rake::Task[:release].enhance [:commit_release] + + # NOTE you don't need to push after updating version and committing locally task :commit_release do Bundler::GemHelper.new.send :guard_clean sh %(git commit --allow-empty -a -m 'Release #{Asciidoctor::Pdf::VERSION}') end - - # Enhance the release task to create an explicit commit for the release - Rake::Task[:release].enhance [:commit_release] rescue LoadError end begin require 'rdoc/task' Rake::RDocTask.new do |t| t.rdoc_dir = 'rdoc' - t.title = %(Asciidoctor EPUB3 #{Asciidoctor::Pdf::VERSION}) + t.title = %(Asciidoctor PDF #{Asciidoctor::Pdf::VERSION}) t.main = %(README.adoc) t.rdoc_files.include 'README.adoc', 'LICENSE.adoc', 'NOTICE.adoc', 'lib/**/*.rb', 'bin/**/*' end rescue LoadError end