I play with Padrino, experimenting with a very minimal site at the moment without a database and just a few HAML and SASS files in the app / directory.
I noticed that every time I create a page that references the stylesheet defined in the .sass file, it compiles the stylesheet in .css and saves it under public /.
All this is very good, but I also have some static assets stored in the public /, including images and some other handwritten .css files.
This means that my public / catalog becomes a mixture of the things that I posted there and the things compiled by Padrino. So, it will show you a lot of .css files, some of which are compiled .sass files, and some of them are my first static assets. This is confusing.
Is there a way to stop Padrino (or Sinatra, or Rack, or something else) from saving these compiled files during development and keeping my post / clear?
Alternatively, can someone explain why what I ask is a bad idea / in design / should I learn to love it instead ?:-)
Thanks.
source share