integrity-irc 0.0.6 → 0.0.7
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 +2 -2
- data/Rakefile +1 -1
- data/integrity-irc.gemspec +3 -3
- data/lib/integrity/notifier/irc.rb +2 -0
- data/test/{irc_test.rb → integrity_irc_test.rb} +1 -1
- metadata +3 -3
data/README.markdown
CHANGED
|
@@ -11,8 +11,8 @@ This lets Integrity alert an IRC channel after each build is made.
|
|
|
11
11
|
Setup Instructions
|
|
12
12
|
==================
|
|
13
13
|
|
|
14
|
-
Just install this gem
|
|
15
|
-
|
|
14
|
+
Just install this gem with `gem install integrity-irc`
|
|
15
|
+
and then in your Rackup (ie, `config.ru`) file:
|
|
16
16
|
|
|
17
17
|
require "rubygems"
|
|
18
18
|
require "integrity/notifier/irc"
|
data/Rakefile
CHANGED
data/integrity-irc.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "integrity-irc"
|
|
3
3
|
s.rubyforge_project = "integrity"
|
|
4
|
-
s.version = "0.0.
|
|
4
|
+
s.version = "0.0.7"
|
|
5
5
|
s.date = "2009-03-18"
|
|
6
6
|
s.summary = "IRC notifier for the Integrity continuous integration server"
|
|
7
7
|
s.summary = "IRC notifier for the Integrity continuous integration server"
|
|
@@ -14,9 +14,9 @@ README.markdown
|
|
|
14
14
|
Rakefile
|
|
15
15
|
integrity-irc.gemspec
|
|
16
16
|
lib/integrity/notifier/irc.rb
|
|
17
|
-
test/
|
|
17
|
+
test/integrity_irc_test.rb
|
|
18
18
|
]
|
|
19
|
-
s.test_files = %w[test/
|
|
19
|
+
s.test_files = %w[test/integrity_irc_test.rb]
|
|
20
20
|
s.add_dependency "integrity"
|
|
21
21
|
s.add_dependency "shout-bot"
|
|
22
22
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: integrity-irc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Simon Rozet
|
|
@@ -46,7 +46,7 @@ files:
|
|
|
46
46
|
- Rakefile
|
|
47
47
|
- integrity-irc.gemspec
|
|
48
48
|
- lib/integrity/notifier/irc.rb
|
|
49
|
-
- test/
|
|
49
|
+
- test/integrity_irc_test.rb
|
|
50
50
|
has_rdoc: false
|
|
51
51
|
homepage: http://integrityapp.com
|
|
52
52
|
post_install_message:
|
|
@@ -74,4 +74,4 @@ signing_key:
|
|
|
74
74
|
specification_version: 2
|
|
75
75
|
summary: IRC notifier for the Integrity continuous integration server
|
|
76
76
|
test_files:
|
|
77
|
-
- test/
|
|
77
|
+
- test/integrity_irc_test.rb
|