3

我正在使用 Rails 3.2.2 并尝试使用ruby_gntpgem 从 Guard 发送 Growl 通知。

我在 Snow Lepoard 上,所以使用 Growl 1.2.2。

这是我的宝石文件。

source 'https://rubygems.org'

gem 'rails', '3.2.2'

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'

gem 'sqlite3'

group :assets do
  gem 'coffee-rails'
  gem 'uglifier'
end

gem 'jquery-rails'

group :development, :test do
  gem 'capybara'
  gem 'rspec-rails'
  gem 'guard-rspec'
  gem 'rb-fsevent'
  gem 'ruby_gntp'
end

# Gems used only for assets and not required
# in production environments by default.
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# Use unicorn as the web server
# gem 'unicorn'

# Deploy with Capistrano
# gem 'capistrano'

# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'

当我使用bundle exec guard命令运行 Guard 时。我收到以下...

Running all specs
No examples found.


Finished in 0.00005 seconds
0 examples, 0 failures
ERROR: Error sending notification with gntp: Connection refused - connect(2)

我做了一些研究并读到这可能是我安装的以前的咆哮宝石的版本错误。我已经删除了这些宝石,但仍然收到错误消息。

编辑:让它工作:) 只需更改我ruby_gntpgrowlgem文件中的gem。

我的 gemfile 现在读取..

来源“https://rubygems.org”

gem 'rails', '3.2.2'

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'

gem 'sqlite3'

group :assets do
  gem 'coffee-rails'
  gem 'uglifier'
end

gem 'jquery-rails'

group :development, :test do
  gem 'capybara'
  gem 'rspec-rails'
  gem 'guard-rspec'
  gem 'rb-fsevent'
  gem "growl", :git => "https://github.com/visionmedia/growl.git"
end

# Gems used only for assets and not required
# in production environments by default.
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# Use unicorn as the web server
# gem 'unicorn'

# Deploy with Capistrano
# gem 'capistrano'

# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
4

3 回答 3

2

Guard README 解释说 Ruby GNTP 至少需要 1.3 版的 Growl 。我建议安装适用于所有 Growl 版本的Growl通知程序。

于 2012-05-25T22:09:42.333 回答
2

我在 OS X 10.8 上遇到了完全相同的错误。在 Mac OS X 10.8 + 上,通过 Grows 的通知与 gemfile 中的此类 gem 一起工作:

group :development, :test do
  gem 'rb-fsevent'
  gem 'guard-rspec'                                                                       
  gem 'ruby_gntp'
end

别忘了打开 Growl。

我也建议使用 gem terminal-notifier-guard。它通过 Mac 通知中心提供通知。

于 2012-09-19T10:42:18.913 回答
0

通过 Mac App Store 更新 Growl 后,我遇到了同样的错误。

Extras/growlnotify/growlnotify.pkg我通过在 Growl 的1.2.2中重新安装 growlnotify 解决了这个问题。磁盘映像(在下载页面上列出)。

于 2013-08-07T00:28:47.293 回答