Use the file watch function from PHPStorm on Mac OS X
This is a short tutorial how you can use the compass watch function that is new in PHPStorm, beginning with creating a gemset for compass and using this for PHPStorm. Create a new gemset using rvm [1] and install compass [2]
1 2 3 4 5 6 7 8 |
# create a new gemset and select it, using the short syntax from rvm rvm use ruby-1.9.3-p374@compass --create # validate that you use the correct gemset rvm gemset list # install compass gem install compass |
Open PHPStorm and select a scss file Now PHPStorm will ask if you […]