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

- old
+ new

@@ -1,9 +1,15 @@ # Fixer Fixer is a simple API wrapper of [http://fixer.io/](http://fixer.io/) to provide a clean way of converting currency +# Install + +``` +gem install 'fixer-rb' +``` + # Usage To convert Chinese Yuan to US Dollars, simply do this ``` @@ -11,10 +17,9 @@ fixer = Fixer::Request.new 'CNY' params = {target: 'USD', ammount: 200} fixer.transfer(params) - ``` ``` $ 149.75 ```