public
Description: irccat is like `cat`, but here, the STDOUT is an IRC channel.
Homepage: http://irccat.rubyforge.org/
Clone URL: git://github.com/webs/irccat.git
Click here to lend your support to: irccat and make a donation at www.pledgie.com !
Evan Phoenix (author)
Wed Sep 17 15:06:54 -0700 2008
webs (committer)
Wed Dec 17 07:23:15 -0800 2008
irccat / config.yml
100644 31 lines (26 sloc) 0.519 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# IRC connection
irc:
  host: 'irc.tty2.org'
  port: '6667'
  nick: irc_cat
  nick_pass: foo
  channel: '#irc_cat'
  channel_pass: bar
  # or:
  # channel: ['#one', '#two', '#three']
  # NB: the multichannel quickhack requires channel_pass to be hacked up. (not done (yet?))
 
# HTTP Server
 
http:
  enabled: true
  host: 0.0.0.0
  port: '3489'
  # Enable post-receive stuff from Github
  github: true
  # Allow send with http
  send: true
 
# TCP Server
 
tcp:
  enabled: true
  host: 0.0.0.0
  port: '5678'
  size: 400