tax_cloud 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -10
- data/lib/tax_cloud/address.rb +3 -1
- data/lib/tax_cloud/version.rb +1 -1
- data/test/cassettes/verify_bad_address.yml +772 -769
- data/test/cassettes/verify_good_address_with_rdi.yml +1650 -0
- data/test/test_address.rb +15 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93176bbdc26f335664008acc9fc373b823e7d5797d6742aad450684a45ac975b
|
4
|
+
data.tar.gz: dc70ecb47b027054e9c212e82f5d70aac977a5589b5ed0b1c002bfc8d067fe97
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9e77a29fed2c1ff6c98d3745f85e48d381b4f5262e6112ee9aeecca95e08fc01f23080649aae71ba77467a9837e82f898465dadc75a5bee8ad95898acc67c59
|
7
|
+
data.tar.gz: e1164fad86256f0b35e7b82dde9a54e4cc518613d92072c3e34073bfc1ac7fe452fa472b9d3cc5a81988a85f96d7427cdceaa6500678c6753dd8ad0dfc0b4ec3
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
### 0.
|
1
|
+
### 0.6.0 (2023/12/15)
|
2
|
+
|
3
|
+
* Add Residential Delivery Indicator (rdi) to `TaxCloud::Address` on successful address verification - @nononoy.
|
4
|
+
|
5
|
+
### 0.5.0 (2023/7/21)
|
2
6
|
|
3
7
|
* Update README, CHANGELOG, and LICENSE from RDoc to Markdown -
|
4
8
|
@brchristian.
|
@@ -8,7 +12,7 @@
|
|
8
12
|
https://api.taxcloud.com/1.0/?wsdl - @mrmarcondes.
|
9
13
|
|
10
14
|
|
11
|
-
### 0.4.0 (12/7
|
15
|
+
### 0.4.0 (2020/12/7)
|
12
16
|
|
13
17
|
* Add `open_timeout` and `read_timeout` options into configuration -
|
14
18
|
@ka8725.
|
@@ -26,25 +30,25 @@
|
|
26
30
|
https://asmx.taxcloud.com/1.0/?wsdl - @brchristian.
|
27
31
|
|
28
32
|
|
29
|
-
### 0.3.0 (1/9
|
33
|
+
### 0.3.0 (2014/1/9)
|
30
34
|
|
31
35
|
* #19: Support Savon 2 - @drewtempelmeyer.
|
32
36
|
* Implemented Rubocop, Ruby style linter - @dblock.
|
33
37
|
* Ruby 1.8.7 and 1.9.2 are no longer supported - @dblock.
|
34
38
|
|
35
39
|
|
36
|
-
### 0.2.2 (4/29
|
40
|
+
### 0.2.2 (2013/4/29)
|
37
41
|
|
38
42
|
* Relaxed thirdparty gem dependency versions - @mperham.
|
39
43
|
|
40
44
|
|
41
|
-
### 0.2.1 (3/3
|
45
|
+
### 0.2.1 (2013/3/3)
|
42
46
|
|
43
47
|
* Fixed date formatting in API requests with localized applications -
|
44
48
|
@soulcutter.
|
45
49
|
|
46
50
|
|
47
|
-
### 0.2.0 (11/26
|
51
|
+
### 0.2.0 (2012/11/26)
|
48
52
|
|
49
53
|
* The gem is now licensed under the MIT license - @dblock.
|
50
54
|
* Raise specialized configuration and SOAP errors - @dblock.
|
@@ -61,25 +65,25 @@
|
|
61
65
|
`TaxCloud::TaxCodes` and `TaxCloud::TaxCode::Groups` - @dblock.
|
62
66
|
|
63
67
|
|
64
|
-
### 0.1.5 (5/9
|
68
|
+
### 0.1.5 (2012/5/9)
|
65
69
|
|
66
70
|
* Fixed compatibility with Ruby 1.8.7 and 1.9.3, removed super from
|
67
71
|
constructors for classes which inherit from `Object` - @gfmurphy.
|
68
72
|
|
69
73
|
|
70
|
-
### 0.1.4 (10/20
|
74
|
+
### 0.1.4 (2011/10/20)
|
71
75
|
|
72
76
|
* Upgraded rdoc - @drewtempelmeyer.
|
73
77
|
* Fixed `.gemspec` dependency declaration for savon - @drewtempelmeyer.
|
74
78
|
|
75
79
|
|
76
|
-
### 0.1.3 (9/19
|
80
|
+
### 0.1.3 (2011/9/19)
|
77
81
|
|
78
82
|
* Added support for the "returned" request - @danielmorrison.
|
79
83
|
* Refactoreted tests to use vcr and webmock - @danielmorrison.
|
80
84
|
|
81
85
|
|
82
|
-
### 0.1.0 (8/23
|
86
|
+
### 0.1.0 (2011/8/23)
|
83
87
|
|
84
88
|
* Initial public release - @drewtempelmeyer.
|
85
89
|
|
data/lib/tax_cloud/address.rb
CHANGED
@@ -5,7 +5,7 @@ module TaxCloud #:nodoc:
|
|
5
5
|
class Address < Record
|
6
6
|
# First line of address.
|
7
7
|
attr_accessor :address1
|
8
|
-
# Second line of
|
8
|
+
# Second line of address.
|
9
9
|
attr_accessor :address2
|
10
10
|
# City.
|
11
11
|
attr_accessor :city
|
@@ -15,6 +15,8 @@ module TaxCloud #:nodoc:
|
|
15
15
|
attr_accessor :zip5
|
16
16
|
# 4-digit Zip Code.
|
17
17
|
attr_accessor :zip4
|
18
|
+
# Residential delivery indicator
|
19
|
+
attr_accessor :rdi
|
18
20
|
|
19
21
|
# Verify this address.
|
20
22
|
#
|
data/lib/tax_cloud/version.rb
CHANGED