These docs are for v1.1. Click to read the latest docs for v1.2.

Installation

Add this line to your application's Gemfile:

gem 'shipping_easy'

And then execute:

$ bundle

Or install it yourself as:

$ gem install shipping_easy

Configuration

You will need a ShippingEasy API key and secret to sign your API requests. These can be found in your account's settings (https://app.shippingeasy.com/settings/api_credentials).

Once you have the credentials, add them to the libary's configuration. Do this in an intializer if you're running a Rails app:

ShippingEasy.configure do |config|
  config.api_key = 'd8e8fca2dc0f896fd7cb4cb0031ba249'
  config.api_secret = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
end