File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -13,4 +13,3 @@ gem 'coderay'
13
13
gem 'pygments.rb'
14
14
gem 'thread_safe'
15
15
gem 'epubcheck'
16
- gem 'kindlegen'
Original file line number Diff line number Diff line change @@ -20,9 +20,13 @@ namespace :book do
20
20
`bundle exec asciidoctor-epub3 #{ params } progit.asc`
21
21
puts " -- Epub output at progit.epub"
22
22
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"
26
30
27
31
puts "Converting to PDF... (this one takes a while)"
28
32
`bundle exec asciidoctor-pdf #{ params } progit.asc 2>/dev/null`
You can’t perform that action at this time.
0 commit comments