如何将RubyMine通知发送到Growl?

时间:2011-04-13 19:22:20

标签: rspec rubymine growl spork

我正在试图弄清楚如何让RubyMine的控制台向咆哮发送消息。具体来说,因为我运行Rspec&通过RubyMine Spork,我想获得关于通过了多少测试的Growl通知。失败。

我通过Autotest和RedGreen宝石使用了这个功能的命令行版本,但是这两个宝石似乎都没有在RubyMine中保留它的用处。

有没有人成功推送过RubyMine的Growl通知?

有人能想到任何可以启用通知的工具或机制吗?

3 个答案:

答案 0 :(得分:0)

可能是这段代码会帮助你

    # -*- ruby -*-

   module Autotest::RedGreen
   Autotest.send(:alias_method, :real_ruby, :ruby)
   Autotest.send(:define_method, :ruby) do |*args|
   real_ruby + %[ -rrubygems -e "require 'redgreen'" ] 
end

   # Clean the output so other modules can work correctly
   Autotest.add_hook :ran_command do |at|
   at.results.each do |r|
   r.gsub!("\033[31m", "")
   r.gsub!("\033[32m", "")
   r.gsub!("\033[33m", "")
   r.gsub!("\033[0m", "")
  end
 end
end

module Autotest::Growl
AUTOTEST_IMAGE_ROOT = "~/.autotest_images"

def self.growl(title, msg, img, pri=0, sticky="")
 system "growlnotify -n autotest --image #{img} -p #{pri} -m '#{msg.inspect} #{title}'      #{sticky}"
end

  Autotest.add_hook :red do |at|
  growl("FAIL", "#{get_results(at)}", "#{AUTOTEST_IMAGE_ROOT}/fail.png", 2)
 end

  Autotest.add_hook :green do |at|
  growl("Pass", "#{get_results(at)}", "#{AUTOTEST_IMAGE_ROOT}/pass.png")
 end

 private
 def self.get_results(at)
 results = [at.results].flatten.join("\n")

  if results.include? 'tests'
  output = results.slice(/(\d+)\s+tests?,\s*(\d+)\s+assertions?,\s*(\d+)\s+failures?   (,\s*(\d+)\s+errors)?/)
 else
  output = results.slice(/(\d+)\s+examples?,\s*(\d+)\s+failures?(,\s*(\d+)\s+not implemented)?/)
   end
  output
 end
end

 # Esclusioni
 Autotest.add_hook :initialize do |at|
  %w{.hg .git .svn stories tmtags Rakefile Capfile README spec/spec.opts spec/rcov.opts vendor/gems autotest svn-commit .DS_Store }.each do |exception|
  at.add_exception(exception)
 end

    at.add_mapping(/spec\/defaults.rb/) do |f, _|
    at.files_matching %r%^spec/(controllers|helpers|lib|models|views)/.*\.rb$%
  end
 end

答案 1 :(得分:0)

我不知道RubyMine,但这应该在终端:

rake db:setup && growlnotify -m 'Finished DB setup'

答案 2 :(得分:-1)

您可以使用AppleScript触发rspec运行,然后在完成时调用Growl。

This applescript integration for RubyMine提供了一种将事件挂钩到Growl的方法。

这不是一个完整的答案,但这是一种合理的方法。