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/joyent.rb
Paul Thornthwaite 527b91bf02 Fix Joyent service declarations
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]
2014-02-12 09:42:49 +00:00

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