Skip to content

Instantly share code, notes, and snippets.

@Awea
Created March 29, 2013 10:32
Show Gist options
  • Save Awea/5270106 to your computer and use it in GitHub Desktop.
Save Awea/5270106 to your computer and use it in GitHub Desktop.
Simple proxy in rails
class SimpleController < ApplicationController
def index
url = 'http://www.lemonde.fr/'
result = open(url)
render :text => result.read
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment