Broadly-speaking there are two ways to do this, either by yourself or by plugging into an outside service.
If you want to do this yourself, I'd suggest using the nokogiri gem, which allows you to parse an HTML page and pull out the tags you want. For example, to get all image links from a page, you would do this:
require 'nokogiri'
require 'open-uri'
doc = Nokogiri::HTML(open('<INSERT URL HERE>'))
doc.css('img').each do |link|
puts link.attr("src").value
end
To get the largest image, you'll have to actually determine their size. The "fastimage" gem looks like it would be useful for that.
The other option is to use an outside service for doing this. I'd suggest checking out embedly, for which there is a gem. If you think you may be planning to need any other info from these links in the future, I think this would be the better route to take, although note that to access the version of the service which gets you the largest images (preview) you need to actually pay a monthly fee.