readme.md in credy-0.1.1 vs readme.md in credy-0.2.0
- old
+ new
@@ -1,10 +1,12 @@
-# Credy
+# Credy [![Build Status](https://travis-ci.org/TimPetricola/Credy.png?branch=master)](https://travis-ci.org/TimPetricola/Credy) [![Gem Version](https://badge.fury.io/rb/credy.png)](http://badge.fury.io/rb/credy) [![Code Climate](https://codeclimate.com/github/TimPetricola/Credy.png)](https://codeclimate.com/github/TimPetricola/Credy)
-A simple credit card generator.
+A simple credit card generator/validator.
+Need a valid credit card number to sign up on a site but you don't want to use your real card?
+Need to validate your customers credit card?
-## Functionnalities
+## Functionalities
* Generates a valid number (per country/type)
* Get information for a number
* Check validity of a number
## Installation
@@ -31,12 +33,12 @@
## Ruby usage
### Generate
``` ruby
options {
- :country => 'au',
- :type => 'mastercard'
+ country: 'au',
+ type: 'mastercard'
}
Credy::CreditCard.generate options
```
### Get informations
@@ -87,6 +89,6 @@
## Data source
All data is coming from the [Bank card number](http://en.wikipedia.org/wiki/Bank_card_number) page and the [List of Issuer Identification Numbers](http://en.wikipedia.org/wiki/List_of_Issuer_Identification_Numbers) on [Wikipedia](http://wikipedia.org). I do not assume the responsibility for wrong data.
## License
-Credy is released under the [MIT License](http://opensource.org/licenses/MIT).
\ No newline at end of file
+Credy is released under the [MIT License](http://opensource.org/licenses/MIT).