From 48a92f496f97b608b3c2605c1adeb85a30675321 Mon Sep 17 00:00:00 2001 From: Paul Thornthwaite Date: Wed, 19 Feb 2014 14:09:06 +0000 Subject: [PATCH] [Brightbox] Require `fog/json` in compute Since `fog-json` was extracted from `fog` it means if you rely on: require "fog/brightbox/compute" `Fog::JSON` was not defined although it was supposed to be a supported use case. This adds the missing require. --- lib/fog/brightbox/core.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/fog/brightbox/core.rb b/lib/fog/brightbox/core.rb index 6a108c98c..afea8b7b5 100644 --- a/lib/fog/brightbox/core.rb +++ b/lib/fog/brightbox/core.rb @@ -1,4 +1,5 @@ require 'fog/core' +require 'fog/json' module Fog module Brightbox