smartystreets_ruby_sdk 5.12.0 → 5.12.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: da99735aec7ae0ebd2254ce761a20249da0624bf0bf532b4e27e131a52b88096
4
- data.tar.gz: 04ccfdc4e56bec3816863d02527895410697cbfc0a7828b98ff9bd716dee5ffb
3
+ metadata.gz: c9b875a25fbdd31a426fa6fdfb61dfc62d2fce2c8a1e5b9baebf6933076bf77b
4
+ data.tar.gz: 9aab93b22abe5671ed4a63e0482f44a995e1871e3ad02459d10e53f40eb2107c
5
5
  SHA512:
6
- metadata.gz: bf1b020b085b484eb6278e497c20511282edb8c75fc9251e77723256a7920d58b464213f28e40947dcdec6c9599203f37f1d9a3dca9d471e9e3ff993bd8de104
7
- data.tar.gz: e2cdab76c3838bc7d85c712218e4111c4f528d9133a933a688a2623865be162051f03c23d2f66d9e44ec5e13bdc18fbe64c1d642ca11d15b544389cf6b222ca0
6
+ metadata.gz: 9ad7fd90449fcea0eb99a810366f4f428295b0e14e54e30af98cd3935206bd9dfdad4e8e31667f434a7ccefb4422a5299133189822ee4c8bee264d5a1a147e4f
7
+ data.tar.gz: 2ccab08012c1ce1c88100353e908d5c83c3a6d4831fc9705e6b5ce035553ec05652cc6fc3973166897dc221b7c5ad3fb411d689d529eff11caa37e38876959fa
@@ -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
@@ -1,3 +1,3 @@
1
1
  module SmartyStreets
2
- VERSION = '5.12.0' # DO NOT EDIT (this is updated by a build job when a new release is published)
2
+ VERSION = '5.12.1' # DO NOT EDIT (this is updated by a build job when a new release is published)
3
3
  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.12.0
4
+ version: 5.12.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - SmartyStreets SDK Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-07-14 00:00:00.000000000 Z
11
+ date: 2021-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -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
@@ -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