visionmedia/pomo

View on GitHub
lib/pomo/notifier/quicksilver_notifier.rb

Summary

Maintainability
A
0 mins
Test Coverage

module Pomo
  class Notifier
    class QuicksilverNotifier
      def notify(message, opts = {})
        `osascript -e 'tell application "Quicksilver" to show large type "#{message.gsub('"', '\"')}"'`
      end
    end

  end
end