rubyguardgrowl-for-windows

Running guard and growl on windows


How can I run guard on windows.

I have tried to install bundler like it says on the git but don't know what to do now

also how can I install growl notify?


Solution

  • I had some trouble with this as well, I ended up finding a gem called ruby_gntp.
    Add

    gem 'ruby_gntp'
    

    to your Gemfile and then add

    notification :gntp
    

    to your Guardfile. This should get growl working for you and show your Guard notifications. Although, my next issue to figure out is how to make it run a little faster. Please let me know if you have tips on that topic! :)