glynhudson / KashflowAPI

Kashflow API wrapper for Ruby

Home Page:http://ed-itsolutions.github.com/KashflowAPI/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

KashflowApi

Build Status Code Climate Coverage Status

KashflowApi provides an Active Record like interface to the Kashflow API.

Install

You can install KashflowApi by adding it yo your Gemfile like this:

gem 'kashflow_api'

and running bundle install

Usage

At the beginning of your program, or in an rails initializer call the configure block like so:

KashflowApi.configure do |c|
  c.username = "Username"
  c.password = "Password"
  c.loggers = false
end

I recommend settings loggers to false so that you don't get all the soap exchanges echoed out.

You can now call methods on the models e.g.

KashflowApi::Customer.all
KashflowApi::Customer.find("Cust01")
KashflowApi::Customer.find_by_email("customer@domain.tld")

Saving

All the Kashflow objects in the gem have a .save method which will either insert a new record or update the current one.

More Info

For more info head over to the wiki

About

Kashflow API wrapper for Ruby

http://ed-itsolutions.github.com/KashflowAPI/


Languages

Language:Ruby 100.0%