fix json 1.8 version for ruby 1.9 & 2.1

This commit is contained in:
Christoph Hartmann 2016-08-24 11:16:43 +02:00
parent 16e759c834
commit fb23e53b3d

View file

@ -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'