autotest-growl 0.2.2 → 0.2.3

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/CHANGELOG.txt CHANGED
@@ -1,3 +1,8 @@
1
+ == 0.2.3 2010-03-03
2
+
3
+ * 1 minor improvement
4
+ * Move the Result class into the Autotest namespace
5
+
1
6
  == 0.2.2 2010-02-27
2
7
 
3
8
  * 1 minor improvement
@@ -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'
@@ -1,4 +1,4 @@
1
- class Result
1
+ class Autotest::Result
2
2
 
3
3
  ##
4
4
  # Analyze test result lines and return the numbers in a hash.
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.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-02-27 00:00:00 +01:00
12
+ date: 2010-03-03 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency