Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 574 Bytes

README.textile

File metadata and controls

29 lines (20 loc) · 574 Bytes

Twinfield

Twinfield is an international Web service for collaborative online accounting. The Twinfield gem is a simple client for their SOAP-based API.

Installing

Using Twinfield

Add Twinfield in Gemfile as a gem dependency:

  gem "twinfield", github: "stephanvd/twinfield"

Run the following in your console to install with Bundler:

  bundle install

Add a config block to your environment.rb:

  Twinfield.configure do |config|
    config.username = ""
    config.password = ""
    config.organisation = ""
  end