Skip to content

Commit

Permalink
Fix Joyent service declarations
Browse files Browse the repository at this point in the history
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 [fogGH-1712]
  • Loading branch information
tokengeek committed Feb 12, 2014
1 parent 2820975 commit 527b91b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/fog/joyent.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ module Fog
module Joyent
extend Fog::Provider

service(:analytics, 'joyent/analytics', 'Analytics')
service(:compute, 'joyent/compute', 'Compute')
service(:analytics, 'Analytics')
service(:compute, 'Compute')

end
end

0 comments on commit 527b91b

Please sign in to comment.