Hi. I'm new to ruby. Is there any way how can I shorten this code? Thanks
plans.each do |plan|
total = plan.landline.to_f * @landline.to_f
total += plan.vpn.to_f * @vpn.to_f
total += plan.other_networks.to_f * @other_networks.to_f
total += plan.gprs.to_f * @gprs.to_f
total += plan.sms.to_f * @sms.to_f
total += plan.mms.to_f * @mms.to_f
total += plan.internat_calls_zone_1.to_f * @internat_calls_zone_1.to_f
total += plan.internat_calls_zone_2.to_f * @internat_calls_zone_2.to_f
if total < @total
@total = total
@plan_new = plan
end
end