Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
zoho_api / lib / zoho_api / client.rb
Size: Mime:
# frozen_string_literal: true

module ZohoApi
  # Wrapper for the ZohoApi REST API.
  class Client < ZohoApi::API
    Dir[File.expand_path('client/*.rb', __dir__)].each { |f| require f }
    Dir[File.expand_path('client/*/*.rb', __dir__)].each { |f| require f }

    include ZohoApi::Client::Token
    include ZohoApi::Client::Invoicing::Contacts
    include ZohoApi::Client::Invoicing::Invoices
  end
end