autotest-growl 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.txt +5 -0
- data/lib/autotest/growl.rb +2 -2
- data/lib/autotest/result.rb +1 -1
- metadata +2 -2
data/CHANGELOG.txt
CHANGED
data/lib/autotest/growl.rb
CHANGED
@@ -115,7 +115,7 @@ module Autotest::Growl
|
|
115
115
|
# Parse the RSpec and Test::Unit results and send them to Growl.
|
116
116
|
Autotest.add_hook :ran_command do |autotest|
|
117
117
|
unless @@one_notification_per_run && @ran_tests
|
118
|
-
result = Result.new(autotest)
|
118
|
+
result = Autotest::Result.new(autotest)
|
119
119
|
if result.exists?
|
120
120
|
case result.framework
|
121
121
|
when 'test-unit'
|
@@ -147,7 +147,7 @@ module Autotest::Growl
|
|
147
147
|
# Parse the Cucumber results and sent them to Growl.
|
148
148
|
Autotest.add_hook :ran_features do |autotest|
|
149
149
|
unless @@one_notification_per_run && @ran_features
|
150
|
-
result = Result.new(autotest)
|
150
|
+
result = Autotest::Result.new(autotest)
|
151
151
|
if result.exists?
|
152
152
|
case result.framework
|
153
153
|
when 'cucumber'
|
data/lib/autotest/result.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autotest-growl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sven Schwyn
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-
|
12
|
+
date: 2010-03-03 00:00:00 +01:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|