http://www.example.com/books?_pop=mheader
What would be the regular expression to match this and any URL that has "books" in the URLs as one of the pattern matches ? This site has a books category and various other sub-categories under that. How do I traverse down to search all the URLs for book ?
require 'anemone'
Pattern = %r[(\/books)*]
Anemone.crawl("http://www.example.com/") do |anemone|
anemone.on_pages_like(Pattern) do |page|
puts page.url
end
end

%r[...]then you won't need to backslashify your slashes. Also note that constants like your pattern should beALL_CAPSand classes should beMixedCase. – tadman Sep 7 '12 at 6:01