summaryrefslogtreecommitdiff
path: root/lib/super_good
diff options
context:
space:
mode:
authorJared Norman <jared@super.gd>2019-03-24 09:42:37 -0700
committerJared Norman <jared@super.gd>2019-03-24 09:43:14 -0700
commitd22574e1bb948cf140b43d1112e93b4562337484 (patch)
treed841302d017305d093e67d7c1db32ce8afbb2484 /lib/super_good
parent0e1ad4818e5473c3333bd0329456cb79cc43ff83 (diff)
Sort config options
I just like any list with more than half a dozen things to be sorted.
Diffstat (limited to 'lib/super_good')
-rw-r--r--lib/super_good/solidus_taxjar.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/super_good/solidus_taxjar.rb b/lib/super_good/solidus_taxjar.rb
index 818947d..00c3ad5 100644
--- a/lib/super_good/solidus_taxjar.rb
+++ b/lib/super_good/solidus_taxjar.rb
@@ -12,20 +12,20 @@ module SuperGood
module SolidusTaxJar
class << self
attr_accessor :discount_calculator
- attr_accessor :test_mode
attr_accessor :exception_handler
- attr_accessor :taxable_address_check
- attr_accessor :shipping_tax_label_maker
attr_accessor :line_item_tax_label_maker
+ attr_accessor :shipping_tax_label_maker
+ attr_accessor :taxable_address_check
+ attr_accessor :test_mode
end
self.discount_calculator = ::SuperGood::SolidusTaxJar::DiscountCalculator
- self.test_mode = false
self.exception_handler = ->(e) {
Rails.logger.error "An error occurred while fetching TaxJar tax rates - #{e}: #{e.message}"
}
- self.taxable_address_check = ->(address) { true }
- self.shipping_tax_label_maker = ->(shipment, shipping_tax) { "Sales Tax" }
self.line_item_tax_label_maker = ->(taxjar_line_item, spree_line_item) { "Sales Tax" }
+ self.shipping_tax_label_maker = ->(shipment, shipping_tax) { "Sales Tax" }
+ self.taxable_address_check = ->(address) { true }
+ self.test_mode = false
end
end