14 lines
388 B
Ruby
14 lines
388 B
Ruby
# Copyright (c) 2010, Disapora Inc. This file is
|
|
# licensed under the Affero General Public License version 3. See
|
|
# the COPYRIGHT file.
|
|
|
|
|
|
|
|
module HCard
|
|
def self.find url
|
|
doc = Nokogiri::HTML(Net::HTTP.get URI.parse(url))
|
|
{:given_name => doc.css(".given_name").text,
|
|
:family_name => doc.css(".family_name").text,
|
|
:url => doc.css("#pod_location").text}
|
|
end
|
|
end
|