Skip to content
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

nokogiri _is_ required for running tests under JRuby 9.3 #345

Merged
merged 1 commit into from
Oct 2, 2024
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: 2 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ AllCops:
- cache/**/*
- tmp/**/*

Bundler/DuplicatedGem:
Enabled: false # it's okay, due to bundler-multilock
# The following is excluded because it is within the shipped Gem
# the cop is searching for the gem itself, so exclude this file
Bundler/GemFilename:
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ lockfile active: RUBY_VERSION >= "2.7" do
end

lockfile "ruby-2.6", active: RUBY_VERSION < "2.7" do
# no additional gems
gem "nokogiri", "~> 1.13.0"
end

gem "coderay", "~> 1.1.3", require: false, platform: :mri
Expand Down
11 changes: 11 additions & 0 deletions Gemfile.ruby-2.6.lock
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,14 @@ GEM
mini_mime (1.1.5)
multi_test (1.1.0)
multi_xml (0.6.0)
nokogiri (1.13.10-arm64-darwin)
racc (~> 1.4)
nokogiri (1.13.10-java)
racc (~> 1.4)
nokogiri (1.13.10-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.13.10-x86_64-linux)
racc (~> 1.4)
pastel (0.8.0)
tty-color (~> 0.5)
persistent_http (1.0.6)
Expand All @@ -78,6 +86,8 @@ GEM
httparty (~> 0.9)
persistent_http (< 2)
process_exists (0.2.0)
racc (1.7.3)
racc (1.7.3-java)
rack (2.2.8)
rake (13.1.0)
rspec (3.12.0)
Expand Down Expand Up @@ -120,6 +130,7 @@ DEPENDENCIES
cuke_linter (~> 1.2)
gem-release (~> 2.2)
httparty (~> 0.20)
nokogiri (~> 1.13.0)
openhab-scripting!
persistent_httparty (~> 0.1)
process_exists (~> 0.2)
Expand Down