[![Build Status](https://travis-ci.org/ssaunier/colissimo.png)](https://travis-ci.org/ssaunier/colissimo) # Colissimo This gem allows you to retrieve tracking information from French Colissimo parcel delivery company. Unfortunatelly you won't get this information in a text format, but in an image format. That's fine for display though. ## Usage Add the `colissimo` gem to your `Gemfile`, run the `bundle` command. ```ruby require "colissimo" tracking_code = "6C07437595437" rows = Colissimo::Tracker.new(tracking_code).tracking_rows output == "" rows.each do |row| output += " " output += " " output += " " output += " " output += " " end output += "
" ``` If you are interested in just the latest status, you can save some bandwidth witht this option: ```ruby Colissimo::Tracker.new(tracking_code).tracking_rows(:latest_only => true) ```