samples/syntax-book/Rakefile in review-3.0.0.preview3 vs samples/syntax-book/Rakefile in review-3.0.0.preview4

- old
+ new

@@ -1,88 +1,3 @@ -require 'fileutils' -require 'rake/clean' - -BOOK = 'syntax-book' -BOOK_PDF = BOOK + '.pdf' -BOOK_EPUB = BOOK + '.epub' -CONFIG_FILE = 'config.yml' -WEBROOT = 'webroot' -TEXTROOT = BOOK + '-text' -TOPROOT = BOOK + '-text' - -def build(mode, chapter) - sh "review-compile --target=#{mode} --footnotetext --stylesheet=style.css #{chapter} > tmp" - mode_ext = { 'html' => 'html', 'latex' => 'tex', 'idgxml' => 'xml', 'top' => 'txt', 'plaintext' => 'txt' } - FileUtils.mv 'tmp', chapter.gsub(/re\z/, mode_ext[mode]) +Dir.glob('lib/tasks/*.rake').sort.each do |file| + load(file) end - -def build_all(mode) - sh "review-compile --target=#{mode} --footnotetext --stylesheet=style.css" -end - -task default: :html_all - -desc 'build html (Usage: rake build re=target.re)' -task :html do - if ENV['re'].nil? - puts 'Usage: rake build re=target.re' - exit - end - build('html', ENV['re']) -end - -desc 'build all html' -task :html_all do - build_all('html') -end - -desc 'preproc all' -task :preproc do - Dir.glob('*.re').each do |file| - sh "review-preproc --replace #{file}" - end -end - -desc 'generate PDF and EPUB file' -task all: %i[pdf epub] - -desc 'generate PDF file' -task pdf: BOOK_PDF - -desc 'generate static HTML file for web' -task web: WEBROOT - -desc 'generate plaintext file' -task plaintext: TEXTROOT do - sh "review-textmaker -n #{CONFIG_FILE}" -end - -desc 'generate decorated text file' -task text: TOPROOT do - sh "review-textmaker #{CONFIG_FILE}" -end - -desc 'generate EPUB file' -task epub: BOOK_EPUB - -SRC = FileList['*.re'] + [CONFIG_FILE] - -file BOOK_PDF => SRC do - FileUtils.rm_rf [BOOK_PDF, BOOK, BOOK + '-pdf'] - sh "review-pdfmaker #{CONFIG_FILE}" -end - -file BOOK_EPUB => SRC do - FileUtils.rm_rf [BOOK_EPUB, BOOK, BOOK + '-epub'] - sh "review-epubmaker #{CONFIG_FILE}" -end - -file WEBROOT => SRC do - FileUtils.rm_rf [WEBROOT] - sh "review-webmaker #{CONFIG_FILE}" -end - -file TEXTROOT => SRC do - FileUtils.rm_rf [TEXTROOT] -end - -CLEAN.include([BOOK, BOOK_PDF, BOOK_EPUB, BOOK + '-pdf', BOOK + '-epub', WEBROOT, 'images/_review_math', TEXTROOT])