From fe606d2101d1c58566b6747f85980c2f2d295152 Mon Sep 17 00:00:00 2001 From: Simon Rozet Date: Sun, 15 Mar 2009 23:21:55 +0100 Subject: [PATCH] Move to integrity/notifier/irc --- README.markdown | 4 ++-- lib/{ => integrity}/notifier/irc.rb | 0 test/irc_test.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename lib/{ => integrity}/notifier/irc.rb (100%) diff --git a/README.markdown b/README.markdown index 47a32d8..fdf607b 100644 --- a/README.markdown +++ b/README.markdown @@ -11,11 +11,11 @@ This lets Integrity alert an IRC channel after each build is made. Setup Instructions ================== -Just install this gem via `sudo gem install -s http://gems.github.com +Just install this gem via `sudo gem install -s http://gems.github.com sr-integrity-irc` and then in your Rackup (ie, `config.ru`) file: require "rubygems" - require "notifier/irc" + require "integrity/notifier/irc" And badabing! Now you can set up your projects to alert an IRC channel after each build (just edit the project and the config options should diff --git a/lib/notifier/irc.rb b/lib/integrity/notifier/irc.rb similarity index 100% rename from lib/notifier/irc.rb rename to lib/integrity/notifier/irc.rb diff --git a/test/irc_test.rb b/test/irc_test.rb index 12eac55..ca47a82 100644 --- a/test/irc_test.rb +++ b/test/irc_test.rb @@ -7,7 +7,7 @@ rescue LoadError end -require File.dirname(__FILE__) + "/../lib/notifier/irc" +require File.dirname(__FILE__) + "/../lib/integrity/notifier/irc" class IRCTest < Test::Unit::TestCase include RR::Adapters::TestUnit