Sha256: 64f3594a3a905b8a417b8fcfcf8fe6d5c5775a78814de1404a57a3b75b5c1b6e
Contents?: true
Size: 711 Bytes
Versions: 62
Compression:
Stored size: 711 Bytes
Contents
module Workarea class Shipping class Sku include ApplicationDocument field :_id, type: String field :weight, type: Float, default: 0 # @!attribute dimensions # @return [Array] Height x Width x Length # field :dimensions, type: Array, default: [] def height dimensions.first end def width dimensions.second end def length dimensions.third end def length_units Workarea.config.shipping_options[:units] == :imperial ? :inches : :centimeters end def weight_units Workarea.config.shipping_options[:units] == :imperial ? :ounces : :grams end end end end
Version data entries
62 entries across 62 versions & 1 rubygems