frb-participants 0.1.0
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.
- checksums.yaml +7 -0
- data/.gitignore +50 -0
- data/.rspec +3 -0
- data/.ruby-version +1 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +84 -0
- data/LICENSE +21 -0
- data/README.md +108 -0
- data/bin/console +14 -0
- data/bin/fedach-parse.rb +67 -0
- data/bin/fedwire-parse.rb +43 -0
- data/bin/normalize-names.rb +47 -0
- data/data/fedach-participants.json +263356 -0
- data/data/fedach-participants.yml +244544 -0
- data/data/fedwire-participants.json +80622 -0
- data/data/fedwire-participants.yml +72559 -0
- data/data/manually-normalized-institution-names.yml +87 -0
- data/data/plaid-institution-names.json +1851 -0
- data/data/plaid-institution-names.yml +1850 -0
- data/frb-participants.gemspec +33 -0
- data/lib/frb-participants.rb +12 -0
- data/lib/frb-participants/data.rb +14 -0
- data/lib/frb-participants/models/fedach_participant.rb +7 -0
- data/lib/frb-participants/models/fedwire_participant.rb +7 -0
- data/lib/frb-participants/models/institution_name.rb +27 -0
- data/lib/frb-participants/models/participant.rb +28 -0
- data/lib/frb-participants/version.rb +3 -0
- data/vendor/FedACHdir.txt +18811 -0
- data/vendor/fpddir.txt +8062 -0
- data/vendor/test-fedach.txt +8 -0
- data/vendor/test-fedwire.txt +4 -0
- metadata +186 -0
@@ -0,0 +1,8 @@
|
|
1
|
+
325182690O1210003741121109000000000NUMERICA CREDIT UNION 14610 EAST SPRAGUE AVENUE SPOKANE VALLEY WA992160000800433183711
|
2
|
+
325182700O1210003741101901000000000SPOKANE TEACHERS CREDIT UNION 1620 N. SIGNAL DRIVE LIBERTY LAKE WA990199517800858375011
|
3
|
+
325182726O1210003741060314000000000PRIMESOURCE CREDIT UNION PO BOX 48275 SPOKANE WA992281275509232890411
|
4
|
+
325182755O1210003741070912000000000HORIZON CREDIT UNION PO BOX 15128 SPOKANE WA992150000509928649411
|
5
|
+
325182771O1210003741061714000000000AVISTA CORP CREDIT UNION PO BOX 3727 SPOKANE WA992200000509495234511
|
6
|
+
325182797O1210003741070912000000000HORIZON CREDIT UNION PO BOX 15128 SPOKANE WA992150000509928649411
|
7
|
+
325182836O1210003741102299000000000LOWER VALLEY CU P.O.BOX 479 SUNNYSIDE WA989440000509837529511
|
8
|
+
325182849O1210003741060313000000000AMERICAN LAKE CREDIT UNION PO BOX 98979 LAKEWOOD WA984960000253584007911
|
metadata
ADDED
@@ -0,0 +1,186 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: frb-participants
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Peter Graham
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-04-18 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activesupport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.13'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.13'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec-its
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '1.2'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '1.2'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: neatjson
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0.8'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0.8'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rest-client
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '2.0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '2.0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: pry
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0.10'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0.10'
|
125
|
+
description: Rubygem for querying Federal Reserve Banks' Fedwire & FedACH participants
|
126
|
+
email:
|
127
|
+
- peter@wealthsimple.com
|
128
|
+
executables: []
|
129
|
+
extensions: []
|
130
|
+
extra_rdoc_files: []
|
131
|
+
files:
|
132
|
+
- ".gitignore"
|
133
|
+
- ".rspec"
|
134
|
+
- ".ruby-version"
|
135
|
+
- Gemfile
|
136
|
+
- Gemfile.lock
|
137
|
+
- LICENSE
|
138
|
+
- README.md
|
139
|
+
- bin/console
|
140
|
+
- bin/fedach-parse.rb
|
141
|
+
- bin/fedwire-parse.rb
|
142
|
+
- bin/normalize-names.rb
|
143
|
+
- data/fedach-participants.json
|
144
|
+
- data/fedach-participants.yml
|
145
|
+
- data/fedwire-participants.json
|
146
|
+
- data/fedwire-participants.yml
|
147
|
+
- data/manually-normalized-institution-names.yml
|
148
|
+
- data/plaid-institution-names.json
|
149
|
+
- data/plaid-institution-names.yml
|
150
|
+
- frb-participants.gemspec
|
151
|
+
- lib/frb-participants.rb
|
152
|
+
- lib/frb-participants/data.rb
|
153
|
+
- lib/frb-participants/models/fedach_participant.rb
|
154
|
+
- lib/frb-participants/models/fedwire_participant.rb
|
155
|
+
- lib/frb-participants/models/institution_name.rb
|
156
|
+
- lib/frb-participants/models/participant.rb
|
157
|
+
- lib/frb-participants/version.rb
|
158
|
+
- vendor/FedACHdir.txt
|
159
|
+
- vendor/fpddir.txt
|
160
|
+
- vendor/test-fedach.txt
|
161
|
+
- vendor/test-fedwire.txt
|
162
|
+
homepage: https://github.com/wealthsimple/frb-participants
|
163
|
+
licenses:
|
164
|
+
- MIT
|
165
|
+
metadata: {}
|
166
|
+
post_install_message:
|
167
|
+
rdoc_options: []
|
168
|
+
require_paths:
|
169
|
+
- lib
|
170
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
171
|
+
requirements:
|
172
|
+
- - ">="
|
173
|
+
- !ruby/object:Gem::Version
|
174
|
+
version: '0'
|
175
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
176
|
+
requirements:
|
177
|
+
- - ">="
|
178
|
+
- !ruby/object:Gem::Version
|
179
|
+
version: '0'
|
180
|
+
requirements: []
|
181
|
+
rubyforge_project:
|
182
|
+
rubygems_version: 2.5.2
|
183
|
+
signing_key:
|
184
|
+
specification_version: 4
|
185
|
+
summary: Rubygem for Federal Reserve Banks' Fedwire & FedACH participants
|
186
|
+
test_files: []
|