2

I want just send command-line notifications (like "notify-send 'done' ") after some long rake tasks starting from Rubymine. Maybe I need some wrapper for rake? Thanks for help!

Skydan
  • 1,196
  • 1
  • 12
  • 24

2 Answers2

0

I don't know about RubyMine but this should do in Terminal:

rake db:setup && growlnotify -m 'Finished DB setup'
timstott
  • 344
  • 4
  • 11
0
  1. Add terminal-notifier gem to Gemfile
  2. Add few lines to Project/bin/rake file: https://gist.github.com/skydan/f333cd1fc2900f4b4ed7
Skydan
  • 1,196
  • 1
  • 12
  • 24