How to get the HTML source of a webpage in Ruby [duplicate]

In browsers such as Firefox or Safari, with a website open, I can right click the page, and select something like: "View Page Source" or "View Source." This shows the HTML source for the page.

In Ruby, is there a function (maybe a library) that allows me to store this HTML source as a variable? Something like this:

source = view_source(http://stackoverflow.com)

where source would be this text:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Stack Overflow</title>
etc

Use Net::HTTP:

require 'net/http'

source = Net::HTTP.get('stackoverflow.com', '/index.html')

require 'open-uri'
source = open(url){|f|f.read}

UPD: more modern syntax

require 'open-uri'
source = open(url, &:read)