1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/brightbox/core.rb
Paul Thornthwaite 48a92f496f [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.
2014-02-19 14:09:06 +00:00

11 lines
139 B
Ruby

require 'fog/core'
require 'fog/json'
module Fog
module Brightbox
extend Fog::Provider
service(:compute, 'Compute')
end
end