Skip to content

Instantly share code, notes, and snippets.

@mharris717
Created January 31, 2011 19:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mharris717/804629 to your computer and use it in GitHub Desktop.
Save mharris717/804629 to your computer and use it in GitHub Desktop.
# gem install nokogiri before running for first time
require 'nokogiri'
require 'open-uri'
def sportsbook_line
doc = Nokogiri::XML(open("http://americasline.com/"))
doc.css("#chalk tr[3] td[5]").text
end
puts sportsbook_line
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment