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

[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.
This commit is contained in:
Paul Thornthwaite 2014-02-19 14:09:06 +00:00
parent dbc6e7db52
commit 48a92f496f

View file

@ -1,4 +1,5 @@
require 'fog/core'
require 'fog/json'
module Fog
module Brightbox