Uh oh!
There was an error while loading. Please reload this page.
Update github-pages dependency - #58
Conversation
Updated github-pages dependency to work with latest Ruby (2.5.1). This updated the Gemfile.lock, and I made changes to the _config.yml build settings.
| # Build settings | ||
| markdown: redcarpet | ||
| markdown: kramdown |
There was a problem hiding this comment.
Is there any specific reason why we needed to change the markdown or the highlighter settings?
There was a problem hiding this comment.
I was unable to get the website to generate without doing bundle update github-pages because of an error with the json dependency. Bundle updating fixed that error by updating everything in the Gemfile.lock file. The update got rid of redcarpet and pygments, so script/server wouldn't run because of missing dependencies. I googled what the alternatives were, and noticed rouge and kramdown were already in the updated Gemfile.lock. So I changed it in the config file, and script/server ran successfully, letting me generate the website.
Updated github-pages dependency to work with latest Ruby (2.5.1). This updated the Gemfile.lock, and I made changes to the _config.yml build settings.