Skip to content

Commit

Permalink
Avoid broken versions of Nokogiri
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 committed Aug 29, 2021
1 parent e8fec4a commit 3d26f85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion viewpoint.gemspec
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 3d26f85

Please sign in to comment.