Skip to content

Instantly share code, notes, and snippets.

@dfenjves
Created January 15, 2015 00:23
Show Gist options
  • Save dfenjves/a6726663c1e1a2b113c0 to your computer and use it in GitHub Desktop.
Save dfenjves/a6726663c1e1a2b113c0 to your computer and use it in GitHub Desktop.
require 'nokogiri'
require 'open-uri'
brazil_html = open("http://brazilwonders.tumblr.com/")
brazil_nokogiri = Nokogiri::HTML(brazil_html)
pics_array = []
brazil_nokogiri.css('.post.photo').each do |photo|
pics_array << photo.children.first.children.attr("src").text
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment