mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
fix json 1.8 version for ruby 1.9 & 2.1
This commit is contained in:
parent
16e759c834
commit
fb23e53b3d
1 changed files with 4 additions and 0 deletions
4
Gemfile
4
Gemfile
|
@ -8,6 +8,10 @@ if Gem::Version.new(RUBY_VERSION) <= Gem::Version.new('1.9.3')
|
|||
gem 'net-ssh', '~> 2.9'
|
||||
end
|
||||
|
||||
if Gem::Version.new(RUBY_VERSION) <= Gem::Version.new('2.1.0')
|
||||
gem 'json', '~> 1.8'
|
||||
end
|
||||
|
||||
# TODO: ffi 1.9.11 is currently erroneous on windows tests
|
||||
gem 'ffi', '= 1.9.10'
|
||||
|
||||
|
|
Loading…
Reference in a new issue