1 2 3 4 5 6 7
def diameters wheel.map { |wheel| diameter(wheel) } end def diameter(wheel) wheel.rim + (wheel.tire*2) end