Remove nokogiri from explicit dependency list

Removes the nokogiri dependency to prevent resolution conflicts
with plugins that may require earlier or later versions than what
Vagrant constrains to.

Fixes #8550
This commit is contained in:
Chris Roberts 2017-05-08 16:03:16 -07:00
parent b9862ce847
commit bf1021905b
1 changed files with 0 additions and 3 deletions

View File

@ -32,9 +32,6 @@ Gem::Specification.new do |s|
s.add_dependency "winrm-fs", "~> 1.0" s.add_dependency "winrm-fs", "~> 1.0"
s.add_dependency "winrm-elevated", "~> 1.1" s.add_dependency "winrm-elevated", "~> 1.1"
# We lock this down to avoid compilation issues.
s.add_dependency "nokogiri", "~> 1.7.1"
# NOTE: The ruby_dep gem is an implicit dependency from the listen gem. Later versions # NOTE: The ruby_dep gem is an implicit dependency from the listen gem. Later versions
# of the ruby_dep gem impose an aggressive constraint on the required ruby version (>= 2.2.5). # of the ruby_dep gem impose an aggressive constraint on the required ruby version (>= 2.2.5).
# Explicit constraint is defined to provide required dependency to listen without imposing # Explicit constraint is defined to provide required dependency to listen without imposing