README.md in mollie-bank-0.0.1 vs README.md in mollie-bank-0.0.2

- old
+ new

@@ -1,7 +1,10 @@ -# Mollie-Bank +# Mollie-Bank [![Build Status](https://secure.travis-ci.org/manuelvanrijn/mollie-bank.png?branch=master)][travis] [![Dependency Status](https://gemnasium.com/manuelvanrijn/mollie-bank.png)][gemnasium] +[travis]: http://travis-ci.org/manuelvanrijn/mollie-bank +[gemnasium]: https://gemnasium.com/manuelvanrijn/mollie-bank + A simple implementation of the "TM Bank" by [Mollie](http://www.mollie.nl), but without the portforward stuff to test your iDeal transactions localy. ## Getting started ### Install @@ -10,23 +13,10 @@ ``` gem install mollie-bank ``` -Or if you are implementing this into a Rails project you could add the gem into your `Gemfile`. - -``` -gem 'mollie-bank' -``` - -Finally, if you don’t dig any of that gemming that’s so popular nowadays, you can install it as a plugin for you Rails project: - -``` -cd vendor/plugins -git clone --depth 1 git://github.com/manuelvanrijn/mollie-bank.git mollie-bank -``` - ### Running the Mollie Bank After installation you can simple run: ``` @@ -35,10 +25,10 @@ Check if it works by browsing to: [http://localhost:4567/](http://localhost:4567/) ## Howto implement -By default all communication for iDeal transactions is through [https://secure.mollie.nl/xml/ideal](https://secure.mollie.nl/xml/ideal). To use the "Mollie Bank" gem, you have to change this path into http://localhost:4567/xml/ideal](http://localhost:4567/xml/ideal). +By default all communication for iDeal transactions is through [https://secure.mollie.nl/xml/ideal](https://secure.mollie.nl/xml/ideal). To use the "Mollie Bank" gem, you have to change this path into [http://localhost:4567/xml/ideal](http://localhost:4567/xml/ideal). Of course you only want to use this in development mode, so you have to create some code to change this path only when it isn't in production mode. Check the [Wiki: Implement into existing modules](https://github.com/manuelvanrijn/mollie-bank/wiki/Implement-into-existing-modules) page for implementation of existing frameworks/modules.