Skip to content

Instantly share code, notes, and snippets.

@iamjwc
Created May 16, 2010 15:44
Show Gist options
  • Save iamjwc/402941 to your computer and use it in GitHub Desktop.
Save iamjwc/402941 to your computer and use it in GitHub Desktop.
class HomeApp < Sinatra::Base
get "/" do
"Hello World!"
end
end
My::Application.routes.draw do |map|
match "/en", :to => HomeApp
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment