Sha256: 776b4aa4c966e0d3c35672601bb41a84542775e3488aa67405ca549202c3b011

Contents?: true

Size: 1.11 KB

Versions: 1

Compression:

Stored size: 1.11 KB

Contents

# Zoro [![Build Status](https://secure.travis-ci.org/PayTrace/zoro.png)](http://travis-ci.org/PayTrace/zoro)

A gem for integrating with Zoho.

## Installation

Add this line to your application's Gemfile:

    gem 'zoro'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install zoro

## Usage

First we need an authentication token setup for requests:

    Zoro.auth_token = "SomeAuthToken"

You can customize Faraday behavior for logging or other things by replacing the Zoro connection. I'll probably change this down stream to allow more configurable.

    Zoro.connection = Faraday::Connection.new |conn| do
      conn.request :url_encoded
    end

Current this is still very much a work in development, but for generating leads the following works:

    lead = Zoro::Lead.new
    lead.add_field "First Name", "Foo"
    lead.add_field "Last Name", "Bar"
    lead.save!

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
zoro-0.0.1 README.md