class Postmen::Dimension

Attributes

depth[R]
height[R]
unit[R]
width[R]

Public Class Methods

new(options) click to toggle source
# File lib/postmen/dimension.rb, line 10
def initialize(options)
  @width = options[:width]
  @height = options[:height]
  @depth = options[:depth]
  @unit = options[:unit]
end