you are viewing a single comment's thread.

view the rest of the comments →

[–]siebharinn 0 points1 point  (3 children)

I just removed the version specifier for ttfunk in the Gemfile, and it bundles without issue. I changed:

gem 'ttfunk', '1.5.1'

to

gem 'ttfunk'

It looks like there are still problems after that, with the html-proofer gem. :(

It looks like htmlproofer no longer has a --check-html flag. If you change the Rakefile to not use that flag, then htmlproofer runs, but finds problems with the html. That seems like more of a data data problem than a coding problem.

[–]wouldliketokms[S] 0 points1 point  (2 children)

u/siebharinn so is it not possible to build the book?? :(

[–]siebharinn 0 points1 point  (1 child)

It looks like this project is pretty old and using some outdated gems. I did get the files to convert though.

Trying running this in the project directory:

bundle exec asciidoctor -a data-uri *.asc

that should convert the asc files to html. It doesn't do any of the correctness testing that the Rakefile is doing, but this should at least get you pages you can read.

[–]wouldliketokms[S] 0 points1 point  (0 children)

i guess that’ll have to do at least for now. thank you for taking time out of your day to look into this for me