Skip to content

Instantly share code, notes, and snippets.

@edezekiel
Created November 24, 2018 13:49
Show Gist options
  • Save edezekiel/3dcd50dfdb1391938850bfc79ba0ae6e to your computer and use it in GitHub Desktop.
Save edezekiel/3dcd50dfdb1391938850bfc79ba0ae6e to your computer and use it in GitHub Desktop.
nokogiri-example
def get_category
doc = Nokogiri::HTML(open("https://www.ruby-toolbox.com"))
doc.css(".category-group").each do |category|
puts category.css("h3").text
end
get_subcategory_screen
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment