This library interfaces with the web services of various shipping carriers. The goal is to abstract the features that are most frequently used into a pleasant and consistent Ruby API:
- Finding shipping rates
- Registering shipments
- Tracking shipments
- Purchasing shipping labels
In early 2018, Shopify removed the UPS carrier from their gem. People don't exactly know why but they surmise it may be related to Shopify's exclusive deal with UPS. ugh
When Shopify removed UPS they never released a new version of the gem which is why BNB/MT have been happily using an old version of the gem that contained the UPS carrier.
Now with an update to Rails 6 happening, this is a gem that needs to updated to support anything beyond Rails 5.1. So BNB has forked it and added the UPS carrier back to the code and we'll continue using it until such a time as UPS changes the API and it doesn't work.
- WTC, January 2020
Note: 2.x
contains breaking changes, please see the changelog. Shopify will not be actively contributing to the 2.x
version of this gem and is looking for maintainers.
See our releases for past versions.
Using bundler, add to the Gemfile
:
gem 'active_shipping'
Or stand alone:
$ gem install active_shipping
require 'active_shipping'
# Package up a poster and a Wii for your nephew.
packages = [
ActiveShipping::Package.new(100, # 100 grams
[93,10], # 93 cm long, 10 cm diameter
cylinder: true), # cylinders have different volume calculations
ActiveShipping::Package.new(7.5 * 16, # 7.5 lbs, times 16 oz/lb.
[15, 10, 4.5], # 15x10x4.5 inches
units: :imperial) # not grams, not centimetres
]
# You live in Beverly Hills, he lives in Ottawa
origin = ActiveShipping::Location.new(country: 'US',
state: 'CA',
city: 'Beverly Hills',
zip: '90210')
destination = ActiveShipping::Location.new(country: 'CA',
province: 'ON',
city: 'Ottawa',
postal_code: 'K1P 1J1')
# Find out how much it'll be.
usps = ActiveShipping::USPS.new(login: 'developer-key')
response = usps.find_rates(origin, destination, packages)
usps_rates = response.rates.sort_by(&:price).collect {|rate| [rate.service_name, rate.price]}
# => [["USPS Priority Mail International", 4110],
# ["USPS Express Mail International (EMS)", 5750],
# ["USPS Global Express Guaranteed Non-Document Non-Rectangular", 9400],
# ["USPS GXG Envelopes", 9400],
# ["USPS Global Express Guaranteed Non-Document Rectangular", 9400],
# ["USPS Global Express Guaranteed", 9400]]
Dimensions for packages are in Height x Width x Length
order.
fedex = ActiveShipping::FedEx.new(login: '999999999', password: '7777777', key: '1BXXXXXXXXXxrcB', account: '51XXXXX20')
tracking_info = fedex.find_tracking_info('tracking-number', carrier_code: 'fedex_ground') # Ground package
tracking_info.shipment_events.each do |event|
puts "#{event.name} at #{event.location.city}, #{event.location.state} on #{event.time}. #{event.message}"
end
# => Package information transmitted to FedEx at NASHVILLE LOCAL, TN on Thu Oct 23 00:00:00 UTC 2008.
# Picked up by FedEx at NASHVILLE LOCAL, TN on Thu Oct 23 17:30:00 UTC 2008.
# Scanned at FedEx sort facility at NASHVILLE, TN on Thu Oct 23 18:50:00 UTC 2008.
# Departed FedEx sort facility at NASHVILLE, TN on Thu Oct 23 22:33:00 UTC 2008.
# Arrived at FedEx sort facility at KNOXVILLE, TN on Fri Oct 24 02:45:00 UTC 2008.
# Scanned at FedEx sort facility at KNOXVILLE, TN on Fri Oct 24 05:56:00 UTC 2008.
# Delivered at Knoxville, TN on Fri Oct 24 16:45:00 UTC 2008. Signed for by: T.BAKER
The :login
key passed to ActiveShipping::FedEx.new()
is really the FedEx meter number, not the FedEx login.
When developing with test credentials, be sure to pass test: true
to ActiveShipping::FedEx.new()
.
You can run the unit tests with:
bundle exec rake test:unit
and the remote tests with:
bundle exec rake test:remote
The unit tests mock out requests and responses so that everything runs locally, while the remote tests actually hit the carrier servers. For the remote tests, you'll need valid test credentials for any carriers' tests you want to run. The credentials should go in ~/.active_shipping/credentials.yml
. For some carriers, we have public credentials you can use for testing in .travis.yml
. Remote tests missing credentials will be skipped.
See CONTRIBUTING.md.
We love getting pull requests! Anything from new features to documentation clean up.
If you're building a new carrier, a good place to start is in the Carrier
base class.
It would also be good to familiarize yourself with Location
, Package
, and Response
.
You can use the test/console.rb
to do some local testing against real endpoints.
To log requests and responses, just set the logger
on your Carrier class to some kind of Logger
object:
ActiveShipping::USPS.logger = Logger.new(STDOUT)
Any new features or carriers should have passing unit and remote tests. Look at some existing carriers as examples.
When opening a pull request, include description of the feature, why it exists, and any supporting documentation to explain interaction with carriers.
- Fork it ( https://github.com/Shopify/active_shipping/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request