Skip to content

Instantly share code, notes, and snippets.

@buzzedword
Created March 21, 2011 20:19
Show Gist options
  • Save buzzedword/880142 to your computer and use it in GitHub Desktop.
Save buzzedword/880142 to your computer and use it in GitHub Desktop.
Javascript routing file using CoffeeScript in Monk
class Main
get "/js/:application.js" do
content_type "text/javascript", :charset => "UTF-8"
CoffeeScript.compile File.read("app/views/js/#{params[:application]}.coffee")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment