Skip to content

Instantly share code, notes, and snippets.

@patshaughnessy
Created January 29, 2012 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patshaughnessy/1700219 to your computer and use it in GitHub Desktop.
Save patshaughnessy/1700219 to your computer and use it in GitHub Desktop.
Part of the Hostess class from RubyGems.org
class Hostess < Sinatra::Base
... etc ...
def serve_via_s3
serve do
redirect "http://#{$rubygems_config[:s3_domain]}#{request.path_info}"
end
end
... etc ...
%w[/specs.4.8.gz
/latest_specs.4.8.gz
/prerelease_specs.4.8.gz
].each do |index|
get index do
content_type('application/x-gzip')
serve_via_s3
end
end
... etc ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment