Skip to content

Instantly share code, notes, and snippets.

@baranov1ch
Created May 31, 2012 10:58
Show Gist options
  • Save baranov1ch/2842655 to your computer and use it in GitHub Desktop.
Save baranov1ch/2842655 to your computer and use it in GitHub Desktop.
Stupid redirect-webapp
require 'rubygems' if RUBY_VERSION < "1.9"
require 'sinatra/base'
class TestApp < Sinatra::Base
get '/' do
"Hello World"
end
get '/redfrom' do
redirect '/redto'
end
get '/redto' do
"Redirected here!!!"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment