Skip to content

Instantly share code, notes, and snippets.

@neurotech
Created December 27, 2012 06:49
Show Gist options
  • Save neurotech/4386057 to your computer and use it in GitHub Desktop.
Save neurotech/4386057 to your computer and use it in GitHub Desktop.
require 'sinatra'
require 'nokogiri'
require 'open-uri'
get '/' do
url = "http://dota2.com/hero/Earthshaker/"
data = Nokogiri::HTML(open(url))
name = data.css('h1').text
abilities = data.css('#abilitiesInner h2').text
erb :hero
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment