module Deliveree
#Deliveree SDK #With Deliveree
API, developers can integrate our on-demand local delivery platform into their applications. The API is designed for developers to check prices, book an immediate or scheduled delivery and follow updates until delivery completion. Contact: duke@deliveree.com
Deliveree
SDK
Version
Constants
- VERSION
Public Class Methods
configure() { |default| ... }
click to toggle source
Customize default settings for the SDK using block.
Deliveree.configure do |config| config.username = "xxx" config.password = "xxx" end
If no block given, return the default Configuration
object.
# File lib/deliveree_sdk.rb, line 33 def configure if block_given? yield(Configuration.default) else Configuration.default end end