test_notifier 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +4 -0
- data/lib/test_notifier.rb +1 -1
- data/lib/test_notifier/version.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
data/lib/test_notifier.rb
CHANGED
@@ -37,7 +37,7 @@ module Test
|
|
37
37
|
message = "#{t} tests, #{a} assertions, #{f} failures, #{e} errors"
|
38
38
|
|
39
39
|
if RUBY_PLATFORM =~ /darwin/
|
40
|
-
system("growlnotify -n test_notifier --image #{image} -p 2 -m #{message} -t #{title}")
|
40
|
+
system("growlnotify -n test_notifier --image #{image} -p 2 -m \"#{message}\" -t \"#{title}\"")
|
41
41
|
elsif RUBY_PLATFORM =~ /mswin/
|
42
42
|
Snarl.show_message(title, message, image)
|
43
43
|
elsif RUBY_PLATFORM =~ /linux/
|
metadata
CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.2
|
|
3
3
|
specification_version: 1
|
4
4
|
name: test_notifier
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.0.
|
6
|
+
version: 0.0.4
|
7
7
|
date: 2007-10-18 00:00:00 -02:00
|
8
8
|
summary: Display system notifications (dbus, growl and snarl) after running tests. It works on Mac OS X, Linux and Windows. Powerful when used with Autotest ZenTest gem for Rails apps.
|
9
9
|
require_paths:
|