Repository is archived
No commit activity in last 3 years
No release in over 3 years
A simple gem to ease/automate getting this data every month.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

~> 4.0
 Project Readme

!!! This gem is not maintened anymore !!!

Replaced by fuel_surcharge, which handle more transporters.

Colissimo Fuel Adjustment Coefficients fetcher

Retrieve current air and road rates applied to Colissimo shipping costs and convert them to multipliers we can directly use in your app to calculate precise shipping costs?

Usage

Install the gem:

$ gem install colissimo_fuel_adjustment_coefficients

Run the gem:

$ colissimo_fuel_adjustment_coefficients

Get the result:

# Fuel multipliers for 05-2017
# Fetched from https://www.colissimo.entreprise.laposte.fr/fr/system/files/imagescontent/docs/indice_gazole.xml

AIR_FUEL_MULTIPLIER  = 1.0000
ROAD_FUEL_MULTIPLIER = 1.0077

Or use it in your app:

require 'colissimo_fuel_adjustment_coefficients'

colissimo = ColissimoFuelAdjustmentCoefficients.new
colissimo.road_multiplier      # 0.10077e1
colissimo.air_multiplier       # 0.1e1