integrity-prowl 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -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 `sudo gem install bdotdub-integrity-prowl` and then in your
14
- Rackup (ie, `config.ru`) file:
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 [Matías Flores][matflores]
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.2
1
+ 0.3.3
@@ -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.2"
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 => "prowl_successful" } Successful:
9
- %input.checkbox#tumblr_notifier_successful{ :id => "prowl_successful", :name => "notifiers[Prowl][successful]", :checked => config['successful'], :type => 'checkbox', :value => "1" }
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] = 'Integrity'
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.2
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
@@ -1,7 +0,0 @@
1
- = integrity-prowl
2
-
3
- A Prowl notifier for the Integrity continuous integration server.
4
-
5
- == Copyright
6
-
7
- Copyright (c) 2009 Benny Wong. See LICENSE for details.