lib/lightspeed_restaurant/operations/find.rb in lightspeed_restaurant-0.3.0 vs lib/lightspeed_restaurant/operations/find.rb in lightspeed_restaurant-1.0.0

- old
+ new

@@ -1,9 +1,9 @@ -module LightspeedRestaurant +module LightspeedRestaurantClient module Operations module Find def find(id) - response = JSON.parse(LightspeedRestaurant.get(resource_path + "/#{id}")) + response = JSON.parse(LightspeedRestaurantClient.get(resource_path + "/#{id}")) new(response) end end end end