Skip to content

Instantly share code, notes, and snippets.

@alkema
Created April 9, 2011 21:10
Show Gist options
  • Save alkema/911776 to your computer and use it in GitHub Desktop.
Save alkema/911776 to your computer and use it in GitHub Desktop.
letter-press-on-heroku
routes
map.connect "/images/letterpress/:letterpress.png", :controller => 'pages', :action => 'letterpress'
controller
def letterpress
send_file "tmp/letterpress/#{params[:letterpress]}.png", :disposition => 'inline'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment