注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
必要な手順は参照先とほとんど同じである。変更点は11番から。 MacのGrowlに相当するものは、Ubuntuでは... 必要な手順は参照先とほとんど同じである。変更点は11番から。 MacのGrowlに相当するものは、UbuntuではNotifyがある。こちらを利用。 sudo apt-get install libnotify-bin ~/.autotestファイルを以下のような内容にする。 module Autotest::Notify def self.notify(title, message, priority='critical') icon = if priority == 'critical' 'dialog-error' else 'dialog-information' end system "notify-send -u #{priority} -t 10000 -i #{icon} '#{title}' '#{message.inspect}'" end Autotest.add_h
2009/01/09 リンク