lib/access/response.rb in access-2.0.23 vs lib/access/response.rb in access-2.0.24

- old
+ new

@@ -162,6 +162,13 @@ class FavoriteResponse < Response def process_data @favorites = Access::Favorite.process_batch(@favorites) if @favorites end end + + class GeolocationResponse < Response + def process_data + @locations = Access::Geolocation.process_batch(@locations) if @locations + end + end + end