Skip to content

Instantly share code, notes, and snippets.

@havenwood
Created September 7, 2012 21:51
Show Gist options
  • Save havenwood/3670023 to your computer and use it in GitHub Desktop.
Save havenwood/3670023 to your computer and use it in GitHub Desktop.
Find a Page's Title
require 'nokogiri'
require 'open-uri'
module TitleTurkey
def self.gobble url
Nokogiri::HTML(open url).css('title').text
end
end
TitleTurkey.gobble 'http://http://pastebin.com/XbdyD8v7'
# => "Pastebin.com - #1 paste tool since 2002!"
TitleTurkey.gobble 'http://zales.1.ai'
# => ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment