Heres a one liner: calls collect over products and then selects the matching item in links, adding the url to the item from products and creating a new array. You can use collect! to change the products array instead of creating a new array.
new_arr = products.collect {|item| item << ((links.select {|i| i[0]==item[1]}).first[1]) }