bank_routing 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -1
- data/README.md +8 -9
- data/bank_routing.gemspec +1 -1
- data/lib/bank_routing/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f8d4d7966d9b0ce6a332d49403c16ca9033988b6
|
4
|
+
data.tar.gz: 9f61647e54d25cb68de85fab6908f4e4d76f950a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2963343a2f6b4ea668965a5c761031d7f8231ca98de7461a2832b3881fde534af4f4bed608997334500ab3daf455f86ce62b04cf02e8dd3e964fddbc523a6b4a
|
7
|
+
data.tar.gz: eda85372d0c7ee7320ceeec1a951b6040f4867d834e5529bece9911ed259d30d22583d3e917074860192c67231bd812d68979dfab44de57495e7faa2387faa75
|
data/LICENSE.txt
CHANGED
@@ -1 +1,21 @@
|
|
1
|
-
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2013-2014 Cozy Services Ltd.
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
CHANGED
@@ -1,20 +1,19 @@
|
|
1
1
|
# bank_routing
|
2
2
|
|
3
|
-
* [Homepage](https://
|
3
|
+
* [Homepage](https://github.com/cozy-oss/bank_routing)
|
4
4
|
* [Documentation](http://rubydoc.info/gems/bank_routing/frames)
|
5
5
|
* [Email](mailto:oss at cozy.co)
|
6
6
|
|
7
7
|
## Description
|
8
8
|
|
9
|
-
|
9
|
+
Getting information about bank routing numbers is a huge pain. The authoritative source for this information is the Federal Reserve, and they only offer this information in a size-delimited text file available from their web site (that, by the way, has an iffy SSL certificate). This gem allows access to all of that information, plus a bunch of translations (mostly prettifying bank names) and extra metadata about the numbers and their corresponding institutions. This is an ongoing effort, and contributions are encouraged either in the code or in the JSON-encoded mapping and metadata files included in this repository.
|
10
10
|
|
11
|
-
##
|
11
|
+
## Example
|
12
12
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
## Requirements
|
13
|
+
```ruby
|
14
|
+
require 'bank_routing'
|
15
|
+
RoutingNumber.get(121000358)["name"] # => "Bank of America"
|
16
|
+
```
|
18
17
|
|
19
18
|
## Install
|
20
19
|
|
@@ -22,6 +21,6 @@ TODO: Description
|
|
22
21
|
|
23
22
|
## Copyright
|
24
23
|
|
25
|
-
Copyright (c) 2014
|
24
|
+
Copyright (c) 2014 Cozy Services Ltd.
|
26
25
|
|
27
26
|
See {file:LICENSE.txt} for details.
|
data/bank_routing.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
|
|
10
10
|
gem.license = "MIT"
|
11
11
|
gem.authors = ["Cozy"]
|
12
12
|
gem.email = "oss@cozy.co"
|
13
|
-
gem.homepage = "https://
|
13
|
+
gem.homepage = "https://github.com/cozy-oss/bank_routing"
|
14
14
|
|
15
15
|
gem.files = `git ls-files`.split($/)
|
16
16
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/lib/bank_routing/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bank_routing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cozy
|
@@ -134,7 +134,7 @@ files:
|
|
134
134
|
- lib/bank_routing/version.rb
|
135
135
|
- spec/bank_routing_spec.rb
|
136
136
|
- spec/spec_helper.rb
|
137
|
-
homepage: https://
|
137
|
+
homepage: https://github.com/cozy-oss/bank_routing
|
138
138
|
licenses:
|
139
139
|
- MIT
|
140
140
|
metadata: {}
|