Sha256: 22053ca80459c8dc469ab52304ddb8c7a196afb9c7df40c2695fac7988c33c1c
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
# Lightspeed Restaurant Ruby Bindings # API spec at http://staging-exact-integration.posios.com/PosServer/swagger-ui.html require 'excon' require 'json' require 'lightspeed_restaurant/version' require 'lightspeed_restaurant/request' require 'lightspeed_restaurant/customer' require 'lightspeed_restaurant/customer_credit_change' require 'lightspeed_restaurant/receipt' require 'lightspeed_restaurant/company' module LightspeedRestaurant class << self attr_accessor :api_token, :base_uri def get(path, body = {}, query = {}) request(path, body, query).perform(method: :get) end def post(path, body = {}, query = {}) request(path, body, query).perform(method: :post) end def put(path, body = {}, query = {}) request(path, body, query).perform(method: :put) end def delete(path, body = {}, query = {}) request(path, body, query).perform(method: :delete) end private def request(path, body, query) Request.new(@base_uri, path, @api_token, body, query) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lightspeed_restaurant-0.3.0 | lib/lightspeed_restaurant.rb |