Skip to content

Instantly share code, notes, and snippets.

@pixelhandler
Created July 14, 2011 04:14
Show Gist options
  • Save pixelhandler/1081924 to your computer and use it in GitHub Desktop.
Save pixelhandler/1081924 to your computer and use it in GitHub Desktop.
Import a URL with Ruby
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