Skip to content

Commit

Permalink
Lock nokogiri to 1.7.x for Ruby 2.1 (#6140)
Browse files Browse the repository at this point in the history
Merge pull request 6140
  • Loading branch information
parkr authored and jekyllbot committed Jun 18, 2017
1 parent 0d96ac4 commit 01dd356
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Gemfile
Expand Up @@ -22,7 +22,8 @@ group :test do
gem "cucumber", "~> 2.1"
gem "jekyll_test_plugin"
gem "jekyll_test_plugin_malicious"
gem "nokogiri"
# nokogiri v1.8 does not work with ruby 2.1 and below
gem "nokogiri", RUBY_VERSION >= "2.2" ? "~> 1.7" : "~> 1.7.0"
gem "rspec"
gem "rspec-mocks"
gem "rubocop", "~> 0.49.1"
Expand Down
2 changes: 0 additions & 2 deletions appveyor.yml
Expand Up @@ -20,8 +20,6 @@ environment:
TEST_SUITE: "test"
- RUBY_FOLDER_VER: "23"
TEST_SUITE: "cucumber"
- RUBY_FOLDER_VER: "23"
TEST_SUITE: "fmt"
- RUBY_FOLDER_VER: "23"
TEST_SUITE: "default-site"
- RUBY_FOLDER_VER: "23-x64"
Expand Down

0 comments on commit 01dd356

Please sign in to comment.