1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Require docker-api in Gemfile

In lib/fog/fogdocker/compute.rb, require 'docker' is used.
The gem is used throughout this part of the code but is not required in the Gemfile,
I've added it, it's https://github.com/swipely/docker-api
This commit is contained in:
Daniel Lobato 2014-09-30 11:18:13 +02:00
parent 1c96d0cabd
commit 4c5774e9ac

View file

@ -65,6 +65,7 @@ Gem::Specification.new do |s|
s.add_development_dependency('pry')
s.add_development_dependency('opennebula', '>=4.4.0')
s.add_development_dependency('google-api-client', '~> 0.6', '>= 0.6.2')
s.add_development_dependency('docker-api', '>= 1.8.0')
s.add_development_dependency('rubocop') if RUBY_VERSION > "1.9"
if ENV["FOG_USE_LIBVIRT"]