Project

shipwire

0.02
No release in over 3 years
Low commit activity in last 3 years
Provides a wrapper for API calls to Shipwire
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.0.0
~> 0.10.1
~> 3.2.0
~> 0.10.0
~> 2.9.3
~> 1.21.0

Runtime

 Project Readme

Shipwire

Ruby gem to integrate with Shipwire's API.

Installation

Install locally with

gem install shipwire

Add this line to your application's Gemfile:

gem 'shipwire'

Note: The master branch is not guaranteed to be in a fully functioning state. It is unwise to use this branch in a production environment.

Run the bundle command:

bundle install

If you are using Rails, run the generator:

rails g shipwire:install

Configuration

Basic configuration

Shipwire.configure do |config|
  config.username = "<%= ENV['SHIPWIRE_USERNAME'] %>"
  config.password = "<%= ENV['SHIPWIRE_PASSWORD'] %>"
end

username - (required) Shipwire username (email address) used for basic auth login to Shipwire

password - (required) Shipwire password used for basic auth login to Shipwire.

open_timeout - Read timeout in seconds. Default is 2.

timeout - Open/read timeout in seconds. Default is 5.

endpoint - Endpoint base URL to use for requests. Default is https://api.shipwire.com.

logger - Log requests to STDOUT. Default is false.

Note: There is a difference between an account registered from https://www.shipwire.com/ and one registered from https://beta.shipwire.com/. If you create an account from https://www.shipwire.com/ and then request data from the beta URL, the API will throw errors about an invalid account. Accounts are only valid from that registration point.

Testing

Tests are using a throwaway Shipwire Beta account that is only meant for testing. A personal Shipwire Beta account of your own is not required.

Tests require a product named TEST-PRODUCT and TEST-PRODUCT2 to function properly.

bundle exec rake spec

or

bundle exec rspec spec

Contributions

If making contributions to this gem, make sure you write tests for any new functionality. Contributions will be rejected if there are no tests or tests do not pass.

Contributing

  1. Fork it ( https://github.com/billr578/shipwire/fork )
  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 a new Pull Request