FoxyCart Ruby Library
THIS IS A WORK IN PROGRESS, COME BACK SOON!
A Ruby wrapper for the new FoxyCart Hypermedia REST API.
Installation
gem install foxycart
...or...
gem 'foxycart'
Usage
Below is an example of how to create a store using the FoxyCart gem:
require 'foxycart'
FoxyCart.api_key = '<YOUR-KEY-HERE>'
FoxyCart::Store.create(
:store_name => 'My Test Store',
:store_domain => 'some-subdomain',
:store_url => 'http://example.com',
:store_email => 'test@example.com',
:postal_code => '98765',
:country => 'US',
:region => 'CA',
)
Check out the list of available interfaces below.
Reference
This is a work in progress, many features are still missing. The FoxyCart API itself is not finalized so this may change at any time!
FoxyCart::Store
FoxyCart Store API Reference
Supported Methods:
Development
- Fork
- Make changes (and add tests/docs!)
- Submit pull request
- ???
- Profit!
License
Released under the MIT license. See the LICENSE
file for more details.
Credit
Written by Dana Woodman and of Teleporter.io, based heavily on the Stripe Ruby gem.