diff options
author | Jared Norman <jared@super.gd> | 2019-01-09 13:11:09 -0800 |
---|---|---|
committer | Jared Norman <jared@super.gd> | 2019-01-09 13:11:09 -0800 |
commit | f0de9ce17896903d1436b122d52fc4b185c0b477 (patch) | |
tree | 11b9c6b90b985ed7019f5539a6f9833fae51be66 /lib/super_good/solidus_taxjar.rb | |
parent | bc51a8c65a1853a4652c264e8a01f4c756b1f432 (diff) |
Communicate with TaxJar API
This allows us to calculate the tax for a Solidus order using the TaxJar
API. It's currently hardcoded to use the sandbox, and provides no
caching.
Diffstat (limited to 'lib/super_good/solidus_taxjar.rb')
-rw-r--r-- | lib/super_good/solidus_taxjar.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/super_good/solidus_taxjar.rb b/lib/super_good/solidus_taxjar.rb index 6553213..40df3ec 100644 --- a/lib/super_good/solidus_taxjar.rb +++ b/lib/super_good/solidus_taxjar.rb @@ -8,4 +8,5 @@ module SuperGood end require "super_good/solidus_taxjar/version" +require "super_good/solidus_taxjar/api" require "super_good/solidus_taxjar/tax_calculator" |