binlist 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -4
  3. data/lib/binlist/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1b2a9440ae52daa6ed68aa87c5759072be49aee5
4
- data.tar.gz: a0674505c473a87b36a2201999fbaa054bb502e2
3
+ metadata.gz: 7a29e68115494bc87b56419f400ee22e283bc25b
4
+ data.tar.gz: 7d41e7dbcd21a59adaee2b67903db67d5c5e00ff
5
5
  SHA512:
6
- metadata.gz: b4da37535871d1e9f75447a1a36ae77b66dbe86a935308094e6c1f304ac14503a4884aa2f8602fcb9c41bd806e29761c85ffd2ae915ba1a541929fd78a5f2476
7
- data.tar.gz: a3ce72231be00d71fff6cb06b9196bc4329cd8c1fbd3b8f196418d23d2e7811e70b70bd4e6ac5bf22a7a1861812fffd87f1776f41d9b022e6c2173f05ab506ba
6
+ metadata.gz: 524253aa91d7ba9d8df07c3051ccdb8a86edfef72b6c54355adb6fbd9209d9c76e4a4d5dd5e4c73de6e9d0b744d0b0e5e17175b1743ccdd7fb9aa2885cf0e406
7
+ data.tar.gz: 25182ad964e20e8f9b0cea89e564bc7602818d727cb2e355b51151d9f7a94a2a080f7dd59150b500c0ed24baff1a2f5f8bf13518fec40bea47857549d0441c3a
data/README.md CHANGED
@@ -1,8 +1,11 @@
1
1
  # Binlist
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/binlist`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ Binlist is a simple gem for searching Issuer Identification Numbers (IIN). The first 6 digits of a credit card number are known as the Issuer Identification Number (IIN), previously known as Bank Identification Number (BIN). These identify the institution that issued the card to the card holder.
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
5
+ This gem queries [Binlist.net](http://Binlist.net) public REST api.
6
+
7
+ ### Limits
8
+ Due to the high volume of queries [Binlist.net](http://Binlist.net) has implemented a throttling mechanism, which allows at most 10,000 queries per hour. After reaching this hourly quota, all your requests result in HTTP 403 (Forbidden) until it clears up on the next roll over.
6
9
 
7
10
  ## Installation
8
11
 
@@ -22,7 +25,7 @@ Or install it yourself as:
22
25
 
23
26
  ## Usage
24
27
 
25
- TODO: Write usage instructions here
28
+ Binlist.find(######)
26
29
 
27
30
  ## Development
28
31
 
@@ -32,7 +35,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
32
35
 
33
36
  ## Contributing
34
37
 
35
- 1. Fork it ( https://github.com/[my-github-username]/binlist/fork )
38
+ 1. Fork it ( https://github.com/CodeHaven9ja/binlist/fork )
36
39
  2. Create your feature branch (`git checkout -b my-new-feature`)
37
40
  3. Commit your changes (`git commit -am 'Add some feature'`)
38
41
  4. Push to the branch (`git push origin my-new-feature`)
@@ -1,3 +1,3 @@
1
1
  module Binlist
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: binlist
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thompson Edolo