Skip to content

Instantly share code, notes, and snippets.

@Veejay
Created November 1, 2011 21:25
Show Gist options
  • Save Veejay/1331960 to your computer and use it in GitHub Desktop.
Save Veejay/1331960 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'sinatra'
get '/' do
erb :index
end
get %r{/(services|faq|about).php} do
erb params[:captures].first.to_sym
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment