lib/fog/ibm/models/compute/locations.rb in fog-maestrodev-1.7.0.20121114190951 vs lib/fog/ibm/models/compute/locations.rb in fog-maestrodev-1.8.0.20130109172219
- old
+ new
@@ -8,15 +8,15 @@
class Locations < Fog::Collection
model Fog::Compute::IBM::Location
def all
- load(connection.list_locations.body['locations'])
+ load(service.list_locations.body['locations'])
end
def get(location_id)
begin
- new(connection.get_location(location_id).body)
+ new(service.get_location(location_id).body)
rescue Fog::Compute::IBM::NotFound
nil
end
end