test-unit-notify 0.2.0 → 0.2.1

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.
Files changed (3) hide show
  1. data/History.txt +6 -0
  2. data/lib/test/unit/notify.rb +3 -3
  3. metadata +3 -3
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ === 0.2.1 / 2011-02-10
2
+
3
+ * 1 minor enhancements
4
+
5
+ * supported Ruby 1.9.
6
+
1
7
  === 0.2.0 / 2011-02-10
2
8
 
3
9
  * 1 major enhancements
@@ -25,7 +25,7 @@ module Test
25
25
  end
26
26
 
27
27
  module Notify
28
- VERSION = "0.2.0"
28
+ VERSION = "0.2.1"
29
29
 
30
30
  class << self
31
31
  def enable(auto_runner)
@@ -90,7 +90,7 @@ module Test
90
90
  command_line = [@command,
91
91
  "--expire-time", expire_time.to_s,
92
92
  "--urgency", urgency]
93
- command_line.concat(["--icon", icon]) if icon
93
+ command_line.concat(["--icon", icon.to_s]) if icon
94
94
  command_line << title
95
95
  command_line << message
96
96
  system(*command_line)
@@ -112,7 +112,7 @@ module Test
112
112
  command_line = [@command,
113
113
  "--priority", priority,
114
114
  "--message", message]
115
- command_line.concat(["--image", image]) if image
115
+ command_line.concat(["--image", image.to_s]) if image
116
116
  command_line << title
117
117
  system(*command_line)
118
118
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: test-unit-notify
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 0
10
- version: 0.2.0
9
+ - 1
10
+ version: 0.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Kouhei Sutou