mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
Build fix - Html proofer version fixed for ruby version 2.5
Signed-off-by: Nikita Mathur <nikita.mathur@chef.io>
This commit is contained in:
parent
1e380c1f43
commit
16455e978f
1 changed files with 5 additions and 1 deletions
6
Gemfile
6
Gemfile
|
@ -30,7 +30,11 @@ end
|
||||||
group :test do
|
group :test do
|
||||||
gem "chefstyle", "~> 2.0.3"
|
gem "chefstyle", "~> 2.0.3"
|
||||||
gem "concurrent-ruby", "~> 1.0"
|
gem "concurrent-ruby", "~> 1.0"
|
||||||
gem "html-proofer", platforms: :ruby # do not attempt to run proofer on windows
|
if Gem.ruby_version.to_s.start_with?("2.5")
|
||||||
|
gem "html-proofer", "= 3.19.1" , platforms: :ruby # do not attempt to run proofer on windows
|
||||||
|
else
|
||||||
|
gem "html-proofer", platforms: :ruby # do not attempt to run proofer on windows
|
||||||
|
end
|
||||||
gem "json_schemer", ">= 0.2.1", "< 0.2.19"
|
gem "json_schemer", ">= 0.2.1", "< 0.2.19"
|
||||||
gem "m"
|
gem "m"
|
||||||
gem "minitest-sprint", "~> 1.0"
|
gem "minitest-sprint", "~> 1.0"
|
||||||
|
|
Loading…
Reference in a new issue