Sha256: b475fd935f5006d4d08986cade2e952c75185175d914e2a20b892d7921be7096
Contents?: true
Size: 453 Bytes
Versions: 13
Compression:
Stored size: 453 Bytes
Contents
# frozen_string_literal: true module Spree module Core class StockConfiguration attr_writer :coordinator_class attr_writer :estimator_class def coordinator_class @coordinator_class ||= '::Spree::Stock::SimpleCoordinator' @coordinator_class.constantize end def estimator_class @estimator_class ||= '::Spree::Stock::Estimator' @estimator_class.constantize end end end end
Version data entries
13 entries across 13 versions & 1 rubygems