smartystreets_ruby_sdk 5.11.1 → 5.13.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 +4 -4
- data/examples/us_autocomplete_pro_example.rb +1 -0
- data/examples/us_street_multiple_address_example.rb +1 -1
- data/examples/us_street_single_address_example.rb +1 -1
- data/lib/smartystreets_ruby_sdk/client_builder.rb +1 -1
- data/lib/smartystreets_ruby_sdk/us_autocomplete_pro/client.rb +1 -0
- data/lib/smartystreets_ruby_sdk/us_autocomplete_pro/lookup.rb +4 -2
- data/lib/smartystreets_ruby_sdk/us_street/analysis.rb +2 -3
- data/lib/smartystreets_ruby_sdk/us_street/match_type.rb +2 -1
- data/lib/smartystreets_ruby_sdk/version.rb +1 -1
- data/smartystreets_ruby_sdk.gemspec +2 -2
- metadata +11 -12
- data/examples/us_autocomplete_example.rb +0 -52
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 423a76efb5b1f719deb33c17e0a7799e9ed6a6e7b6b570a2ffb19d1fb5aa89d1
|
4
|
+
data.tar.gz: 6b307ac880704d629a735f3d32f0535e7cee3678ebef7db6611f01299c786b72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 509b66bf2ea805128a40c0603be38d283407015c9e179e2c635bad3b947efd228a287fd52959b24b80a7682c4ccadbd8e6b7f7750f04766d9b4a5cac42f8377d
|
7
|
+
data.tar.gz: 343069ee8fd58bea6f4c90bdf90baa5cd050456c0521d93f2fa43064ea04d1d524c3e027ec83dd14844dae66f04f62d74a85fd7c8cc806b4bbd5375fb7700c26
|
@@ -36,7 +36,7 @@ class USStreetMultipleAddressExample
|
|
36
36
|
batch[0].lastline = 'Mountain view, California'
|
37
37
|
batch[0].zipcode = '21229'
|
38
38
|
batch[0].candidates = 3
|
39
|
-
batch[0].match =
|
39
|
+
batch[0].match = Lookup.INVALID # "invalid" is the most permissive match,
|
40
40
|
# this will always return at least one result even if the address is invalid.
|
41
41
|
# Refer to the documentation for additional Match Strategy options.
|
42
42
|
|
@@ -34,7 +34,7 @@ class USStreetSingleAddressExample
|
|
34
34
|
lookup.state = 'CA'
|
35
35
|
lookup.zipcode = '21229'
|
36
36
|
lookup.candidates = 3
|
37
|
-
lookup.match =
|
37
|
+
lookup.match = Lookup.INVALID # "invalid" is the most permissive match,
|
38
38
|
# this will always return at least one result even if the address is invalid.
|
39
39
|
# Refer to the documentation for additional Match Strategy options.
|
40
40
|
|
@@ -125,7 +125,7 @@ module SmartyStreets
|
|
125
125
|
InternationalStreet::Client.new(build_sender, @serializer)
|
126
126
|
end
|
127
127
|
|
128
|
-
def build_us_autocomplete_api_client
|
128
|
+
def build_us_autocomplete_api_client # Deprecated
|
129
129
|
ensure_url_prefix_not_null(US_AUTOCOMPLETE_API_URL)
|
130
130
|
USAutocomplete::Client.new(build_sender, @serializer)
|
131
131
|
end
|
@@ -43,6 +43,7 @@ module SmartyStreets
|
|
43
43
|
add_parameter(request, 'prefer_states', build_filter_string(lookup.prefer_states))
|
44
44
|
add_parameter(request, 'prefer_zip_codes', build_filter_string(lookup.prefer_zip_codes))
|
45
45
|
add_parameter(request, 'prefer_ratio', lookup.prefer_ratio.to_s)
|
46
|
+
add_parameter(request, 'source', lookup.source)
|
46
47
|
if lookup.prefer_zip_codes or lookup.zip_filter
|
47
48
|
request.parameters['prefer_geolocation'] = GeolocationType::NONE
|
48
49
|
else
|
@@ -9,11 +9,12 @@ module SmartyStreets
|
|
9
9
|
class Lookup < JSONAble
|
10
10
|
|
11
11
|
attr_accessor :result, :search, :max_results, :city_filter, :state_filter, :zip_filter,
|
12
|
-
:exclude_states, :prefer_cities, :prefer_states, :prefer_zip_codes, :prefer_ratio,
|
12
|
+
:exclude_states, :prefer_cities, :prefer_states, :prefer_zip_codes, :prefer_ratio,
|
13
|
+
:prefer_geolocation, :selected, :source
|
13
14
|
|
14
15
|
def initialize(search=nil, max_results=nil, city_filter=nil, state_filter=nil, zip_filter=nil,
|
15
16
|
exclude_states=nil, prefer_cities=nil, prefer_states=nil, prefer_zips=nil, prefer_ratio=nil,
|
16
|
-
prefer_geolocation=nil, selected=nil)
|
17
|
+
prefer_geolocation=nil, selected=nil, source=nil)
|
17
18
|
@result = []
|
18
19
|
@search = search
|
19
20
|
@max_results = max_results
|
@@ -27,6 +28,7 @@ module SmartyStreets
|
|
27
28
|
@prefer_ratio = prefer_ratio
|
28
29
|
@prefer_geolocation = prefer_geolocation
|
29
30
|
@selected = selected
|
31
|
+
@source = source
|
30
32
|
end
|
31
33
|
|
32
34
|
def add_city_filter(city)
|
@@ -3,7 +3,7 @@ module SmartyStreets
|
|
3
3
|
# See "https://smartystreets.com/docs/cloud/us-street-api#analysis"
|
4
4
|
class Analysis
|
5
5
|
attr_reader :lacs_link_code, :active, :footnotes, :lacs_link_indicator, :dpv_match_code, :is_suite_link_match,
|
6
|
-
:is_ews_match, :dpv_footnotes, :cmra, :vacant, :no_stat, :
|
6
|
+
:is_ews_match, :dpv_footnotes, :cmra, :vacant, :no_stat, :enhanced_match
|
7
7
|
|
8
8
|
def initialize(obj)
|
9
9
|
@dpv_match_code = obj['dpv_match_code']
|
@@ -17,8 +17,7 @@ module SmartyStreets
|
|
17
17
|
@lacs_link_code = obj['lacslink_code']
|
18
18
|
@lacs_link_indicator = obj['lacslink_indicator']
|
19
19
|
@is_suite_link_match = obj['suitelink_match']
|
20
|
-
@
|
21
|
-
@match_details = obj['match_details']
|
20
|
+
@enhanced_match = obj['enhanced_match']
|
22
21
|
end
|
23
22
|
end
|
24
23
|
end
|
@@ -19,8 +19,8 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
20
20
|
spec.require_paths = ['lib']
|
21
21
|
|
22
|
-
spec.add_development_dependency 'bundler', '~>
|
23
|
-
spec.add_development_dependency 'rake', '~>
|
22
|
+
spec.add_development_dependency 'bundler', '~> 2.2.27'
|
23
|
+
spec.add_development_dependency 'rake', '~> 12.3.3'
|
24
24
|
spec.add_development_dependency 'minitest', '~> 5.8', '>= 5.8.3'
|
25
25
|
spec.add_development_dependency 'simplecov', '~> 0.12.0'
|
26
26
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: smartystreets_ruby_sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SmartyStreets SDK Team
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 2.2.27
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 2.2.27
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 12.3.3
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
40
|
+
version: 12.3.3
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: minitest
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -72,7 +72,7 @@ dependencies:
|
|
72
72
|
- - "~>"
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: 0.12.0
|
75
|
-
description:
|
75
|
+
description:
|
76
76
|
email:
|
77
77
|
- support@smartystreets.com
|
78
78
|
executables: []
|
@@ -91,7 +91,6 @@ files:
|
|
91
91
|
- bin/setup
|
92
92
|
- docker-compose.yml
|
93
93
|
- examples/international_example.rb
|
94
|
-
- examples/us_autocomplete_example.rb
|
95
94
|
- examples/us_autocomplete_pro_example.rb
|
96
95
|
- examples/us_extract_example.rb
|
97
96
|
- examples/us_reverse_geo_example.rb
|
@@ -175,7 +174,7 @@ homepage: https://github.com/smartystreets/smartystreets-ruby-sdk
|
|
175
174
|
licenses:
|
176
175
|
- Apache-2.0
|
177
176
|
metadata: {}
|
178
|
-
post_install_message:
|
177
|
+
post_install_message:
|
179
178
|
rdoc_options: []
|
180
179
|
require_paths:
|
181
180
|
- lib
|
@@ -190,8 +189,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
190
189
|
- !ruby/object:Gem::Version
|
191
190
|
version: '0'
|
192
191
|
requirements: []
|
193
|
-
rubygems_version: 3.
|
194
|
-
signing_key:
|
192
|
+
rubygems_version: 3.2.22
|
193
|
+
signing_key:
|
195
194
|
specification_version: 4
|
196
195
|
summary: An official library for the SmartyStreets APIs
|
197
196
|
test_files: []
|
@@ -1,52 +0,0 @@
|
|
1
|
-
require 'smartystreets_ruby_sdk/static_credentials'
|
2
|
-
require 'smartystreets_ruby_sdk/client_builder'
|
3
|
-
require 'smartystreets_ruby_sdk/us_autocomplete/lookup'
|
4
|
-
|
5
|
-
class USAutocompleteExample
|
6
|
-
Lookup = SmartyStreets::USAutocomplete::Lookup
|
7
|
-
|
8
|
-
def run
|
9
|
-
auth_id = 'Your SmartyStreets Auth ID here'
|
10
|
-
auth_token = 'Your SmartyStreets Auth Token here'
|
11
|
-
|
12
|
-
# We recommend storing your secret keys in environment variables instead---it's safer!
|
13
|
-
# auth_id = ENV['SMARTY_AUTH_ID']
|
14
|
-
# auth_token = ENV['SMARTY_AUTH_TOKEN']
|
15
|
-
|
16
|
-
credentials = SmartyStreets::StaticCredentials.new(auth_id, auth_token)
|
17
|
-
client = SmartyStreets::ClientBuilder.new(credentials).build_us_autocomplete_api_client
|
18
|
-
|
19
|
-
# Documentation for input fields can be found at:
|
20
|
-
# https://smartystreets.com/docs/cloud/us-autocomplete-api
|
21
|
-
|
22
|
-
lookup = Lookup.new('4770 Lincoln Ave O')
|
23
|
-
lookup.max_suggestions = 10
|
24
|
-
|
25
|
-
client.send(lookup)
|
26
|
-
|
27
|
-
puts '*** Result with no filter ***'
|
28
|
-
puts
|
29
|
-
lookup.result.each do |suggestion|
|
30
|
-
puts suggestion.text
|
31
|
-
end
|
32
|
-
|
33
|
-
lookup.add_city_filter('Ogden')
|
34
|
-
lookup.add_state_filter('IL')
|
35
|
-
lookup.add_prefer('Ogden, IL')
|
36
|
-
lookup.max_suggestions = 5
|
37
|
-
lookup.prefer_ratio = 0.333333
|
38
|
-
|
39
|
-
suggestions = client.send(lookup) # The client will also return the suggestions directly
|
40
|
-
|
41
|
-
puts
|
42
|
-
puts '*** Result with some filters ***'
|
43
|
-
puts
|
44
|
-
|
45
|
-
suggestions.each do |suggestion|
|
46
|
-
puts suggestion.text
|
47
|
-
end
|
48
|
-
|
49
|
-
end
|
50
|
-
end
|
51
|
-
|
52
|
-
USAutocompleteExample.new.run
|