Skip to content

Commit

Permalink
Update gemspec to allow newer version of Nokogiri soundasleep#17
Browse files Browse the repository at this point in the history
This is prevents people using this package from updating Nokogiri to 1.11 which fixes https://www.first.org/cvss/calculator/3.0#CVSS:3.0/AV:N/AC:H/PR:L/UI:R/S:U/C:L/I:N/A:N
  • Loading branch information
mscrivo committed Jan 6, 2021
1 parent 0485f6d commit 3a2198a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
html2text (0.3.0)
nokogiri (~> 1.10.3)
html2text (0.3.1)
nokogiri (>= 1.0, < 2.0)

GEM
remote: https://rubygems.org/
Expand All @@ -12,9 +12,11 @@ GEM
thor (~> 0.18)
colorize (0.7.7)
diff-lcs (1.3)
mini_portile2 (2.4.0)
nokogiri (1.10.3)
mini_portile2 (~> 2.4.0)
mini_portile2 (2.5.0)
nokogiri (1.11.0)
mini_portile2 (~> 2.5.0)
racc (~> 1.4)
racc (1.5.2)
rake (10.4.2)
rspec (3.8.0)
rspec-core (~> 3.8.0)
Expand Down Expand Up @@ -45,4 +47,4 @@ DEPENDENCIES
rspec-collection_matchers

BUNDLED WITH
2.0.1
2.1.4
2 changes: 1 addition & 1 deletion html2text.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |s|
s.files = Dir["lib/**/*", "LICENSE.md", "README.md", "CHANGELOG.md"]
s.test_files = Dir["spec/**/*"]

s.add_dependency "nokogiri", "~> 1.10.3"
s.add_dependency "nokogiri", ['>= 1.0', '< 2.0']

s.add_development_dependency "rspec"
s.add_development_dependency "rspec-collection_matchers"
Expand Down

0 comments on commit 3a2198a

Please sign in to comment.