diff options
author | Jared Norman <jared@super.gd> | 2019-03-24 09:42:37 -0700 |
---|---|---|
committer | Jared Norman <jared@super.gd> | 2019-03-24 09:43:14 -0700 |
commit | d22574e1bb948cf140b43d1112e93b4562337484 (patch) | |
tree | d841302d017305d093e67d7c1db32ce8afbb2484 | |
parent | 0e1ad4818e5473c3333bd0329456cb79cc43ff83 (diff) |
Sort config options
I just like any list with more than half a dozen things to be sorted.
-rw-r--r-- | lib/super_good/solidus_taxjar.rb | 12 |
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 |