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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dda65b810670689ee2629eca1585245fcb36ed93
4
- data.tar.gz: a1fcc662b18825625ca427210f495ba519c7d46d
3
+ metadata.gz: cbf82150aa57b5501b413d239b7cfc53c824f36f
4
+ data.tar.gz: dabc31a728332f91834db6ead2485362cb80575c
5
5
  SHA512:
6
- metadata.gz: e30884fe83ad03f7ee8819f6004be5a3ae6a4ecc25a74bcc603838155a6527a915143a4d10f0793f271f6fc608bd83d728d776fb67f422bdcc9d30b68f2913ac
7
- data.tar.gz: 00f3190776f769af80fc2cc4c7c1f3af84e0d43013b001f8ca36ca6f4101235afe7e2453054c0c359963f48e6323087f87e0025b49eae1ab702101cde0e5abfe
6
+ metadata.gz: bcd908cf8271b7a15c106d5c4b393da647908ee8b2888ad949c53a85160a71e7c6824bf8b5b149595ec12417aa253d887df5ad33ac74fd4e3dc8d866b8e87d9c
7
+ data.tar.gz: 4faab4336ea2e42a25a88ff7fae0e1cbcbd2a4210773eab5fc4ad2c9401a95ef501c48901c9597d200e3f545271c6537414fd00a595d26c75a736b080d5bcf60
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "Avatax_TaxService"
3
- s.version = "2.0.1"
3
+ s.version = "2.0.2"
4
4
  s.date = "2015-06-12"
5
5
  s.author = "Graham S Wilson"
6
6
  s.email = "support@Avalara.com"
@@ -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 = "../lib"#gem_root + "/lib"
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+"/Address/AddressSvc.asmx"), log: false)
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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Avatax_TaxService
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Graham S Wilson