I am using Rails 3.2.2 and trying to use the stone ruby_gntpto send Growl notifications from Guard.
I'm on Snow Lepoard using Growl 1.2.2.
Here is my gem file.
source 'https://rubygems.org'
gem 'rails', '3.2.2'
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
When I start Guard with the command bundle exec guard. I get the following ...
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)
I did some research and read that it might be a version error with the previous nails that I installed. I removed these gems, but still get an error.
Edit: it turned out that it works :) Just changed ruby_gntpfor the gem growlin my gem file.
Now my gemfile is reading.
source 'https://rubygems.org'
gem 'rails', '3.2.2'
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
source
share