Skip to content

Instantly share code, notes, and snippets.

@minikomi
Created January 23, 2011 11:51
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 minikomi/792022 to your computer and use it in GitHub Desktop.
Save minikomi/792022 to your computer and use it in GitHub Desktop.
require "sinatra"
require "coffee-script"
get '/js/:scriptname' do
coffee params[:scriptname].intern
end
get "/" do
"<script src='/js/test'></script>"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment