I do this when I start a new project :
I create a new project with "sass create" or "compass create" with a project folder name ending in -dev.
This is for development.
I setup everything in this development folder, that's also necessary in production (images, etc).
Then I copy the development folder under a different project folder name ending in -prod, for production.
I delete the sass folder and .sass-cache folder from the production project folder.
I add anything else to the development folder that's unique to development.
The same for the production folder.
Then I open 2 cmd-windows with admin privileges.
And enter the following 2 commands in the window for development (or a *.bat script with parameters) :
cd c:\HOME\Projects-Foundation\Foundation-v3.2.5-Starter-DEV
sass --watch -E UTF-8 C:\HOME\Projects-Foundation\Foundation-v3.2.5-Starter-DEV\sass\app.scss:C:\HOME\Projects-Foundation\Foundation-v3.2.5-Starter-DEV\stylesheets\app.max.css --unix-newlines --style expanded --compass --line-comments --trace
And these commands in the other window for production :
cd c:\HOME\Projects-Foundation\Foundation-v3.2.5-Starter-PROD
sass --watch -E UTF-8 C:\HOME\Projects-Foundation\Foundation-v3.2.5-Starter-DEV\sass\app.scss:C:\HOME\Projects-Foundation\Foundation-v3.2.5-Starter-PROD\stylesheets\app.min.css --unix-newlines --style compressed --compass --trace
The parameters to the left of the [INPUT][OUTPUT] paths are for the input SCSS files. The ones on the right for the output CSS file.
(But you can specify them where you want.)
Works each time.
Sometimes I also have a -TEST project folder between the -DEV and -PROD folders. Then the 2 commands for -TEST become :
cd c:\HOME\Projects-Foundation\Foundation-v3.2.5-Starter-TEST
sass --watch -E UTF-8 C:\HOME\Projects-Foundation\Foundation-v3.2.5-Starter-DEV\sass\app.scss:C:\HOME\Projects-Foundation\Foundation-v3.2.5-Starter-TEST\stylesheets\app.min.css --unix-newlines --style compressed --compass --trace
And after a test cycle, the -PROD folder is once updated manually with these 2 commands :
cd c:\HOME\Projects-Foundation\Foundation-v3.2.5-Starter-PROD
sass --force --update -E UTF-8 C:\HOME\Projects-Foundation\Foundation-v3.2.5-Starter-TEST\sass\app.scss:C:\HOME\Projects-Foundation\Foundation-v3.2.5-Starter-PROD\stylesheets\app.min.css --unix-newlines --style compressed --compass --trace