openfoodfoundation/openfoodnetwork

View on GitHub
lib/spree/core/environment/calculators.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Spree
  module Core
    class Environment
      class Calculators
        include EnvironmentExtension

        attr_accessor :shipping_methods, :tax_rates
      end
    end
  end
end