-
Notifications
You must be signed in to change notification settings - Fork 106
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
Update Ruby version for 22.04 #807
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This version of html-proofer detects a lot of spurious errors.
Gemfile
Outdated
gem 'rubyzip', '~> 2.3.0' | ||
gem 'webrick', '~> 1.8', '>= 1.8.1' | ||
gem "github-pages", group: :jekyll_plugins | ||
gem 'html-proofer', '~> 3.4' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do you downgrade html-proofer to a really old version?
Gemfile
Outdated
gem 'github-pages' | ||
gem 'html-proofer', '~> 3.19.4' | ||
gem 'rubyzip', '~> 2.3.0' | ||
gem 'webrick', '~> 1.8', '>= 1.8.1' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it really necessary to enforce >= 1.8.1
as well? ~>1.8
means any version >= 1.8 but smaller 2.0. I guess the latest will be chosen anyway.
Gemfile
Outdated
gem 'webrick', '~> 1.8', '>= 1.8.1' | ||
gem "github-pages", group: :jekyll_plugins | ||
gem 'html-proofer', '~> 3.4' | ||
gem 'rubyzip', '~> 2.3', '>= 2.3.2' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See above.
gem 'rubyzip', '~> 2.3', '>= 2.3.2' | |
gem 'rubyzip', '~> 2.3' |
@rhaschke thank you for the review. I've fixed up this PR based on your feedback. The old version of htmlproofer was a mistake. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll merge this. I tried looking into the html-proofer errors today and don't understand what is happening. I posted internally here about it, hoping someone who better understands this problem might help. |
Description
Fixes #806