Skip to content

Instantly share code, notes, and snippets.

@rbq
Created September 6, 2011 10:57
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 rbq/1197261 to your computer and use it in GitHub Desktop.
Save rbq/1197261 to your computer and use it in GitHub Desktop.
Sinatra route for SASS files
get '/:name.css' do
content_type 'text/css', :charset => 'utf-8'
response.headers['Cache-Control'] = 'public, max-age=3600'
sass :"stylesheets/#{params[:name]}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment