ncua 0.8.3 → 0.8.4
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 +4 -4
- data/.gitignore +1 -0
- data/README.md +1 -1
- data/lib/ncua/version.rb +1 -1
- data/ncua.gemspec +1 -0
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b66ae5fd48afbb1b8a73db423811db73488d6da0
|
|
4
|
+
data.tar.gz: 16fe66cfb72e1d320609b4d9a1899cddd7fc514a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a502b0426b462fd632f1c38229e75c3df6b4352845b149d9b857c423ca9c6e40f94cf237bdeee13c773470a6d3d8e59266b8931b2434696d376cf6379eabe7d6
|
|
7
|
+
data.tar.gz: 2894eb4ab0e2a7c261d501ce6204bb1aaa2ba40d692e030831c1a968e7337bd774fb105479fae3a8e94535cf6b4cffc6172d08de8c2911b2cc11676e4e22b0e9
|
data/.gitignore
CHANGED
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](http://badge.fury.io/rb/ncua)
|
|
5
5
|
# Ncua
|
|
6
6
|
|
|
7
|
-
The NCUA [lets you search for a credit union office](http://www.ncua.gov/NCUAMapping/Pages/NCUAGOVMapping.aspx) by name, address and charter number. Their site uses a JSON api behind their
|
|
7
|
+
The NCUA [lets you search for a credit union office](http://www.ncua.gov/NCUAMapping/Pages/NCUAGOVMapping.aspx) by name, address and charter number. Their site uses a JSON api behind their pages, to serve the data.
|
|
8
8
|
|
|
9
9
|
This gem is a ruby client to that API. It's totally unaffiliated with the NCUA.
|
|
10
10
|
It's open source, so anyone can use it, and anyone can help maintain it. At
|
data/lib/ncua/version.rb
CHANGED
data/ncua.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ncua
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tom Reznick
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-11-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|
|
@@ -86,6 +86,20 @@ dependencies:
|
|
|
86
86
|
- - "~>"
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
88
|
version: '3.0'
|
|
89
|
+
- !ruby/object:Gem::Dependency
|
|
90
|
+
name: byebug
|
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - "~>"
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '8.0'
|
|
96
|
+
type: :development
|
|
97
|
+
prerelease: false
|
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - "~>"
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: '8.0'
|
|
89
103
|
description: The NCUA recently started using asynchronous json requests in their Find
|
|
90
104
|
a Credit Union tool. We make that query-able from Ruby.
|
|
91
105
|
email:
|