File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -13,4 +13,3 @@ gem 'coderay'
1313gem 'pygments.rb'
1414gem 'thread_safe'
1515gem 'epubcheck'
16- gem 'kindlegen'
Original file line number Diff line number Diff line change @@ -20,9 +20,13 @@ namespace :book do
2020 `bundle exec asciidoctor-epub3 #{ params } progit.asc`
2121 puts " -- Epub output at progit.epub"
2222
23- puts "Converting to Mobi (kf8)..."
24- `bundle exec asciidoctor-epub3 #{ params } -a ebook-format=kf8 progit.asc`
25- puts " -- Mobi output at progit.mobi"
23+ # Commented out the .mobi file creation because the kindlegen dependency is not available.
24+ # For more information on this see: #1496.
25+ # This is a (hopefully) temporary fix until upstream asciidoctor-epub3 is fixed and we can offer .mobi files again.
26+
27+ # puts "Converting to Mobi (kf8)..."
28+ # `bundle exec asciidoctor-epub3 #{params} -a ebook-format=kf8 progit.asc`
29+ # puts " -- Mobi output at progit.mobi"
2630
2731 puts "Converting to PDF... (this one takes a while)"
2832 `bundle exec asciidoctor-pdf #{ params } progit.asc 2>/dev/null`
You can’t perform that action at this time.
0 commit comments