cacophony 0.0.2 → 0.0.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/cacophony.gemspec +5 -2
- data/lib/cacophony/version.rb +1 -1
- metadata +7 -3
data/cacophony.gemspec
CHANGED
|
@@ -8,9 +8,12 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
|
9
9
|
s.authors = ["Dave Lyons"]
|
|
10
10
|
s.email = ["dalyons@gmail.com"]
|
|
11
|
-
s.homepage = "
|
|
11
|
+
s.homepage = "https://github.com/dalyons/cacophony"
|
|
12
12
|
s.summary = %q{Broadcast messages from programs and the command line}
|
|
13
|
-
s.description = %q{
|
|
13
|
+
s.description = %q{Cacophony is a small program that broadcasts notifications via a variety of mechanisms, such as growl, email and twitter.
|
|
14
|
+
It is great for notifiying you(or others) when a long running task is complete.
|
|
15
|
+
It operates as a standalone executable, and it also can read from STDIN to pipe output from your tasks to the notifiers.
|
|
16
|
+
}
|
|
14
17
|
|
|
15
18
|
#s.rubyforge_project = "cacophony"
|
|
16
19
|
|
data/lib/cacophony/version.rb
CHANGED
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: cacophony
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.0.
|
|
5
|
+
version: 0.0.3
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Dave Lyons
|
|
@@ -24,7 +24,11 @@ dependencies:
|
|
|
24
24
|
version: "0"
|
|
25
25
|
type: :runtime
|
|
26
26
|
version_requirements: *id001
|
|
27
|
-
description:
|
|
27
|
+
description: |
|
|
28
|
+
Cacophony is a small program that broadcasts notifications via a variety of mechanisms, such as growl, email and twitter.
|
|
29
|
+
It is great for notifiying you(or others) when a long running task is complete.
|
|
30
|
+
It operates as a standalone executable, and it also can read from STDIN to pipe output from your tasks to the notifiers.
|
|
31
|
+
|
|
28
32
|
email:
|
|
29
33
|
- dalyons@gmail.com
|
|
30
34
|
executables:
|
|
@@ -47,7 +51,7 @@ files:
|
|
|
47
51
|
- lib/notifiers/email_notifier.rb
|
|
48
52
|
- lib/notifiers/growl_notifier.rb
|
|
49
53
|
has_rdoc: true
|
|
50
|
-
homepage:
|
|
54
|
+
homepage: https://github.com/dalyons/cacophony
|
|
51
55
|
licenses: []
|
|
52
56
|
|
|
53
57
|
post_install_message:
|