Project setup loosely based on Pro Git book.
You can generate the e-book files manually with Asciidoctor. If you run the following you may actually get HTML, Epub, and PDF output files:
$ bundle config set --local path 'vendor/bundle' $ bundle install $ bundle exec rake book:build
You can generate just one of the supported formats (HTML, EPUB, or PDF). Use one of the following commands:
To generate the HTML book:
$ bundle exec rake book:build_html
To generate the EPUB book:
$ bundle exec rake book:build_epub
To generate the PDF book:
$ bundle exec rake book:build_pdf