Skip to content

Commit

Permalink
Avoid broken versions of Nokogiri (#292)
Browse files Browse the repository at this point in the history
Nokogiri v1.12.0 introduced a breaking change that is fixed in
v1.12.4. This PR will avoid those broken versions.

See sparklemotion/nokogiri#2320
  • Loading branch information
flavorjones authored Jul 8, 2024
1 parent e8fec4a commit 1902511
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion viewpoint.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |s|
s.rdoc_options = %w(-x test/ -x examples/)
s.extra_rdoc_files = %w(README.md)

s.add_runtime_dependency 'nokogiri'
s.add_runtime_dependency 'nokogiri', '!=1.12.3', '!=1.12.2', '!=1.12.1', '!=1.12.0'
s.add_runtime_dependency 'httpclient'
s.add_runtime_dependency 'rubyntlm'
s.add_runtime_dependency 'logging'
Expand Down

0 comments on commit 1902511

Please sign in to comment.