-
Notifications
You must be signed in to change notification settings - Fork 1
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
Bump html pipeline to 2.0 #1
Conversation
|
@@ -18,9 +15,10 @@ Gem::Specification.new do |spec| | |||
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } | |||
spec.require_paths = ["lib"] | |||
|
|||
spec.add_dependency 'html-pipeline', "~> 1.0" | |||
spec.add_dependency 'html-pipeline', "~> 2.0" | |||
spec.add_dependency 'github-markdown', "~> 0.6" |
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 is Markdown needed?
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 believe because class LinkRewriterFilter < HTML::Pipeline::MarkdownFilter
. Without the dependencies:
➜ link-rewriter-filter git:(html-pipeline-2) ✗ script/cibuild
Missing dependency 'github-markdown' for MarkdownFilter. See README.md for details.
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.
Ack, you're right.
In addition to gjtorikian/jekyll-html-pipeline#7, this makes link-rewrite-filter compatible with the Jekyll 3 Gems, which depend on HTML Pipeline ~> 2.0,