smartystreets_ruby_sdk 5.6.0 → 5.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 794413a1e06521762ba503facba2cb26a1c3ca7394611d2fe1aebc48d57720d4
4
- data.tar.gz: dee93752476e4fd1c7ef53795ecddd497a7d02bae3cef58c001f9df139052cc0
3
+ metadata.gz: 562e4d2d37f46d2592eae5ac521e40ee3b6bf4c022cb0609e4896d4830738bef
4
+ data.tar.gz: 15fc03288952c328009e2e350c7f230718fc07a54418ede39fa8af4e99a33fe3
5
5
  SHA512:
6
- metadata.gz: f817be4207343dee1d4fe04afc4c2619d6b571feafb16d09dea1e5173dfb58cac6017fbed9b892b7cb676712a8c69cc521577ee60ca647dcbe43db18f6079d5a
7
- data.tar.gz: b030694e778f413b5e5018968638fed3d4f0f963ea23a580a6deca8f6b54e7ea6cb881323cc729ddcab42f897722cb9d21b685f49a9b0166124043c7f2733082
6
+ metadata.gz: 1fb664e4a742e0932c75392b025a18d7882e6d6ebf0a0fb8ea18dfd60f1af4d4e69b72958a38b0a2a067e8e584ff5f18991f9f1230c31fbf95e4de7284d07c97
7
+ data.tar.gz: 3da356a403a73be5aae78d36dc9d242946e67cb4e49f05f5599a139ff23d1e83404b632db8823dc4dc3b30c081bebea5372bd46e593fe2b11f99dc2638eb66f2
data/CHANGELOG.md CHANGED
@@ -1,29 +1,5 @@
1
1
  # Changelog
2
2
 
3
- All notable changes to this project will be documented in this file.
3
+ See the changelog repository:
4
4
 
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
-
7
-
8
- ## [Unreleased]
9
-
10
- ### Changed:
11
-
12
- - Using `warn` instead of `log` to avoid conflict with builtin function.
13
-
14
- ## [5.5.4] - 2018-09-18
15
-
16
- ### Changed:
17
-
18
- - Standardized `Makefile`.
19
-
20
-
21
- ## [Earlier]
22
-
23
- For details on earlier changes, please see the [releases listing](https://github.com/smartystreets/smartystreets-ruby-sdk/releases).
24
-
25
- ------------
26
-
27
- [Unreleased]: https://github.com/smartystreets/smartystreets-ruby-sdk/compare/5.5.4...HEAD
28
- [5.5.4]: https://github.com/smartystreets/smartystreets-ruby-sdk/compare/5.5.3...5.5.4
29
- [Earlier]: https://github.com/smartystreets/smartystreets-ruby-sdk/releases
5
+ github.com/smartystreets/changelog/blob/master/sdk/ruby.md
@@ -23,6 +23,7 @@ class USStreetMultipleAddressExample
23
23
  batch[0].street = '1600 amphitheatre parkway'
24
24
  batch[0].city = 'Mountain view'
25
25
  batch[0].state = 'california'
26
+ batch[0].match = SmartyStreets::USStreet::MatchType::INVALID
26
27
 
27
28
  batch.add(Lookup.new('1 Rosedale, Baltimore, Maryland')) # Freeform addresses work too.
28
29
  batch[1].candidates = 10 # Allows up to ten possible matches to be returned (default is 1).
@@ -21,6 +21,7 @@ class USStreetSingleAddressExample
21
21
  lookup.street = '1600 Amphitheatre Pkwy'
22
22
  lookup.city = 'Mountain View'
23
23
  lookup.state = 'CA'
24
+ lookup.match = SmartyStreets::USStreet::MatchType::INVALID
24
25
 
25
26
  begin
26
27
  client.send_lookup(lookup)
@@ -11,7 +11,7 @@ module SmartyStreets
11
11
  @cmra = obj['dpv_cmra']
12
12
  @vacant = obj['dpv_vacant']
13
13
  @active = obj['active']
14
- @is_ews_match = "Deprecated, refer to metadata.is_ews_match"
14
+ @is_ews_match = obj['ews_match']
15
15
  @footnotes = obj['footnotes']
16
16
  @lacs_link_code = obj['lacslink_code']
17
17
  @lacs_link_indicator = obj['lacslink_indicator']
@@ -1,3 +1,3 @@
1
1
  module SmartyStreets
2
- VERSION = '5.6.0' # DO NOT EDIT (this is updated by a build job when a new release is published)
2
+ VERSION = '5.6.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.6.0
4
+ version: 5.6.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: 2019-02-25 00:00:00.000000000 Z
11
+ date: 2019-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler