mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
48a92f496f
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.
11 lines
139 B
Ruby
11 lines
139 B
Ruby
require 'fog/core'
|
|
require 'fog/json'
|
|
|
|
module Fog
|
|
module Brightbox
|
|
extend Fog::Provider
|
|
|
|
service(:compute, 'Compute')
|
|
|
|
end
|
|
end
|