Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
I'd just like to say, you should be using .each instead of for and in. – weddingcakes Dec 25 '12 at 14:43
I agree with @weddingcakes. Using for is not idiomatic Ruby. Use each instead. for can lead to results like you're seeing. – the Tin Man Dec 26 '12 at 3:20

3 Answers

up vote 1 down vote accepted

I believe, you need something like:

(1..5).each {|i| puts %Q~#{i} - #{page.at("#boxes :nth-child(#{i}) .clearfix .blog-title").text}~  }
share|improve this answer

Simple mistake:

puts "#{i}) - #{page.search("#boxes :nth-child(i) .clearfix .blog-title")}"
                                              ^^^

Should be: #{i}

share|improve this answer
agent = Mechanize.new
site  = "http://metarand.com"
agent.get(site) do |page|
  for i in 1..5
    puts %Q~#{i} - #{page.search("#boxes :nth-child(#{i}) .clearfix .blog-title")}~
  end
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.