You would have a following warning message while you are trying to watch for changes with Sass.
---------------------------------------------------------------------------
WARNING: Listen has fallen back to polling, learn more at https://github.com/guard/listen#fallback.
---------------------------------------------------------------------------
In this case, run following command at first.
---------------------------------------------------------------------------
> gem install listen
---------------------------------------------------------------------------
Then, if you still have a warning message like as follows,
---------------------------------------------------------------------------
[Listen warning]:
Missing dependency 'rb-inotify' (version '~> 0.8.8')!
Please run the following to satisfy the dependency:
gem install --version '~> 0.8.8' rb-inotify
For a better performance, it's recommended that you satisfy the missing dependency.
Listen will be polling changes. Learn more at https://github.com/guard/listen#polling-fallback.
---------------------------------------------------------------------------
Run following command (It depends on the message).
---------------------------------------------------------------------------
gem install rb-inotify
---------------------------------------------------------------------------