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    
invoice2go / lib / invoice2go / client.rb
Size: Mime:
module Invoice2go
  # Wrapper for the Invoice2go REST API.
  class Client < API
    Dir[File.expand_path('../client/*.rb', __FILE__)].each{|f| require f}

    include Invoice2go::Client::Accounts
    include Invoice2go::Client::Documents
    include Invoice2go::Client::Clients
  end
end