README.md in fixer-rb-0.1.1 vs README.md in fixer-rb-0.1.2

- old
+ new

@@ -1,7 +1,9 @@ # Fixer +[![Build Status](https://travis-ci.org/gaotongfei/fixer.svg?branch=master)](https://travis-ci.org/gaotongfei/fixer) + Fixer is a simple API wrapper of [http://fixer.io/](http://fixer.io/) to provide a clean way of converting currency # Install ``` @@ -14,14 +16,53 @@ ``` require 'fixer' fixer = Fixer::Request.new 'CNY' -params = {target: 'USD', ammount: 200} +params = {target: 'USD', ammount: 1000} fixer.transfer(params) +$ 149.75 ``` ``` -$ 149.75 +fixer.get_rate do |rate| + rate.USD +end + +$ 0.14975 ``` +# Supported Currencies + +* CNY +* AUD +* BGN +* BRL +* CAD +* CHF +* CZK +* DKK +* GBP +* HKD +* HRK +* HUF +* IDR +* ILS +* INR +* JPY +* KRW +* MXN +* MYR +* NOK +* NZD +* PHP +* PLN +* RON +* RUB +* SEK +* SGD +* THB +* TRY +* USD +* ZAR +* EUR