Created
July 14, 2011 04:14
-
-
Save pixelhandler/1081924 to your computer and use it in GitHub Desktop.
Import a URL with Ruby
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def importHTML | |
require 'open-uri' | |
@source = open("http://domain.com/some.html").read | |
end | |
# uses a reference parameter when getting remote XML | |
def importXML | |
require 'open-uri' | |
@aclass = AClass.find(params[:id]) # expecting a param named ref | |
@content = open("http://domain.com" + @aclass.ref + "&type=xml").read | |
respond_to do |format| | |
format.xml { render :xml => @content } | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment