test-unit-notify 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +6 -0
- data/lib/test/unit/notify.rb +3 -3
- metadata +3 -3
data/History.txt
CHANGED
data/lib/test/unit/notify.rb
CHANGED
@@ -25,7 +25,7 @@ module Test
|
|
25
25
|
end
|
26
26
|
|
27
27
|
module Notify
|
28
|
-
VERSION = "0.2.
|
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:
|
4
|
+
hash: 21
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 0.2.
|
9
|
+
- 1
|
10
|
+
version: 0.2.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Kouhei Sutou
|