I am following this sinatra recipe (Foundation framework + Compass) and have always been unsure, when implementing foundation, of where I should place these files.
My Sinatra app has the structure:
sinatra_app/
|
|----app/
|----config/
|----models/
|----views/
|----etc...
By running foundation new project_name
from sinatra_app
, I have folder project_name
within my app.
I'm just a bit confused if I should just name this folder 'foundation' and have it build out the assets accordingly.
Or should it actually live outside of my sinatra app and have compass build the assets into the sinatra app folder structure?
From the tutorial, it seems as though all of the foundation files just live in the actual root of the sinatra app which doesn't seem like it would be good at all? (with all those extra files generated by foundation - humans.txt, index.html, README.md etc etc)