Sha256: fa326c0591b22340a729f74711e5546405a7bcbade7552a3ef53d2c080293254
Contents?: true
Size: 1.06 KB
Versions: 1
Compression:
Stored size: 1.06 KB
Contents
# Ruby client for Invofox API [![CircleCI](https://circleci.com/gh/quipuapp/invofox-api-ruby.svg?style=shield)](https://circleci.com/gh/quipuapp/invofox-api-ruby) This is a Ruby client for the Invofox' API Installation --------- Install the gem (`gem install invofox-api-ruby`) or include it in your Gemfile and `bundle`. Configuration --------- Just set the API key by doing this: ```ruby Invofox.api_key = 'your-api-key' ``` Or, if you use it in a Rails application, create an initializer with this content: ```ruby require 'invofox' Invofox.configure do |config| config.api_key = 'your-api-key' end ``` You can set a `logger` as well. Changelog --------- * v.0.1.2 Added support for companies' list endpoint. * v.0.1.1 Added support for documents' update_type endpoint. * v.0.1.0 First vull version, including resource wrapping for companies (get, create and update), documents (get, bulk and update) and load batches (get), plus logger integration. About Invofox ------------ * [Public site](https://invofox.com) * [Documentation](https://developers.invofox.com)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
invofox-api-ruby-0.1.2 | README.md |