Skip to content

Instantly share code, notes, and snippets.

@epitron
Created April 6, 2014 19:55
Show Gist options
  • Save epitron/10010757 to your computer and use it in GitHub Desktop.
Save epitron/10010757 to your computer and use it in GitHub Desktop.
Get a word of the day in Modern Irish Gaelic!
require 'mechanize'
http = Mechanize.new
page = http.get("http://www.focloir.ie/")
wotd_link = page.at(".wotdEntry a")["href"]
page = http.get(wotd_link)
puts page.at("#entryContent").text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment