Skip to content

Instantly share code, notes, and snippets.

@dmgarland
Created April 3, 2013 18:41
Show Gist options
  • Save dmgarland/5303972 to your computer and use it in GitHub Desktop.
Save dmgarland/5303972 to your computer and use it in GitHub Desktop.
Bit.ly in a few lines...
require 'sinatra'
set :urls, {
:xyz => "http://www.generalassemb.ly"
}
get '/:short_url' do
full_url = settings.urls[params[:short_url].to_sym]
if full_url
redirect full_url
else
404
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment