mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
527b91bf02
When the Joyent provider was merged in it was after a reworking of how requires and services were declared. This meant the call to `service` was no longer correct. This updates the signature and the mocked tests now pass (locally at least) however the structuring and placement of the files may not be inconsistent with the results of [GH-1712]
13 lines
211 B
Ruby
13 lines
211 B
Ruby
require 'fog/joyent/compute'
|
|
require 'fog/joyent/errors'
|
|
require 'fog/core'
|
|
|
|
module Fog
|
|
module Joyent
|
|
extend Fog::Provider
|
|
|
|
service(:analytics, 'Analytics')
|
|
service(:compute, 'Compute')
|
|
|
|
end
|
|
end
|