addressfinder 1.6.2 → 1.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/CHANGELOG.md +19 -0
- data/Dockerfile +28 -0
- data/Guardfile +1 -1
- data/LICENSE.md +15 -0
- data/README.md +42 -5
- data/addressfinder.gemspec +5 -5
- data/docker-compose.yml +11 -0
- data/lib/addressfinder/address_autocomplete.rb +77 -0
- data/lib/addressfinder/bulk.rb +18 -6
- data/lib/addressfinder/configuration.rb +2 -0
- data/lib/addressfinder/v2/au/verification.rb +96 -0
- data/lib/addressfinder/{cleanse.rb → verification.rb} +28 -8
- data/lib/addressfinder/version.rb +1 -1
- data/lib/addressfinder.rb +18 -4
- data/spec/lib/addressfinder/address_autocomplete_spec.rb +95 -0
- data/spec/lib/addressfinder/bulk_spec.rb +64 -6
- data/spec/lib/addressfinder/v2/au/verification_spec.rb +187 -0
- data/spec/lib/addressfinder/{cleanse_spec.rb → verification_spec.rb} +20 -20
- data/spec/lib/addressfinder_spec.rb +64 -0
- data/spec/spec_helper.rb +3 -0
- metadata +24 -12
- data/LICENSE +0 -22
metadata
CHANGED
@@ -1,17 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: addressfinder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nigel Ramsay
|
8
8
|
- Naiki Pohe
|
9
9
|
- Sean Arnold
|
10
10
|
- Alexandre Barret
|
11
|
+
- Cassandre Guinut
|
11
12
|
autorequire:
|
12
13
|
bindir: bin
|
13
14
|
cert_chain: []
|
14
|
-
date:
|
15
|
+
date: 2021-10-28 00:00:00.000000000 Z
|
15
16
|
dependencies:
|
16
17
|
- !ruby/object:Gem::Dependency
|
17
18
|
name: multi_json
|
@@ -61,14 +62,14 @@ dependencies:
|
|
61
62
|
requirements:
|
62
63
|
- - "~>"
|
63
64
|
- !ruby/object:Gem::Version
|
64
|
-
version: '
|
65
|
+
version: '13.0'
|
65
66
|
type: :development
|
66
67
|
prerelease: false
|
67
68
|
version_requirements: !ruby/object:Gem::Requirement
|
68
69
|
requirements:
|
69
70
|
- - "~>"
|
70
71
|
- !ruby/object:Gem::Version
|
71
|
-
version: '
|
72
|
+
version: '13.0'
|
72
73
|
- !ruby/object:Gem::Dependency
|
73
74
|
name: webmock
|
74
75
|
requirement: !ruby/object:Gem::Requirement
|
@@ -89,20 +90,21 @@ dependencies:
|
|
89
90
|
requirements:
|
90
91
|
- - "~>"
|
91
92
|
- !ruby/object:Gem::Version
|
92
|
-
version: 3.
|
93
|
+
version: '3.2'
|
93
94
|
type: :development
|
94
95
|
prerelease: false
|
95
96
|
version_requirements: !ruby/object:Gem::Requirement
|
96
97
|
requirements:
|
97
98
|
- - "~>"
|
98
99
|
- !ruby/object:Gem::Version
|
99
|
-
version: 3.
|
100
|
+
version: '3.2'
|
100
101
|
description: Ruby client library for AddressFinder
|
101
102
|
email:
|
102
|
-
- nigel.ramsay@
|
103
|
+
- nigel.ramsay@addressfinder.nz
|
103
104
|
- naiki.pohe@abletech.co.nz
|
104
105
|
- seanarnie@gmail.com
|
105
106
|
- alex@abletech.nz
|
107
|
+
- cassandre.guinut@addressfinder.nz
|
106
108
|
executables: []
|
107
109
|
extensions: []
|
108
110
|
extra_rdoc_files: []
|
@@ -110,33 +112,40 @@ files:
|
|
110
112
|
- ".gitignore"
|
111
113
|
- ".travis.yml"
|
112
114
|
- CHANGELOG.md
|
115
|
+
- Dockerfile
|
113
116
|
- Gemfile
|
114
117
|
- Guardfile
|
115
|
-
- LICENSE
|
118
|
+
- LICENSE.md
|
116
119
|
- README.md
|
117
120
|
- Rakefile
|
118
121
|
- addressfinder.gemspec
|
122
|
+
- docker-compose.yml
|
119
123
|
- lib/addressfinder.rb
|
124
|
+
- lib/addressfinder/address_autocomplete.rb
|
120
125
|
- lib/addressfinder/address_info.rb
|
121
126
|
- lib/addressfinder/address_search.rb
|
122
127
|
- lib/addressfinder/bulk.rb
|
123
|
-
- lib/addressfinder/cleanse.rb
|
124
128
|
- lib/addressfinder/configuration.rb
|
125
129
|
- lib/addressfinder/errors.rb
|
126
130
|
- lib/addressfinder/http.rb
|
127
131
|
- lib/addressfinder/location_info.rb
|
128
132
|
- lib/addressfinder/location_search.rb
|
129
133
|
- lib/addressfinder/util.rb
|
134
|
+
- lib/addressfinder/v2/au/verification.rb
|
135
|
+
- lib/addressfinder/verification.rb
|
130
136
|
- lib/addressfinder/version.rb
|
137
|
+
- spec/lib/addressfinder/address_autocomplete_spec.rb
|
131
138
|
- spec/lib/addressfinder/address_info_spec.rb
|
132
139
|
- spec/lib/addressfinder/address_search_spec.rb
|
133
140
|
- spec/lib/addressfinder/bulk_spec.rb
|
134
|
-
- spec/lib/addressfinder/cleanse_spec.rb
|
135
141
|
- spec/lib/addressfinder/location_info_spec.rb
|
136
142
|
- spec/lib/addressfinder/location_search_spec.rb
|
137
143
|
- spec/lib/addressfinder/util_spec.rb
|
144
|
+
- spec/lib/addressfinder/v2/au/verification_spec.rb
|
145
|
+
- spec/lib/addressfinder/verification_spec.rb
|
146
|
+
- spec/lib/addressfinder_spec.rb
|
138
147
|
- spec/spec_helper.rb
|
139
|
-
homepage: https://github.com/
|
148
|
+
homepage: https://github.com/AddressFinder/addressfinder-ruby
|
140
149
|
licenses:
|
141
150
|
- MIT
|
142
151
|
metadata: {}
|
@@ -160,11 +169,14 @@ signing_key:
|
|
160
169
|
specification_version: 4
|
161
170
|
summary: Provides easy access to AddressFinder APIs
|
162
171
|
test_files:
|
172
|
+
- spec/lib/addressfinder/address_autocomplete_spec.rb
|
163
173
|
- spec/lib/addressfinder/address_info_spec.rb
|
164
174
|
- spec/lib/addressfinder/address_search_spec.rb
|
165
175
|
- spec/lib/addressfinder/bulk_spec.rb
|
166
|
-
- spec/lib/addressfinder/cleanse_spec.rb
|
167
176
|
- spec/lib/addressfinder/location_info_spec.rb
|
168
177
|
- spec/lib/addressfinder/location_search_spec.rb
|
169
178
|
- spec/lib/addressfinder/util_spec.rb
|
179
|
+
- spec/lib/addressfinder/v2/au/verification_spec.rb
|
180
|
+
- spec/lib/addressfinder/verification_spec.rb
|
181
|
+
- spec/lib/addressfinder_spec.rb
|
170
182
|
- spec/spec_helper.rb
|
data/LICENSE
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
The MIT License (MIT)
|
2
|
-
|
3
|
-
Copyright (c) 2015 Abletech
|
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 all
|
13
|
-
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 THE
|
21
|
-
SOFTWARE.
|
22
|
-
|