Avatax_TaxService 2.0.1 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Avatax_TaxService.gemspec +1 -1
- data/lib/avatax_taxservice.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cbf82150aa57b5501b413d239b7cfc53c824f36f
|
4
|
+
data.tar.gz: dabc31a728332f91834db6ead2485362cb80575c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bcd908cf8271b7a15c106d5c4b393da647908ee8b2888ad949c53a85160a71e7c6824bf8b5b149595ec12417aa253d887df5ad33ac74fd4e3dc8d866b8e87d9c
|
7
|
+
data.tar.gz: 4faab4336ea2e42a25a88ff7fae0e1cbcbd2a4210773eab5fc4ad2c9401a95ef501c48901c9597d200e3f545271c6537414fd00a595d26c75a736b080d5bcf60
|
data/Avatax_TaxService.gemspec
CHANGED
data/lib/avatax_taxservice.rb
CHANGED
@@ -12,7 +12,7 @@ module AvaTax
|
|
12
12
|
#Set @def_locn to the Avatax-x.x.x gem install library. This enables the ruby programs to
|
13
13
|
#find other objects that it needs.
|
14
14
|
gem_root = spec.gem_dir
|
15
|
-
@def_locn =
|
15
|
+
@def_locn = gem_root + "/lib"
|
16
16
|
|
17
17
|
#Extract data from hash
|
18
18
|
username = credentials[:username] || ""
|
@@ -44,7 +44,7 @@ module AvaTax
|
|
44
44
|
#Get service details from WSDL - control_array[2] contains the WSDL read from the address_control file
|
45
45
|
#log :false turns off HTTP logging. Select either Dev or Prod depending on the value of the boolean value 'use_production_account'
|
46
46
|
@log.puts "#{Time.now}: Avalara Tax service started"
|
47
|
-
@client = Savon.client(wsdl: @def_locn + '/taxservice.wsdl', endpoint: URI.parse(service_url+"/
|
47
|
+
@client = Savon.client(wsdl: @def_locn + '/taxservice.wsdl', endpoint: URI.parse(service_url+"/Tax/TaxSvc.asmx"), log: false)
|
48
48
|
|
49
49
|
|
50
50
|
|