Created
April 6, 2014 19:55
-
-
Save epitron/10010757 to your computer and use it in GitHub Desktop.
Get a word of the day in Modern Irish Gaelic!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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