Skip to content

Instantly share code, notes, and snippets.

@zuchmanski
Created April 25, 2010 17:36
Show Gist options
  • Save zuchmanski/378566 to your computer and use it in GitHub Desktop.
Save zuchmanski/378566 to your computer and use it in GitHub Desktop.
require "rack"
@headers = {}
@body = File.open("/home/sebcioz/avatar.jpg")
@headers["Content-Type"] = "binary/octet-stream"
@headers["Content-Disposition"] = "attachment; filename=\"aaa.jpg\""
Rack::Handler::Thin.run lambda {|env| [200, @headers, @body]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment