require 'nokogiri' def slideshare_embed_list(username) rss_url = "http://www.slideshare.net/rss/user/#{username}/presentations" input = Nokogiri::XML(Kernel.open(rss_url)) output = "" end def slideshare_list(username) rss_url = "http://www.slideshare.net/rss/user/#{username}/presentations" input = Nokogiri::XML(Kernel.open(rss_url)) output = "" end