ChanServ changed the topic of #cinch to: The IRC Framework | http://groups.google.com/group/cinch-ruby/ | Latest version: Cinch 2.0.4 – Change log at http://bit.ly/14Q4s6Z – Migration guide at http://bit.ly/GO4qkW | This channel is being publicly logged at http://irclog.whitequark.org/cinch/
fridim__ has joined #cinch
Lemtzas is now known as Cyam
Cyam is now known as Lemtzas
postmodern has joined #cinch
fridim__ has quit [Ping timeout: 276 seconds]
sleetdrop has joined #cinch
v0n has joined #cinch
sleetdrop has quit [Quit: Computer has gone to sleep.]
[Rickmasta] has joined #cinch
rickmasta has quit [Read error: Connection reset by peer]
v0n has quit [Ping timeout: 256 seconds]
sleetdrop has joined #cinch
sleetdrop has quit [Ping timeout: 252 seconds]
sleetdrop has joined #cinch
jhaals has joined #cinch
postmodern has quit [Quit: Leaving]
sleetdrop has quit [Ping timeout: 248 seconds]
fridim__ has joined #cinch
fridim__ has quit [Ping timeout: 276 seconds]
mlue has joined #cinch
mlue has quit [Changing host]
jhaals has quit [Ping timeout: 252 seconds]
jhaals has joined #cinch
jhaals has quit [Quit: jhaals]
bean__ has joined #cinch
bean__ has quit [Max SendQ exceeded]
bean__ has joined #cinch
bean__ has quit [Max SendQ exceeded]
bean__ has joined #cinch
v0n has joined #cinch
jhaals has joined #cinch
txdv_ has joined #cinch
bhaak_ has joined #cinch
Rennex_old has joined #cinch
bhaak has quit [*.net *.split]
txdv has quit [*.net *.split]
Rennex_o1d has quit [*.net *.split]
bhaak_ is now known as bhaak
jhaals has quit [Quit: jhaals]
framling has joined #cinch
v0n has quit [Ping timeout: 248 seconds]
Spami has joined #cinch
<Spami> hello
<dominikh> hi
postmodern has joined #cinch
bean__ has quit [Quit: Computer has gone to sleep.]
<Spami> postmodern = @postmodern_mod3 ?
<postmodern> Spami, yep
<Spami> hehe, nice
<dominikh> yeah, famous people hang out here
<postmodern> im internet famous? :/
<postmodern> reminds me, still need to finish that irc bot
<postmodern> was writing a cinch plugin to make pretty help commands
<postmodern> like /chanserv help
<dominikh> oh, neat
<dominikh> even with documentation
<postmodern> still not sure if i'm over engineering
<dominikh> seems fine so far
<Spami> that's awesome.
<Spami> I just discovered cinch today and it does exactly what I want.
<dominikh> cinch ~> 1 ← really? 1.x?
<dominikh> I was hoping nobody used 1.x anymore
<postmodern> might have been to eager :)
<postmodern> hmm 2.0 seems broken?
<dominikh> broken how?
<dominikh> it's working fine for me ;)
<postmodern> coming from require 'cinch/plugin'
<dominikh> oy vey
<dominikh> fair enough. you're probably the first to directly require cinch/plugin instead of just cinch
<postmodern> is this one of those bugs where you i have to require 'cinch'
<postmodern> yeah
<dominikh> require 'cinch/helpers' first
<dominikh> I'm curious why you're requiring cinch/plugin directly
<dominikh> most methods in there won't work stand-alone
<dominikh> oh, just to include Cinch::Plugin?
<dominikh> fixed in master
<postmodern> dominikh, actually should move that into Cinch::Commands.included
<postmodern> dominikh, since I use the match method in self.command
<dominikh> ah
<postmodern> dominikh, can i include Plugin into a module? or does it require a class?
<dominikh> postmodern: uhm… in the end it needs to be included in the class that you attempt to register as a plugin.
<postmodern> ah needs to include it into the class, for match to get extended in
<postmodern> da