public
Rubygem
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
Search Repo:
Click here to lend your support to: irccat and make a donation at www.pledgie.com !
irccat / config.yml
100644 27 lines (23 sloc) 0.378 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
# IRC connection
irc:
  host: 'irc.tty2.org'
  port: '6667'
  nick: irc_cat
  nick_pass: foo
  channel: '#irc_cat'
  channel_pass: bar
 
# 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