summaryrefslogtreecommitdiff
path: root/lib/super_good/solidus_taxjar.rb
diff options
context:
space:
mode:
authorJared Norman <jared@super.gd>2019-02-05 10:51:08 -0800
committerJared Norman <jared@super.gd>2019-02-05 10:51:08 -0800
commit4f7bd65748a251e881cfdf54bab1b7513ada24da (patch)
treeca92088e25a3894e0aa29d1f09c9ace979d1db80 /lib/super_good/solidus_taxjar.rb
parenta238148b1d66b9d5377b9c840b00b9e2ea4d4d7e (diff)
Introduce configurable taxable address checkv0.5.0
Diffstat (limited to 'lib/super_good/solidus_taxjar.rb')
-rw-r--r--lib/super_good/solidus_taxjar.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/super_good/solidus_taxjar.rb b/lib/super_good/solidus_taxjar.rb
index 663b3d8..1ab40ec 100644
--- a/lib/super_good/solidus_taxjar.rb
+++ b/lib/super_good/solidus_taxjar.rb
@@ -14,6 +14,7 @@ module SuperGood
attr_accessor :discount_calculator
attr_accessor :test_mode
attr_accessor :exception_handler
+ attr_accessor :taxable_address_check
end
self.discount_calculator = ::SuperGood::SolidusTaxJar::DiscountCalculator
@@ -21,5 +22,6 @@ module SuperGood
self.exception_handler = ->(e) {
Rails.logger.error "An error occurred while fetching TaxJar tax rates - #{e}: #{e.message}"
}
+ self.taxable_address_check = ->(address) { true }
end
end