summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-08-03 07:41:18 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-08-03 07:41:18 +0000
commitbb9fface13e2bbf12ec77f1093c121f86878d5e5 (patch)
treea69151a55c291521f1bd4dcb15f38349a51b3544
parente07bdafbf4c3ef5e96ab026490302a2dd090572e (diff)
* .travis.yml (notifications): [experimental] IRC notificatoins.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36605 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--.travis.yml8
-rw-r--r--ChangeLog4
2 files changed, 12 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 991bfcad76..e5c96ca95d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,3 +9,11 @@ branches:
only:
- trunk
- ruby_1_9_3
+
+notifications:
+ irc:
+ channels:
+ - "irc.freenode.org#ruby-core"
+ - "irc.freenode.org#ruby-ja"
+ on_success: change # [always|never|change] # default: always
+ on_failure: change # [always|never|change] # default: always
diff --git a/ChangeLog b/ChangeLog
index a2acb1cb42..ef50ad235e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Aug 3 16:40:01 2012 URABE Shyouhei <shyouhei@ruby-lang.org>
+
+ * .travis.yml (notifications): [experimental] IRC notificatoins.
+
Thu Aug 2 20:32:29 2012 Shugo Maeda <shugo@ruby-lang.org>
* eval.c (rb_mod_using): new method Module#using. [experimental]