<rikai>
Hm... i wonder why showbot doesn't work with 1.9.3... *scratches chin* ... fails @ https://github.com/mutewinter/Showbot/blob/master/showbot_web.rb#L22 with wrong number of arguments(1 for 0) (ArgumentError)... but that doesn't make much sense to me... *digs around*
<rikai>
Don't mind me btw, just thinking out loud, so to speak. :P
<dominikh>
class Shows does not inherit from any class or mixin any module and has no initialize method of its own, so I don't see how it could accept any arguments
<dominikh>
rikai: ^
<rikai>
You make a fine point.
jhaals has quit [Ping timeout: 276 seconds]
<rikai>
Makes me wonder why it magically works without choking in 1.9.2, in that case... Guess something is being done differently somehow, but i haven't the faintest clue what that could be.
<rikai>
Ah well, i'll file a bug and let mutewinter deal with it, it is his baby so i'll let him decide how to fix it. ;) </lazy>
<dominikh>
heh
bean has joined #cinch
sleetdrop has quit [Quit: Computer has gone to sleep.]
sleetdrop has joined #cinch
<rikai>
There. Thats filed. Now i'll go back to applying my modifications in the meantime until i have to go.
<rikai>
I will say, reading the entire cinch backlog while i was without internet gave me quite a few ideas. :P
<dominikh>
heh
<rikai>
I may or may not have run out of things to do.
bean has quit [Quit: Computer has gone to sleep.]
bean has joined #cinch
bean has quit [Max SendQ exceeded]
bean has joined #cinch
bean has quit [Max SendQ exceeded]
bean has joined #cinch
bean has quit [Client Quit]
bean has joined #cinch
bean has quit [Max SendQ exceeded]
bean has joined #cinch
bean has quit [Max SendQ exceeded]
bean has joined #cinch
bean has quit [Max SendQ exceeded]
bean has joined #cinch
Lemtzas has quit [Ping timeout: 246 seconds]
Lemtzas has joined #cinch
bean has quit [Quit: Computer has gone to sleep.]
jhaals has joined #cinch
sleetdrop has quit [Quit: Computer has gone to sleep.]
Lemtzas has quit [Read error: Connection reset by peer]
Lemtzas has joined #cinch
jhaals has quit [Quit: jhaals]
bean has joined #cinch
bean has quit [Max SendQ exceeded]
bean has joined #cinch
postmodern has joined #cinch
<txdv>
is it possible to write a !restart command which basically restards the bot?
<dominikh>
sure, exec a new ruby interpreter
<txdv>
while (true) run cinch
<txdv>
on !restart => exit(0)
<txdv>
so in etwa?
<dominikh>
that'd be another approach, sure
<leftylink>
yeah that's what I do
<leftylink>
run in screen, while [ -f stay-connected ]; do ruby bot.rb; sleep 3; done
v0n has quit [Ping timeout: 264 seconds]
<txdv>
leftylink: -f - if the file exists?
<txdv>
yes
<txdv>
leftylink: awesome advice, thank you
<txdv>
a simple 'exit' or 'abort' just ends the thread
<txdv>
exit works just fine
<txdv>
a guard didn't let me through
<txdv>
is bot.start a blocking function?
<txdv>
What is the best way to connect to multiple servers? do Cinch::Bot.new with custom configs?
<dominikh>
that.
bean has quit [Quit: Computer has gone to sleep.]
<txdv>
dominikh: thank you for the awesome irc bot framework