test_notifier 0.3.5.rc.4 → 0.3.5
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/README.rdoc +3 -22
- data/test_notifier.gemspec +1 -1
- metadata +5 -9
data/README.rdoc
CHANGED
|
@@ -13,28 +13,9 @@ file anyway in order to clean up the failures/errors).
|
|
|
13
13
|
|
|
14
14
|
== Installation
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
gem install test_notifier
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
* Install the growlnotify script located on the "Extras" directory
|
|
20
|
-
* Open the Growl Preference Panel (System > Growl) and activate "Listen for incoming notifications" and "Allow remote application registration" options on the Network tab.
|
|
21
|
-
|
|
22
|
-
=== Linux
|
|
23
|
-
|
|
24
|
-
If you're a linux guy, you can choose on of these methods:
|
|
25
|
-
|
|
26
|
-
* Install libnotify-bin and its dependencies: <tt>sudo aptitude install libnotify-bin</tt>
|
|
27
|
-
* Install xosd-bin: <tt>sudo aptitude install xosd-bin</tt>
|
|
28
|
-
* KDE users don't need to install anything: Test Notifier will use +knotify+ and in in KDE4 Test Notifier will use +kdialog+.
|
|
29
|
-
|
|
30
|
-
=== Windows
|
|
31
|
-
|
|
32
|
-
* Install Snarl: download from http://www.fullphat.net
|
|
33
|
-
* Install ruby-snarl: <tt>gem install ruby-snarl</tt>
|
|
34
|
-
|
|
35
|
-
=== All
|
|
36
|
-
|
|
37
|
-
Then, install the gem with <tt>sudo gem install test_notifier</tt>
|
|
18
|
+
Check http://github.com/fnando/notifier to see how you can configure a notifier for your OS.
|
|
38
19
|
|
|
39
20
|
== Usage
|
|
40
21
|
|
|
@@ -49,7 +30,7 @@ You can define your notifier.
|
|
|
49
30
|
|
|
50
31
|
TestNotifier.default_notifier = :growl
|
|
51
32
|
|
|
52
|
-
The available notifiers are <tt>:growl</tt>, <tt>:kdialog</tt>, <tt>:knotify</tt>, <tt>:notify_send</tt>, <tt>:osd_cat</tt>, and <tt>:snarl</tt
|
|
33
|
+
The available notifiers are <tt>:growl</tt>, <tt>:kdialog</tt>, <tt>:knotify</tt>, <tt>:notify_send</tt>, <tt>:osd_cat</tt>, and <tt>:snarl</tt>.
|
|
53
34
|
|
|
54
35
|
== Maintainer
|
|
55
36
|
|
data/test_notifier.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ require "test_notifier/version"
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = "test_notifier"
|
|
7
|
-
s.version = "#{TestNotifier::Version::STRING}
|
|
7
|
+
s.version = "#{TestNotifier::Version::STRING}"
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
|
9
9
|
s.authors = ["Nando Vieira"]
|
|
10
10
|
s.email = ["fnando.vieira@gmail.com"]
|
metadata
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: test_notifier
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
prerelease:
|
|
4
|
+
prerelease: false
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 3
|
|
8
8
|
- 5
|
|
9
|
-
|
|
10
|
-
- 4
|
|
11
|
-
version: 0.3.5.rc.4
|
|
9
|
+
version: 0.3.5
|
|
12
10
|
platform: ruby
|
|
13
11
|
authors:
|
|
14
12
|
- Nando Vieira
|
|
@@ -114,13 +112,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
114
112
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
115
113
|
none: false
|
|
116
114
|
requirements:
|
|
117
|
-
- - "
|
|
115
|
+
- - ">="
|
|
118
116
|
- !ruby/object:Gem::Version
|
|
119
117
|
segments:
|
|
120
|
-
-
|
|
121
|
-
|
|
122
|
-
- 1
|
|
123
|
-
version: 1.3.1
|
|
118
|
+
- 0
|
|
119
|
+
version: "0"
|
|
124
120
|
requirements: []
|
|
125
121
|
|
|
126
122
|
rubyforge_project:
|