Skip to content

Instantly share code, notes, and snippets.

@burningTyger
Created May 15, 2013 05:42
Show Gist options
  • Save burningTyger/5581863 to your computer and use it in GitHub Desktop.
Save burningTyger/5581863 to your computer and use it in GitHub Desktop.
Sinatra style sheet generation route
# sass style sheet generation
get '/css/:file.css' do
halt 404 unless File.exist?("views/#{params[:file]}.scss")
time = File.stat("views/#{params[:file]}.scss").ctime
last_modified(time)
scss params[:file].intern
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment