Sha256: b7ff20ad5a4bddd464c46e60149d4fd07a95718ed99271f02232ff5c138f871b
Contents?: true
Size: 1.32 KB
Versions: 15
Compression:
Stored size: 1.32 KB
Contents
module Spree class Calculator < Spree::Base belongs_to :calculable, polymorphic: true # This method calls a compute_<computable> method. must be overriden in concrete calculator. # # It should return amount computed based on #calculable and the computable parameter def compute(computable) # Spree::LineItem -> :compute_line_item computable_name = computable.class.name.demodulize.underscore method = "compute_#{computable_name}".to_sym calculator_class = self.class if respond_to?(method) send(method, computable) else raise NotImplementedError, "Please implement '#{method}(#{computable_name})' in your calculator: #{calculator_class.name}" end end # A description for this calculator in few words # @return [String] A description for the calculator def self.description model_name.human end ################################################################### def self.register(*_klasses) end # Returns all calculators applicable for kind of work def self.calculators Rails.application.config.spree.calculators end def to_s self.class.name.titleize.gsub("Calculator\/", "") end def description self.class.description end def available?(_object) true end end end
Version data entries
15 entries across 15 versions & 1 rubygems