When i execute the line
$sass --watch sass/views.scss:views.css
i get the following message
I tried these answers and none worked, so i did some more research. Apparently, the problem is with the listen
gem that SASS is using. Sass is only compatible with listen 0.7.
I was able to get it working by running the following two commands (as root):
gem uninstall listen
gem install listen -v 0.7.3