Created
September 22, 2016 13:58
-
-
Save criswell/62a570ceb1fba5a92d25dc4efed5b839 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :book do | |
desc 'build the book' | |
task :build do | |
puts "Generating EPub..." | |
`bundle exec asciidoctor-epub3 -a stem main.asc` | |
puts "> Epub output at main.epub" | |
puts "Generating Mobi..." | |
`bundle exec asciidoctor-epub3 -a stem -a ebook-format=kf8 main.asc` | |
puts "> Mobi output at main.mobi" | |
puts "Generating PDF..." | |
`bundle exec asciidoctor-pdf -a stem main.asc` | |
puts "> PDF output at main.pdf" | |
end | |
end | |
task :default => "book:build" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment