8000 spec: update Jekyll and Redcarpet versions by SethTisue · Pull Request #10310 · scala/scala · GitHub
[go: up one dir, main page]

Skip to content

spec: update Jekyll and Redcarpet versions #10310

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
- ruby -v
- gem install bundler
- bundler --version
- bundle install
- bundle install --path vendor/bundle
# cribbed from https://github.com/SebastiaanKlippert/go-wkhtmltopdf/blob/master/.travis.yml
- sudo apt-get update
- sudo apt-get install -y build-essential xorg xfonts-75dpi libpng16-16 libssl1.1
Expand Down
9 changes: 6 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# To build the spec on Travis CI
source "https://rubygems.org"

gem "jekyll", "3.6.3"
gem "jekyll", "3.9.3"
gem "rouge"
# gem 's3_website'
gem "redcarpet", "3.5.1"
gem "redcarpet", "3.6.0"

# we use redcarpet not kramdown, but current jekyll complains
# if this isn't present?!
gem 'kramdown-parser-gfm'
0