avatax 14.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +191 -0
- data/README.md +60 -0
- data/lib/avatax.rb +20 -0
- data/lib/avatax/address_service.rb +31 -0
- data/lib/avatax/configuration.rb +29 -0
- data/lib/avatax/tax_service.rb +61 -0
- metadata +93 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 3736689d2d8927f029e447408ee98d02b0aabd71
|
4
|
+
data.tar.gz: 12f35a4c17e68dc07d5db16149563dba452882dd
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 4abca3a479c296590de269d39e6bdd36c0934baf3c8dda00269138318426758d122ebab67a55a988d79ad598fad9a121ec56652b0ebbecf96c57a161c8a815d7
|
7
|
+
data.tar.gz: 43a9e9c5f5590c39bac0912c2ccefff39cc9fc491f0c074eac96144eefc0cec8c94ebfa83c490ac5eff699981f129e3187ab3d5af752394b4fbbc6266a2c353e
|
data/LICENSE
ADDED
@@ -0,0 +1,191 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction, and
|
10
|
+
distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by the copyright
|
13
|
+
owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all other entities
|
16
|
+
that control, are controlled by, or are under common control with that entity.
|
17
|
+
For the purposes of this definition, "control" means (i) the power, direct or
|
18
|
+
indirect, to cause the direction or management of such entity, whether by
|
19
|
+
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
20
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
21
|
+
|
22
|
+
"You" (or "Your") shall mean an individual or Legal Entity exercising
|
23
|
+
permissions granted by this License.
|
24
|
+
|
25
|
+
"Source" form shall mean the preferred form for making modifications, including
|
26
|
+
but not limited to software source code, documentation source, and configuration
|
27
|
+
files.
|
28
|
+
|
29
|
+
"Object" form shall mean any form resulting from mechanical transformation or
|
30
|
+
translation of a Source form, including but not limited to compiled object code,
|
31
|
+
generated documentation, and conversions to other media types.
|
32
|
+
|
33
|
+
"Work" shall mean the work of authorship, whether in Source or Object form, made
|
34
|
+
available under the License, as indicated by a copyright notice that is included
|
35
|
+
in or attached to the work (an example is provided in the Appendix below).
|
36
|
+
|
37
|
+
"Derivative Works" shall mean any work, whether in Source or Object form, that
|
38
|
+
is based on (or derived from) the Work and for which the editorial revisions,
|
39
|
+
annotations, elaborations, or other modifications represent, as a whole, an
|
40
|
+
original work of authorship. For the purposes of this License, Derivative Works
|
41
|
+
shall not include works that remain separable from, or merely link (or bind by
|
42
|
+
name) to the interfaces of, the Work and Derivative Works thereof.
|
43
|
+
|
44
|
+
"Contribution" shall mean any work of authorship, including the original version
|
45
|
+
of the Work and any modifications or additions to that Work or Derivative Works
|
46
|
+
thereof, that is intentionally submitted to Licensor for inclusion in the Work
|
47
|
+
by the copyright owner or by an individual or Legal Entity authorized to submit
|
48
|
+
on behalf of the copyright owner. For the purposes of this definition,
|
49
|
+
"submitted" means any form of electronic, verbal, or written communication sent
|
50
|
+
to the Licensor or its representatives, including but not limited to
|
51
|
+
communication on electronic mailing lists, source code control systems, and
|
52
|
+
issue tracking systems that are managed by, or on behalf of, the Licensor for
|
53
|
+
the purpose of discussing and improving the Work, but excluding communication
|
54
|
+
that is conspicuously marked or otherwise designated in writing by the copyright
|
55
|
+
owner as "Not a Contribution."
|
56
|
+
|
57
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf
|
58
|
+
of whom a Contribution has been received by Licensor and subsequently
|
59
|
+
incorporated within the Work.
|
60
|
+
|
61
|
+
2. Grant of Copyright License.
|
62
|
+
|
63
|
+
Subject to the terms and conditions of this License, each Contributor hereby
|
64
|
+
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
|
65
|
+
irrevocable copyright license to reproduce, prepare Derivative Works of,
|
66
|
+
publicly display, publicly perform, sublicense, and distribute the Work and such
|
67
|
+
Derivative Works in Source or Object form.
|
68
|
+
|
69
|
+
3. Grant of Patent License.
|
70
|
+
|
71
|
+
Subject to the terms and conditions of this License, each Contributor hereby
|
72
|
+
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
|
73
|
+
irrevocable (except as stated in this section) patent license to make, have
|
74
|
+
made, use, offer to sell, sell, import, and otherwise transfer the Work, where
|
75
|
+
such license applies only to those patent claims licensable by such Contributor
|
76
|
+
that are necessarily infringed by their Contribution(s) alone or by combination
|
77
|
+
of their Contribution(s) with the Work to which such Contribution(s) was
|
78
|
+
submitted. If You institute patent litigation against any entity (including a
|
79
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work or a
|
80
|
+
Contribution incorporated within the Work constitutes direct or contributory
|
81
|
+
patent infringement, then any patent licenses granted to You under this License
|
82
|
+
for that Work shall terminate as of the date such litigation is filed.
|
83
|
+
|
84
|
+
4. Redistribution.
|
85
|
+
|
86
|
+
You may reproduce and distribute copies of the Work or Derivative Works thereof
|
87
|
+
in any medium, with or without modifications, and in Source or Object form,
|
88
|
+
provided that You meet the following conditions:
|
89
|
+
|
90
|
+
You must give any other recipients of the Work or Derivative Works a copy of
|
91
|
+
this License; and
|
92
|
+
You must cause any modified files to carry prominent notices stating that You
|
93
|
+
changed the files; and
|
94
|
+
You must retain, in the Source form of any Derivative Works that You distribute,
|
95
|
+
all copyright, patent, trademark, and attribution notices from the Source form
|
96
|
+
of the Work, excluding those notices that do not pertain to any part of the
|
97
|
+
Derivative Works; and
|
98
|
+
If the Work includes a "NOTICE" text file as part of its distribution, then any
|
99
|
+
Derivative Works that You distribute must include a readable copy of the
|
100
|
+
attribution notices contained within such NOTICE file, excluding those notices
|
101
|
+
that do not pertain to any part of the Derivative Works, in at least one of the
|
102
|
+
following places: within a NOTICE text file distributed as part of the
|
103
|
+
Derivative Works; within the Source form or documentation, if provided along
|
104
|
+
with the Derivative Works; or, within a display generated by the Derivative
|
105
|
+
Works, if and wherever such third-party notices normally appear. The contents of
|
106
|
+
the NOTICE file are for informational purposes only and do not modify the
|
107
|
+
License. You may add Your own attribution notices within Derivative Works that
|
108
|
+
You distribute, alongside or as an addendum to the NOTICE text from the Work,
|
109
|
+
provided that such additional attribution notices cannot be construed as
|
110
|
+
modifying the License.
|
111
|
+
You may add Your own copyright statement to Your modifications and may provide
|
112
|
+
additional or different license terms and conditions for use, reproduction, or
|
113
|
+
distribution of Your modifications, or for any such Derivative Works as a whole,
|
114
|
+
provided Your use, reproduction, and distribution of the Work otherwise complies
|
115
|
+
with the conditions stated in this License.
|
116
|
+
|
117
|
+
5. Submission of Contributions.
|
118
|
+
|
119
|
+
Unless You explicitly state otherwise, any Contribution intentionally submitted
|
120
|
+
for inclusion in the Work by You to the Licensor shall be under the terms and
|
121
|
+
conditions of this License, without any additional terms or conditions.
|
122
|
+
Notwithstanding the above, nothing herein shall supersede or modify the terms of
|
123
|
+
any separate license agreement you may have executed with Licensor regarding
|
124
|
+
such Contributions.
|
125
|
+
|
126
|
+
6. Trademarks.
|
127
|
+
|
128
|
+
This License does not grant permission to use the trade names, trademarks,
|
129
|
+
service marks, or product names of the Licensor, except as required for
|
130
|
+
reasonable and customary use in describing the origin of the Work and
|
131
|
+
reproducing the content of the NOTICE file.
|
132
|
+
|
133
|
+
7. Disclaimer of Warranty.
|
134
|
+
|
135
|
+
Unless required by applicable law or agreed to in writing, Licensor provides the
|
136
|
+
Work (and each Contributor provides its Contributions) on an "AS IS" BASIS,
|
137
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
|
138
|
+
including, without limitation, any warranties or conditions of TITLE,
|
139
|
+
NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
|
140
|
+
solely responsible for determining the appropriateness of using or
|
141
|
+
redistributing the Work and assume any risks associated with Your exercise of
|
142
|
+
permissions under this License.
|
143
|
+
|
144
|
+
8. Limitation of Liability.
|
145
|
+
|
146
|
+
In no event and under no legal theory, whether in tort (including negligence),
|
147
|
+
contract, or otherwise, unless required by applicable law (such as deliberate
|
148
|
+
and grossly negligent acts) or agreed to in writing, shall any Contributor be
|
149
|
+
liable to You for damages, including any direct, indirect, special, incidental,
|
150
|
+
or consequential damages of any character arising as a result of this License or
|
151
|
+
out of the use or inability to use the Work (including but not limited to
|
152
|
+
damages for loss of goodwill, work stoppage, computer failure or malfunction, or
|
153
|
+
any and all other commercial damages or losses), even if such Contributor has
|
154
|
+
been advised of the possibility of such damages.
|
155
|
+
|
156
|
+
9. Accepting Warranty or Additional Liability.
|
157
|
+
|
158
|
+
While redistributing the Work or Derivative Works thereof, You may choose to
|
159
|
+
offer, and charge a fee for, acceptance of support, warranty, indemnity, or
|
160
|
+
other liability obligations and/or rights consistent with this License. However,
|
161
|
+
in accepting such obligations, You may act only on Your own behalf and on Your
|
162
|
+
sole responsibility, not on behalf of any other Contributor, and only if You
|
163
|
+
agree to indemnify, defend, and hold each Contributor harmless for any liability
|
164
|
+
incurred by, or claims asserted against, such Contributor by reason of your
|
165
|
+
accepting any such warranty or additional liability.
|
166
|
+
|
167
|
+
END OF TERMS AND CONDITIONS
|
168
|
+
|
169
|
+
APPENDIX: How to apply the Apache License to your work
|
170
|
+
|
171
|
+
To apply the Apache License to your work, attach the following boilerplate
|
172
|
+
notice, with the fields enclosed by brackets "[]" replaced with your own
|
173
|
+
identifying information. (Don't include the brackets!) The text should be
|
174
|
+
enclosed in the appropriate comment syntax for the file format. We also
|
175
|
+
recommend that a file or class name and description of purpose be included on
|
176
|
+
the same "printed page" as the copyright notice for easier identification within
|
177
|
+
third-party archives.
|
178
|
+
|
179
|
+
Copyright [yyyy] [name of copyright owner]
|
180
|
+
|
181
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
182
|
+
you may not use this file except in compliance with the License.
|
183
|
+
You may obtain a copy of the License at
|
184
|
+
|
185
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
186
|
+
|
187
|
+
Unless required by applicable law or agreed to in writing, software
|
188
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
189
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
190
|
+
See the License for the specific language governing permissions and
|
191
|
+
limitations under the License.
|
data/README.md
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
avatax.rb
|
2
|
+
=====================
|
3
|
+
|
4
|
+
This is a Ruby client library for the [AvaTax REST API](http://developer.avalara.com/api-docs/rest)
|
5
|
+
methods:
|
6
|
+
[tax/get POST](http://developer.avalara.com/api-docs/rest/tax/post/),
|
7
|
+
[tax/get GET](http://developer.avalara.com/api-docs/rest/tax/get),
|
8
|
+
[tax/cancel POST](http://developer.avalara.com/api-docs/rest/tax/cancel), and
|
9
|
+
[address/validate GET](http://developer.avalara.com/api-docs/rest/address-validation).
|
10
|
+
|
11
|
+
For more information on the use of these methods and the AvaTax product, please
|
12
|
+
visit our [developer site](http://developer.avalara.com/) or [homepage](http://www.avalara.com/)
|
13
|
+
|
14
|
+
Dependencies
|
15
|
+
-----------
|
16
|
+
- Ruby 1.9.2 or later
|
17
|
+
- [Bundler](http://bundler.io)
|
18
|
+
|
19
|
+
Requirements
|
20
|
+
----------
|
21
|
+
- Add the `avatax` gem to your Gemfile with `gem 'avatax'`
|
22
|
+
- Run `bundle install` to retrieve `avatax` and all its dependencies
|
23
|
+
- Authentication requires an valid **Account Number** and **License Key**. If you do not have an AvaTax account, a free trial account can be acquired through our [developer site](http://developer.avalara.com/api-get-started)
|
24
|
+
- Specify your authentication credentials as
|
25
|
+
- environment variables,
|
26
|
+
- YAML file (see `credentials.yml.example`), or
|
27
|
+
- in source
|
28
|
+
|
29
|
+
Credentials as environment variables
|
30
|
+
------------------------------------
|
31
|
+
```shell
|
32
|
+
$ AVATAX_ACCOUNT_NUMBER=1234567890 AVATAX_LICENSE_KEY=A1B2C3D4E5F6G7H8 AVATAX_SERVICE_URL=https://development.avalara.net bundle exec ruby examples/PingTest.rb
|
33
|
+
```
|
34
|
+
|
35
|
+
Credentials from YAML file
|
36
|
+
--------------------------
|
37
|
+
```ruby
|
38
|
+
AvaTax.configure_from 'credentials.yml.example'
|
39
|
+
```
|
40
|
+
|
41
|
+
Credentials in source
|
42
|
+
---------------------
|
43
|
+
```ruby
|
44
|
+
AvaTax.configure do
|
45
|
+
account_number '1234567890'
|
46
|
+
license_key 'A1B2C3D4E5F6G7H8'
|
47
|
+
service_url 'https://development.avalara.net'
|
48
|
+
end
|
49
|
+
```
|
50
|
+
|
51
|
+
Examples
|
52
|
+
--------
|
53
|
+
|
54
|
+
| Filename | Description |
|
55
|
+
| :----------------- | :---------- |
|
56
|
+
| CancelTaxTest.rb | Demonstrates [AvaTax::TaxService.cancel](http://developer.avalara.com/api-docs/rest/tax/cancel) used to [void a document](http://developer.avalara.com/api-docs/api-reference/canceltax) |
|
57
|
+
| EstimateTaxTest.rb | Demonstrates the [AvaTax::TaxService.estimate](http://developer.avalara.com/api-docs/rest/tax/get) method used for product- and line- indifferent tax estimates. |
|
58
|
+
| GetTaxTest.rb | Demonstrates the [AvaTax::TaxService.get](http://developer.avalara.com/api-docs/rest/tax/post) method used for product- and line- specific [calculation](http://developer.avalara.com/api-docs/api-reference/gettax). **NOTE:** This will generate a new transaction/document each time. |
|
59
|
+
| PingTest.rb | Uses a hardcoded `AvaTax::TaxService.estimate` call to test connectivity and credential information. |
|
60
|
+
| ValidateTest.rb | Demonstrates the [AvaTax::AddressService.validate](http://developer.avalara.com/api-docs/rest/address-validation) method to [normalize an address](http://developer.avalara.com/api-docs/api-reference/address-validation). |
|
data/lib/avatax.rb
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
require_relative 'avatax/configuration'
|
2
|
+
module AvaTax
|
3
|
+
|
4
|
+
def self.configure(&block)
|
5
|
+
Configuration.instance.instance_eval(&block)
|
6
|
+
end
|
7
|
+
|
8
|
+
def self.configure_from(yaml_file)
|
9
|
+
require 'yaml'
|
10
|
+
config = YAML.load_file yaml_file
|
11
|
+
configure do
|
12
|
+
account_number config['account_number']
|
13
|
+
license_key config['license_key']
|
14
|
+
service_url config['service_url']
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
require_relative 'avatax/tax_service'
|
20
|
+
require_relative 'avatax/address_service'
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require 'json'
|
2
|
+
require 'net/http'
|
3
|
+
require 'addressable/uri'
|
4
|
+
require 'base64'
|
5
|
+
require_relative 'configuration'
|
6
|
+
|
7
|
+
class AvaTax::AddressService
|
8
|
+
@@service_path = '/1.0/address/'
|
9
|
+
attr_accessor :account_number, :license_key, :service_url
|
10
|
+
|
11
|
+
def initialize()
|
12
|
+
@account_number = AvaTax::Configuration.instance.account_number
|
13
|
+
@license_key = AvaTax::Configuration.instance.license_key
|
14
|
+
@service_url = AvaTax::Configuration.instance.service_url
|
15
|
+
end
|
16
|
+
|
17
|
+
def validate(address)
|
18
|
+
return address if address.nil?
|
19
|
+
encodedquery = Addressable::URI.new
|
20
|
+
encodedquery.query_values = address
|
21
|
+
uri = URI(@service_url + @@service_path + "validate?"+ encodedquery.query)
|
22
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
23
|
+
http.use_ssl = true
|
24
|
+
http.verify_mode = OpenSSL::SSL::VERIFY_PEER
|
25
|
+
|
26
|
+
cred = 'Basic '+ Base64.encode64(@account_number + ":"+ @license_key)
|
27
|
+
res = http.get(uri.request_uri, 'Authorization' => cred)
|
28
|
+
JSON.parse(res.body)
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'singleton'
|
2
|
+
|
3
|
+
module AvaTax
|
4
|
+
class Configuration
|
5
|
+
include Singleton
|
6
|
+
|
7
|
+
def initialize
|
8
|
+
@account_number = ENV['AVATAX_ACCOUNT_NUMBER']
|
9
|
+
@license_key = ENV['AVATAX_LICENSE_KEY']
|
10
|
+
@service_url = ENV['AVATAX_SERVICE_URL']
|
11
|
+
super
|
12
|
+
end
|
13
|
+
|
14
|
+
def account_number(acct_num = nil)
|
15
|
+
return @account_number if @account_number and acct_num.nil?
|
16
|
+
@account_number = acct_num
|
17
|
+
end
|
18
|
+
|
19
|
+
def license_key(license = nil)
|
20
|
+
return @license_key if @license_key and license.nil?
|
21
|
+
@license_key = license
|
22
|
+
end
|
23
|
+
|
24
|
+
def service_url(url = nil)
|
25
|
+
return @service_url if @service_url and url.nil?
|
26
|
+
@service_url = url
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
require 'json'
|
2
|
+
require 'net/http'
|
3
|
+
require 'addressable/uri'
|
4
|
+
require 'base64'
|
5
|
+
require 'rest-client'
|
6
|
+
require_relative 'configuration'
|
7
|
+
|
8
|
+
class AvaTax::TaxService
|
9
|
+
@@service_path = "/1.0/tax/"
|
10
|
+
attr_accessor :account_number, :license_key, :service_url
|
11
|
+
|
12
|
+
def initialize()
|
13
|
+
#puts AvaTax::Configuration.instance.inspect
|
14
|
+
@account_number = AvaTax::Configuration.instance.account_number
|
15
|
+
@license_key = AvaTax::Configuration.instance.license_key
|
16
|
+
@service_url = AvaTax::Configuration.instance.service_url
|
17
|
+
end
|
18
|
+
|
19
|
+
def get(request_hash)
|
20
|
+
uri = @service_url + @@service_path + "get"
|
21
|
+
cred = 'Basic '+ Base64.encode64(@account_number + ":"+ @license_key)
|
22
|
+
#puts JSON.generate(request_hash)
|
23
|
+
res = RestClient.post(uri, JSON.generate(request_hash), :authorization => cred){|response, request, result| response}
|
24
|
+
JSON.parse(res.body)
|
25
|
+
end
|
26
|
+
|
27
|
+
|
28
|
+
def cancel(request_hash)
|
29
|
+
uri = @service_url + @@service_path + "cancel"
|
30
|
+
cred = 'Basic '+ Base64.encode64(@account_number + ":"+ @license_key)
|
31
|
+
res = RestClient.post uri, JSON.generate(request_hash), :authorization => cred
|
32
|
+
JSON.parse(res.body)["CancelTaxResult"]
|
33
|
+
#You may notice that this is slightly different from CalcTax, etc. The CancelTax result is nested in this result object - this makes it consumable in a way that is consistant with the other response formats.
|
34
|
+
end
|
35
|
+
|
36
|
+
def estimate(coordinates, sale_amount)
|
37
|
+
# coordinates should be a hash with latitude and longitude
|
38
|
+
# sale_amount should be a decimal
|
39
|
+
return nil if coordinates.nil?
|
40
|
+
sale_amount = 0 if sale_amount.nil?
|
41
|
+
uri = URI(@service_url + @@service_path +
|
42
|
+
coordinates[:latitude].to_s + "," + coordinates[:longitude].to_s +
|
43
|
+
"/get?saleamount=" + sale_amount.to_s )
|
44
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
45
|
+
http.use_ssl = true
|
46
|
+
http.verify_mode = OpenSSL::SSL::VERIFY_PEER
|
47
|
+
cred = 'Basic '+ Base64.encode64(@account_number + ":"+ @license_key)
|
48
|
+
res = http.get(uri.request_uri, 'Authorization' => cred)
|
49
|
+
JSON.parse(res.body)
|
50
|
+
end
|
51
|
+
|
52
|
+
def ping
|
53
|
+
#There is no actual ping in the REST API, so this is a mockup that calls EstimateTax with
|
54
|
+
#hardcoded values.
|
55
|
+
self.estimate(
|
56
|
+
{ :latitude => "47.627935",
|
57
|
+
:longitude => "-122.51702"},
|
58
|
+
0 )
|
59
|
+
end
|
60
|
+
|
61
|
+
end
|
metadata
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: avatax
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 14.4.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Anya Stettler
|
8
|
+
- Jeff Weiss
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2014-08-15 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: json
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - "~>"
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '1.8'
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - "~>"
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '1.8'
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: rest-client
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - "~>"
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '1.7'
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - "~>"
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '1.7'
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: addressable
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - "~>"
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '2.3'
|
49
|
+
type: :runtime
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - "~>"
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '2.3'
|
56
|
+
description: Provides a straightforward way to access and communicate with the all
|
57
|
+
methods exposed by the Avalara AvaTax REST API.
|
58
|
+
email: anya.stettler@avalara.com
|
59
|
+
executables: []
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- LICENSE
|
64
|
+
- README.md
|
65
|
+
- lib/avatax.rb
|
66
|
+
- lib/avatax/address_service.rb
|
67
|
+
- lib/avatax/configuration.rb
|
68
|
+
- lib/avatax/tax_service.rb
|
69
|
+
homepage: http://www.avalara.com/
|
70
|
+
licenses:
|
71
|
+
- Apache-2.0
|
72
|
+
metadata: {}
|
73
|
+
post_install_message:
|
74
|
+
rdoc_options: []
|
75
|
+
require_paths:
|
76
|
+
- lib
|
77
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0'
|
82
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: '0'
|
87
|
+
requirements: []
|
88
|
+
rubyforge_project:
|
89
|
+
rubygems_version: 2.4.1
|
90
|
+
signing_key:
|
91
|
+
specification_version: 4
|
92
|
+
summary: Library for accessing Avalara's AvaTax and Address Validation services
|
93
|
+
test_files: []
|