Class: ActiveMerchant::Shipping::Package
- Includes:
- Quantified
- Defined in:
- lib/active_shipping/shipping/package.rb
Instance Attribute Summary collapse
-
#currency ⇒ Object
readonly
Returns the value of attribute currency.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Class Method Summary collapse
Instance Method Summary collapse
- #centimetres(measurement = nil) ⇒ Object (also: #cm)
- #cylinder? ⇒ Boolean (also: #tube?)
- #gift? ⇒ Boolean
- #grams(options = {}) ⇒ Object (also: #g)
- #inches(measurement = nil) ⇒ Object (also: #in)
-
#initialize(grams_or_ounces, dimensions, options = {}) ⇒ Package
constructor
Package.new(100, [10, 20, 30], :units => :metric) Package.new(Mass.new(100, :grams), [10, 20, 30].map {|m| Length.new(m, :centimetres)}) Package.new(100.grams, [10, 20, 30].map(&:centimetres)).
- #kilograms(options = {}) ⇒ Object (also: #kg, #kgs)
- #ounces(options = {}) ⇒ Object (also: #oz)
- #pounds(options = {}) ⇒ Object (also: #lb, #lbs)
- #weight(options = {}) ⇒ Object (also: #mass)
Constructor Details
#initialize(grams_or_ounces, dimensions, options = {}) ⇒ Package
Package.new(100, [10, 20, 30], :units => :metric) Package.new(Mass.new(100, :grams), [10, 20, 30].map {|m| Length.new(m, :centimetres)}) Package.new(100.grams, [10, 20, 30].map(&:centimetres))
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/active_shipping/shipping/package.rb', line 12 def initialize(grams_or_ounces, dimensions, = {}) = @@default_options.update() if @@default_options .symbolize_keys! @options = @dimensions = [dimensions].flatten.reject {|d| d.nil?} imperial = ([:units] == :imperial) || ([grams_or_ounces, *dimensions].all? {|m| m.respond_to?(:unit) && m.unit.to_sym == :imperial}) @unit_system = imperial ? :imperial : :metric @weight = attribute_from_metric_or_imperial(grams_or_ounces, Mass, :grams, :ounces) if @dimensions.blank? @dimensions = [Length.new(0, (imperial ? :inches : :centimetres))] * 3 else process_dimensions end @value = Package.cents_from([:value]) @currency = [:currency] || ([:value].currency if [:value].respond_to?(:currency)) @cylinder = ([:cylinder] || [:tube]) ? true : false @gift = [:gift] ? true : false end |
Instance Attribute Details
#currency ⇒ Object (readonly)
Returns the value of attribute currency.
7 8 9 |
# File 'lib/active_shipping/shipping/package.rb', line 7 def currency @currency end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
7 8 9 |
# File 'lib/active_shipping/shipping/package.rb', line 7 def @options end |
#value ⇒ Object (readonly)
Returns the value of attribute value.
7 8 9 |
# File 'lib/active_shipping/shipping/package.rb', line 7 def value @value end |
Class Method Details
.cents_from(money) ⇒ Object
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/active_shipping/shipping/package.rb', line 94 def self.cents_from(money) return nil if money.nil? if money.respond_to?(:cents) return money.cents else case money when Float (money * 100).round when String money =~ /\./ ? (money.to_f * 100).round : money.to_i else money.to_i end end end |
Instance Method Details
#centimetres(measurement = nil) ⇒ Object Also known as: cm
73 74 75 76 |
# File 'lib/active_shipping/shipping/package.rb', line 73 def centimetres(measurement=nil) @centimetres ||= @dimensions.map {|m| m.in_centimetres.amount } measurement.nil? ? @centimetres : measure(measurement, @centimetres) end |
#cylinder? ⇒ Boolean Also known as: tube?
38 39 40 |
# File 'lib/active_shipping/shipping/package.rb', line 38 def cylinder? @cylinder end |
#gift? ⇒ Boolean
43 |
# File 'lib/active_shipping/shipping/package.rb', line 43 def gift?; @gift end |
#grams(options = {}) ⇒ Object Also known as: g
50 51 52 |
# File 'lib/active_shipping/shipping/package.rb', line 50 def grams(={}) weight().in_grams.amount end |
#inches(measurement = nil) ⇒ Object Also known as: in
67 68 69 70 |
# File 'lib/active_shipping/shipping/package.rb', line 67 def inches(measurement=nil) @inches ||= @dimensions.map {|m| m.in_inches.amount } measurement.nil? ? @inches : measure(measurement, @inches) end |
#kilograms(options = {}) ⇒ Object Also known as: kg, kgs
61 62 63 |
# File 'lib/active_shipping/shipping/package.rb', line 61 def kilograms(={}) weight().in_kilograms.amount end |
#ounces(options = {}) ⇒ Object Also known as: oz
45 46 47 |
# File 'lib/active_shipping/shipping/package.rb', line 45 def ounces(={}) weight().in_ounces.amount end |
#pounds(options = {}) ⇒ Object Also known as: lb, lbs
55 56 57 |
# File 'lib/active_shipping/shipping/package.rb', line 55 def pounds(={}) weight().in_pounds.amount end |
#weight(options = {}) ⇒ Object Also known as: mass
79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/active_shipping/shipping/package.rb', line 79 def weight( = {}) case [:type] when nil, :actual @weight when :volumetric, :dimensional @volumetric_weight ||= begin m = Mass.new((centimetres(:box_volume) / 6.0), :grams) @unit_system == :imperial ? m.in_ounces : m end when :billable [ weight, weight(:type => :volumetric) ].max end end |