integrity-prowl 0.3.2 → 0.3.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/README.markdown +14 -3
- data/VERSION +1 -1
- data/integrity-prowl.gemspec +2 -4
- data/lib/integrity/notifier/config.haml +2 -2
- data/lib/integrity/notifier/prowl.rb +1 -1
- metadata +1 -3
- data/README.rdoc +0 -7
data/README.markdown
CHANGED
@@ -3,15 +3,25 @@ Integrity
|
|
3
3
|
|
4
4
|
[Integrity][] is your friendly automated Continuous Integration server.
|
5
5
|
|
6
|
+
Prowl
|
7
|
+
=====
|
8
|
+
|
9
|
+
[Prowl][] is a "Growl client for the iPhone". It is an iPhone app that
|
10
|
+
forwards Growl notifications to your iPhone. It also has an API that
|
11
|
+
lets you push any sort of notification you want.
|
12
|
+
|
6
13
|
Integrity Prowl Notifier
|
7
14
|
========================
|
8
15
|
|
16
|
+
This lets Integrity alert you after a build. You can specify if you want
|
17
|
+
to be notified after successful, failed, and/or pending builds.
|
9
18
|
|
10
19
|
Setup Instructions
|
11
20
|
==================
|
12
21
|
|
13
|
-
Just install this gem via
|
14
|
-
|
22
|
+
Just install this gem via
|
23
|
+
`sudo gem install integrity-prowl --source http://gemcutter.org` and then
|
24
|
+
in your Rackup (ie, `config.ru`) file:
|
15
25
|
|
16
26
|
require "rubygems"
|
17
27
|
require "integrity/notifier/prowl"
|
@@ -21,7 +31,7 @@ License
|
|
21
31
|
|
22
32
|
(The MIT License)
|
23
33
|
|
24
|
-
Copyright (c) 2009 [
|
34
|
+
Copyright (c) 2009 [Benny Wong][]
|
25
35
|
|
26
36
|
Permission is hereby granted, free of charge, to any person obtaining
|
27
37
|
a copy of this software and associated documentation files (the
|
@@ -43,4 +53,5 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
43
53
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
44
54
|
|
45
55
|
[Integrity]: http://integrityapp.com
|
56
|
+
[Prowl]: http://prowl.weks.net
|
46
57
|
[Benny Wong]: http://bwong.net
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.3
|
data/integrity-prowl.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{integrity-prowl}
|
8
|
-
s.version = "0.3.
|
8
|
+
s.version = "0.3.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Benny Wong"]
|
@@ -14,15 +14,13 @@ Gem::Specification.new do |s|
|
|
14
14
|
s.email = %q{benny@bwong.net}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE",
|
17
|
-
"README.markdown"
|
18
|
-
"README.rdoc"
|
17
|
+
"README.markdown"
|
19
18
|
]
|
20
19
|
s.files = [
|
21
20
|
".document",
|
22
21
|
".gitignore",
|
23
22
|
"LICENSE",
|
24
23
|
"README.markdown",
|
25
|
-
"README.rdoc",
|
26
24
|
"Rakefile",
|
27
25
|
"VERSION",
|
28
26
|
"integrity-prowl.gemspec",
|
@@ -5,8 +5,8 @@
|
|
5
5
|
(separated by commas)
|
6
6
|
%input.text#tumblr_notifier_email{ :id => "prowl_api_keys", :name => "notifiers[Prowl][api_keys]", :value => config['api_keys'], :type => 'text' }
|
7
7
|
%p.normal
|
8
|
-
%label{ :for => "
|
9
|
-
%input.checkbox#
|
8
|
+
%label{ :for => "prowl_success" } Success:
|
9
|
+
%input.checkbox#tumblr_notifier_success{ :id => "prowl_success", :name => "notifiers[Prowl][success]", :checked => config['success'], :type => 'checkbox', :value => "1" }
|
10
10
|
%p.normal
|
11
11
|
%label{ :for => "prowl_failed" } Failed:
|
12
12
|
%input.checkbox#tumblr_notifier_failed{ :id => "prowl_failed", :name => "notifiers[Prowl][failed]", :checked => config['failed'], :type => 'checkbox', :value => "1" }
|
@@ -16,7 +16,7 @@ module Integrity
|
|
16
16
|
if api_keys = config['api_keys']
|
17
17
|
api_keys.split(',').each do |key|
|
18
18
|
prowl_params = {}
|
19
|
-
prowl_params[:application] =
|
19
|
+
prowl_params[:application] = commit.project.name
|
20
20
|
prowl_params[:event] = short_message
|
21
21
|
prowl_params[:description] = full_message
|
22
22
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: integrity-prowl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Benny Wong
|
@@ -41,13 +41,11 @@ extensions: []
|
|
41
41
|
extra_rdoc_files:
|
42
42
|
- LICENSE
|
43
43
|
- README.markdown
|
44
|
-
- README.rdoc
|
45
44
|
files:
|
46
45
|
- .document
|
47
46
|
- .gitignore
|
48
47
|
- LICENSE
|
49
48
|
- README.markdown
|
50
|
-
- README.rdoc
|
51
49
|
- Rakefile
|
52
50
|
- VERSION
|
53
51
|
- integrity-prowl.gemspec
|