Sha256: 2bfa31d13e5d01442763d0a036640c4a3c1088ea4e32ed95b5a4dbfc7ec4a576
Contents?: true
Size: 1.26 KB
Versions: 4
Compression:
Stored size: 1.26 KB
Contents
# frozen_string_literal: true require 'faraday' require 'oj' require_relative 'fantasticstay_api/version' # Base module for Fantasticstay API module FantasticstayApi class Error < StandardError; end LIBNAME = 'fantasticstay_api' LIBDIR = File.expand_path(LIBNAME.to_s, __dir__) class << self # Alias for FantasticstayApi::Client.new # # @param [Hash] options # the configuration options # # @return [FantasticstayApi::Client] # # @api public def new(options = {}, &block) Client.new(options, &block) end # Default middleware stack that uses default adapter as specified # by configuration setup # # @return [Proc] # # @api private def default_middleware(options = {}) Middleware.default(options) end # Delegate to FantasticstayApi::Client # # @api private def method_missing(method_name, *args, &block) if new.respond_to?(method_name) new.send(method_name, *args, &block) else super.respond_to_missing? end end def respond_to_missing?(method_name, include_private = false) new.respond_to?(method_name, include_private) || super(method_name, include_private) end end end require_relative 'fantasticstay_api/client'
Version data entries
4 entries across 4 versions & 1 rubygems