I'm trying to learn to use SASS to expand my web development skills but I've run into a problem. I'm running Windows 7 , I have installed both Ruby193 and SASS gem and I'm using Netbeans 8.0 as my IDE.
My system path points to C:\Ruby193\bin
and I can type ruby -v
from my command prompt without error, so I believe that is set up correctly.
Under CSS Preprocessors
in project properties I have input set to /scss
and output set to /css
. In Configure Executables I have SASS path set to C:\Ruby193\bin\sass.bat
. From what I have read, this is correct.
I've also got a simple project set up with two directories css
and scss
as well as an index.html
with test text and a link to css/style.css
in the header. In my scss
directory I have style.scss
with some test code. My css
directory is empty. It is my understanding that when I compile SASS should generate a css/style.css
from style.scss
, however it does not.
Both Netbeans - installing SASS and Does Netbeans generate a separate CSS file when saving a SASS file? have the same problem I do, but neither solution seems to work for me. Could anyone offer me some help? I've also attached an image of my settings.
Thanks in advance for any help you can offer!