README.md in moeffju-luhn-0.1.0 vs README.md in moeffju-luhn-0.1.1

- old
+ new

@@ -4,18 +4,22 @@ ## Installation Add this line to your application's Gemfile: - gem 'luhn', :git => 'git://github.com/moeffju/luhn.git' + gem 'moeffju-luhn', :require => 'luhn' And then execute: $ bundle -If you're not using bundler, you will have to build the gem from source. +Or install it yourself as: + $ gem install moeffju-luhn + +The gem's name is 'luhn', so you need to `require luhn`. + ## Usage `Fixnum`: ``` @@ -31,10 +35,10 @@ And for `String`s: ``` '4 10041064 8'.luhn? #=> true '4 10041064'.luhn #=> "8" -'4 10041064'.luhn! #=> "4 100410648" +'4 10041064'.luhn! #=> "4100410648" ``` ## Contributing 1. Fork it