Cap fog-aws < 2.0.0 for ruby 1.9 support

The 2.0.0 release of fog-aws requires ruby 2.0 or greater which is not
available on trusty. Pin to less than 2.0.0 so that we can continue to
function trusty.

Change-Id: Ic2bf772a7e6669ee23b6712222372bc55986f617
This commit is contained in:
Clark Boylan 2017-11-28 15:09:50 -08:00
parent a9b567eadf
commit 77dcdb469e
1 changed files with 2 additions and 0 deletions

View File

@ -50,6 +50,8 @@ Gem::Specification.new do |spec|
spec.add_dependency 'fast_gettext', ['< 1.2.0']
# nokogiri 1.7.0+ requires ruby 2.1.0 which is not available on centos7
spec.add_dependency 'nokogiri', ['< 1.7.0']
# fog-aws 2.0.0 requires ruby 2.0 which is not available on trusty
spec.add_dependency 'fog-aws', ['< 2.0.0']
# fog-core 1.44.0 requires xmlrpc 0.3.0 which requires ruby 2.3.0 which is not available on centos7
spec.add_dependency 'fog-core', ['!= 1.44.0']