spacepaste

  1.  
  2. link_occurrence = Hash.new 0
  3. urls.each do |pos,match|
  4. @urls[pos] = {link:match[0],occurrence:link_occurrence[match]}
  5. link_occurrence[match] += 1
  6. end
  7.