bigbrother 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/README.md +12 -2
  2. data/lib/bigbrother.rb +1 -1
  3. metadata +1 -1
data/README.md CHANGED
@@ -3,15 +3,25 @@ Big Brother
3
3
 
4
4
  Big Brother allows you to validate routing numbers.
5
5
 
6
+ According to Wikipedia, "[a] routing transit number (RTN) is a nine digit bank code, used in the United States, which appears on the bottom of negotiable instruments such as checks identifying the financial institution on which it was drawn. This code was designed to facilitate the sorting, bundling, and shipment of paper checks back to the drawer's (check writer's) account."
7
+
6
8
  ## INSTALL
7
9
 
8
10
  ```
9
- $ gem install big_brother
11
+ $ gem install bigbrother
10
12
  ```
11
13
 
12
14
  ## USAGE
13
15
 
14
16
  ```ruby
15
17
  "111222333".routing_number?
16
- ```
18
+ => false
17
19
 
20
+ "111900659".routing_info
21
+ => {:routing_number=>"111900659",
22
+ :name=>"WELLS FARGO BANK",
23
+ :address=>"255 2ND AVE SOUTH",
24
+ :city=>"MINNEAPOLIS",
25
+ :state=>"MN",
26
+ :zip=>"55479-0000"}
27
+ ```
@@ -6,7 +6,7 @@ require "bigbrother/extensions/string"
6
6
  module BigBrother
7
7
  extend self
8
8
 
9
- VERSION = "0.0.2"
9
+ VERSION = "0.0.3"
10
10
 
11
11
  NUMBERS = CSV.read(File.join(File.dirname(__FILE__), "..", "numbers.csv"))
12
12
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bigbrother
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: