From 6a1e04ce281a3db881e76c65c211f561275d00bf Mon Sep 17 00:00:00 2001 From: Paul Thornthwaite Date: Mon, 15 Sep 2014 10:07:45 +0100 Subject: [PATCH] [GH-3156] Fix fog binary dependencies The Sakuracloud `bin` file was removed to `v0.0.4` but the dependency was not declared. Using `$ fog` without manually updating the dependency would trigger a require error due to this missing file. This adds the minimal dependency required. --- fog.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fog.gemspec b/fog.gemspec index 335638b12..b30fb871e 100644 --- a/fog.gemspec +++ b/fog.gemspec @@ -50,7 +50,7 @@ Gem::Specification.new do |s| # Modular providers s.add_dependency("fog-brightbox") s.add_dependency("fog-softlayer") - s.add_dependency("fog-sakuracloud") + s.add_dependency("fog-sakuracloud", ">= 0.0.4") ## List your development dependencies here. Development dependencies are ## those that are only needed during development