I wrote some code to return and display the five most recent posts on this website. Yet when I run the code using a for loop, an empty string is returned. The code is below:
require 'rubygems'
require 'mechanize'
agent = Mechanize.new
site = "http://metarand.com"
page = agent.get(site)
for i in 1..5
puts "#{i}) - #{page.search("#boxes :nth-child(i) .clearfix .blog-title")}"
end
What is wrong with the code, and how do I fix it?

.eachinstead offorandin. – weddingcakes Dec 25 '12 at 14:43foris not idiomatic Ruby. Useeachinstead.forcan lead to results like you're seeing. – the Tin Man Dec 26 '12 at 3:20