Is there any Rubygem to send an email or push notification after a certain Rake Task is finished? It’s good if there is one as I usually do multi tasking and forget to check if a process of Rake task is finished.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Assuming you’re on a Mac, use Growl (http://growl.info/) and the growl gem (https://rubygems.org/gems/growl). You will need to install the growlnotify extra (http://growl.info/extras.php/#growlnotify) to enable growl notifications from the command line–something the gem depends on.
At this point you can add some Ruby in your Rakefile to notify yourself. Example:
Hope that helps.