battlecry 0.1 → 0.2
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.markdown +9 -2
- data/battlecry.gemspec +3 -3
- data/lib/battlecry.rb +1 -1
- metadata +5 -5
data/README.markdown
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
#
|
|
1
|
+
#battlecry - a simple abstraction for syndicating notifications to OSX hosts via Growl
|
|
2
2
|
|
|
3
3
|
##Installation
|
|
4
4
|
|
|
5
|
-
gem install ruby-growl
|
|
6
5
|
gem install battlecry -s http://gemcutter.org
|
|
7
6
|
|
|
8
7
|
## Examples
|
|
@@ -23,5 +22,13 @@
|
|
|
23
22
|
#see the army size
|
|
24
23
|
battlecry.num_allies
|
|
25
24
|
|
|
25
|
+
##Requirements
|
|
26
|
+
|
|
27
|
+
* Ally machines are running OSX
|
|
28
|
+
* Ally machines have Growl installed
|
|
29
|
+
* Ally machines are listening for incoming notifications (System Preferences)
|
|
30
|
+
* Ally machines allow remote application registration (System Preferences)
|
|
31
|
+
* If you dare, ensure your firewall settings allow incoming connections
|
|
32
|
+
|
|
26
33
|
##Dependencies
|
|
27
34
|
- ruby-growl
|
data/battlecry.gemspec
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
spec = Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'battlecry'
|
|
3
|
-
s.version = '0.
|
|
3
|
+
s.version = '0.2'
|
|
4
4
|
s.date = '2010-06-16'
|
|
5
|
-
s.summary = 'A simple abstraction for
|
|
5
|
+
s.summary = 'A simple abstraction for syndicating notifications to OSX hosts via Growl'
|
|
6
6
|
s.email = 'dan.simpson@gmail.com'
|
|
7
7
|
s.homepage = 'http://github.com/dansimpson/battlecry'
|
|
8
|
-
s.description = 'A simple abstraction for
|
|
8
|
+
s.description = 'A simple abstraction for syndicating notifications to OSX hosts via Growl'
|
|
9
9
|
s.has_rdoc = true
|
|
10
10
|
|
|
11
11
|
s.authors = ['Dan Simpson']
|
data/lib/battlecry.rb
CHANGED
metadata
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: battlecry
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 15
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: "0.
|
|
8
|
+
- 2
|
|
9
|
+
version: "0.2"
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Dan Simpson
|
|
@@ -32,7 +32,7 @@ dependencies:
|
|
|
32
32
|
version: "2.0"
|
|
33
33
|
type: :runtime
|
|
34
34
|
version_requirements: *id001
|
|
35
|
-
description: A simple abstraction for
|
|
35
|
+
description: A simple abstraction for syndicating notifications to OSX hosts via Growl
|
|
36
36
|
email: dan.simpson@gmail.com
|
|
37
37
|
executables: []
|
|
38
38
|
|
|
@@ -80,6 +80,6 @@ rubyforge_project:
|
|
|
80
80
|
rubygems_version: 1.3.7
|
|
81
81
|
signing_key:
|
|
82
82
|
specification_version: 3
|
|
83
|
-
summary: A simple abstraction for
|
|
83
|
+
summary: A simple abstraction for syndicating notifications to OSX hosts via Growl
|
|
84
84
|
test_files: []
|
|
85
85
|
|