apeiros changed the topic of #ruby-lang to: Ruby 2.1.3; 2.0.0-p576; 1.9.3-p547: http://ruby-lang.org || Paste code on http://gist.github.com
yatish27_ has joined #ruby-lang
yatish27 has quit [Ping timeout: 258 seconds]
nathanstitt has joined #ruby-lang
|jemc| has quit [Ping timeout: 240 seconds]
emmesswhy has quit [Quit: This computer has gone to sleep]
mikecmpbll has quit [Quit: i've nodded off.]
spuk has joined #ruby-lang
Lewix has joined #ruby-lang
sepp2k1 has joined #ruby-lang
spastorino has quit [Quit: Connection closed for inactivity]
sepp2k has quit [Ping timeout: 260 seconds]
dabradley has quit [Ping timeout: 246 seconds]
sepp2k1 has quit [Read error: Connection timed out]
sepp2k has joined #ruby-lang
tylersmith has quit [Remote host closed the connection]
hahuang65 has quit [Ping timeout: 245 seconds]
bantic has quit [Quit: bantic]
lcdhoffman has quit [Quit: lcdhoffman]
stardiviner has joined #ruby-lang
dabradley has joined #ruby-lang
RobertBirnie has quit [Ping timeout: 272 seconds]
j4cknewt has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
danijoo has quit [Read error: Connection reset by peer]
danijoo has joined #ruby-lang
kgrz has joined #ruby-lang
j4cknewt has quit [Ping timeout: 272 seconds]
kgrz has quit [Ping timeout: 244 seconds]
momomomomo has quit [Quit: momomomomo]
j4cknewt has joined #ruby-lang
bruno- has joined #ruby-lang
certainty has joined #ruby-lang
yatish27_ has quit [Remote host closed the connection]
amsi has quit [Quit: Leaving]
bruno- has quit [Ping timeout: 240 seconds]
|jemc| has joined #ruby-lang
ikrima has joined #ruby-lang
tkuchiki has joined #ruby-lang
Newbie0086 has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
chouhoulis has joined #ruby-lang
houhoulis has joined #ruby-lang
<Steve_Jobs> I created a mock double and I'm trying to verify that it got called correctly twice:
<Steve_Jobs> expect(logger).to have_received(:log).must_match(|message|message.include? "failed" ).exactly(2).times
yatish27 has joined #ruby-lang
<Steve_Jobs> I come from the .net world and I'm a n00b.. the googles do nothing...
nathanstitt has joined #ruby-lang
<Steve_Jobs> can anyone help?
<centrx> rspec?
<Steve_Jobs> centrx: yes
chouhoulis has quit [Ping timeout: 245 seconds]
<centrx> Steve_Jobs, I don't know, try also #ruby and during the day
Technodrome has quit [Quit: Technodrome]
<|jemc|> Steve_Jobs: I think you have parens where you need curlies
<centrx> (|message|message.include? "failed" )
<|jemc|> yes, those parens
<Steve_Jobs> I'm not sure of the "must match" syntax
<|jemc|> I don't know what must_match expects to get either, but they should be curlies if you want to receive a block argument
<Steve_Jobs> in .net you could say .Log.Expect(message => message == "some text")
<|jemc|> read up about blocks and Procs and yield
<Steve_Jobs> |jemc|: I'm not even sure if it's supposed to expect a block
<|jemc|> well, let's look at the docs, shall we?
<Steve_Jobs> |jemc|: I'm not even sure if must match is the right thing to use, let alone the arguments it takes
<|jemc|> (admittedly, rspec makes it a bit of a PITA by emphasizing their cucumber as "docs" when it's not really)
<Steve_Jobs> |jemc|: don't get me sarted on that topic
<Steve_Jobs> it transends all languages
robbyoconnor has quit [Max SendQ exceeded]
<Steve_Jobs> |jemc|: all i'm trying to do is see if log got called and at least 2 times it had "failed" in the text it received
robbyoconnor has joined #ruby-lang
<Steve_Jobs> I'm mocking out the logger for another class
centrx has quit [Quit: The plan is programmed into every one of my one thousand robots]
<Steve_Jobs> also, is there an rspec room or is this it?
<|jemc|> I think there is indeed an rspec channel
<Steve_Jobs> |jemc|: just joined it
<|jemc|> I think you can do expect(logger).to receive(:log).with(/failed/)
<|jemc|> .exactly(2).times
thomasxie has joined #ruby-lang
<Steve_Jobs> cool.. what does /failed/ do?
<|jemc|> /failed/ is a Regexp literal
<Steve_Jobs> ah.. that's handy
<|jemc|> and Regexps support "case equality" with #===
<Steve_Jobs> now I've got 2 problems :)
* Steve_Jobs remembers old regex joke
<|jemc|> yeah, I know the joke - I just don't recognize Regexps as a problem :P
<|jemc|> but you should read about case equality and triple-equals (because it doesn't do what you may expect)
<Steve_Jobs> |jemc|: the old joke is someone has a problem and someone suggests regex to fix it. Now they have 2 problems :)
<|jemc|> yeah, I know the joke - I just don't recognize Regexps as a problem :P
<Steve_Jobs> ... it plays on how quickly n00bs can get confused by regex
<Steve_Jobs> ok.. lets see what the other room has to say..
<Steve_Jobs> |jemc|: so have_received and received are placed before and after the call to the sut, correct?
<Steve_Jobs> err. vice versa
<|jemc|> yeah
centrx has joined #ruby-lang
<|jemc|> although you have to make sure to do it on an object that is 'spying' already
<Steve_Jobs> cool.. so it acts like a stub if you don't call any receive methods to the double before the sut call, right?
<Steve_Jobs> I just made logger = double("a logger")
<|jemc|> I usually use receive because I can use it on any object even things that aren't actually mocks
<Steve_Jobs> then call a method on the sut that takes a logger as a parameter
<Steve_Jobs> ya.. in this case i don't have or want to use the real object
<|jemc|> as much as I hate to link to cucumber: https://relishapp.com/rspec/rspec-mocks/v/3-1/docs/basics/spies
<centrx> cucumber alert
<Steve_Jobs> centrx: sorry, I made him do it
rcvalle has quit [Quit: rcvalle]
chills42 has joined #ruby-lang
Technodrome has joined #ruby-lang
charliesome has joined #ruby-lang
charliesome has quit [Client Quit]
tylersmith has joined #ruby-lang
imkmf__ has quit [Ping timeout: 272 seconds]
imkmf_ has quit [Ping timeout: 260 seconds]
AngryEgret is now known as AngryEgret_afk
charliesome has joined #ruby-lang
Technodrome has quit [Quit: Technodrome]
Technodrome has joined #ruby-lang
allomov has joined #ruby-lang
sepp2k has quit [Read error: Connection reset by peer]
jgpawletko has quit [Quit: jgpawletko]
wallerdev_ has quit [Quit: wallerdev_]
pan has joined #ruby-lang
<pan> hi
pan is now known as Guest14276
<Guest14276> hi
allomov has quit [Ping timeout: 250 seconds]
bruno- has joined #ruby-lang
<Guest14276> anyone kowns a eruby language reference? I could only found some introduction for eruby, but not a complete language reference
_lexjm has joined #ruby-lang
bruno- has quit [Ping timeout: 258 seconds]
lcdhoffman has joined #ruby-lang
<centrx> Guest14276, There's actually not much to it, just the <%x > with a few options
<centrx> Guest14276, as far as making a template that is
amclain has joined #ruby-lang
shinnya has joined #ruby-lang
faces has joined #ruby-lang
face has quit [Ping timeout: 244 seconds]
j4cknewt has quit [Remote host closed the connection]
mistym has quit [Remote host closed the connection]
<Guest14276> thank you, but this is actually not what i want
hagabaka has quit [Ping timeout: 260 seconds]
face has joined #ruby-lang
faces has quit [Ping timeout: 260 seconds]
hagabaka has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
skammer3 has quit [Ping timeout: 272 seconds]
jhass is now known as jhass|off
hahuang65 has joined #ruby-lang
Guest14276 has left #ruby-lang [#ruby-lang]
banisterfiend has quit [Read error: Connection reset by peer]
banister has joined #ruby-lang
dknox-lunch is now known as dknox
tectonic has joined #ruby-lang
banister is now known as banisterfiend
klmlfl has joined #ruby-lang
mistym has joined #ruby-lang
j4cknewt has joined #ruby-lang
karamazov has quit [Remote host closed the connection]
karamazov has joined #ruby-lang
karamazov has quit [Ping timeout: 250 seconds]
ikrima has quit [Ping timeout: 272 seconds]
bruno- has joined #ruby-lang
emmesswhy has joined #ruby-lang
bruno- has quit [Ping timeout: 260 seconds]
gix has quit [Ping timeout: 244 seconds]
gix has joined #ruby-lang
AngryEgret_afk is now known as AngryEgret
AngryEgret is now known as AngryEgret_afk
tectonic has quit []
nathanstitt has quit [Quit: I growing sleepy]
centrx has quit [Quit: The plan is programmed into every one of my one thousand robots]
kgrz has joined #ruby-lang
kgrz has quit [Remote host closed the connection]
kgrz has joined #ruby-lang
arooni-mobile has joined #ruby-lang
lele has quit [Ping timeout: 272 seconds]
toertore has quit [Quit: This computer has gone to sleep]
emmesswhy has quit [Quit: This computer has gone to sleep]
arooni-mobile has quit [Read error: Connection reset by peer]
lele has joined #ruby-lang
yatish27 has quit [Remote host closed the connection]
yatish27 has joined #ruby-lang
danijoo has quit [Read error: Connection reset by peer]
danijoo has joined #ruby-lang
lsegal has joined #ruby-lang
Technodrome has quit [Quit: Technodrome]
oleo__ has joined #ruby-lang
oleo is now known as Guest24914
yatish27 has quit [Ping timeout: 272 seconds]
Guest24914 has quit [Ping timeout: 245 seconds]
bsvineeth has joined #ruby-lang
Technodrome has joined #ruby-lang
arooni-mobile has joined #ruby-lang
araujo has quit [Quit: Leaving]
arooni-mobile has quit [Ping timeout: 260 seconds]
DivineEntity has quit [Quit: Lost terminal]
DivineEntity has joined #ruby-lang
bsvineeth has quit [Remote host closed the connection]
arooni-mobile has joined #ruby-lang
shubhamgoyal has quit [Remote host closed the connection]
shubhamgoyal has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
shubhamgoyal has quit [Ping timeout: 245 seconds]
faces has joined #ruby-lang
face has quit [Ping timeout: 260 seconds]
face has joined #ruby-lang
faces has quit [Ping timeout: 258 seconds]
shubhamgoyal has joined #ruby-lang
emmesswhy has joined #ruby-lang
spuk has quit [Read error: Connection reset by peer]
spuk has joined #ruby-lang
bruno- has joined #ruby-lang
rickyrickyrice has joined #ruby-lang
tectonic has joined #ruby-lang
rickyrickyrice has quit [Remote host closed the connection]
ta has quit [Remote host closed the connection]
bruno- has quit [Ping timeout: 272 seconds]
oleo__ has quit [Quit: Verlassend]
wkoch1 has joined #ruby-lang
wkoch has quit [Ping timeout: 260 seconds]
houhoulis has quit [Remote host closed the connection]
sepp2k has joined #ruby-lang
Technodrome has quit [Quit: Technodrome]
bsvineeth has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 245 seconds]
JaReAx has joined #ruby-lang
kyb3r_ has joined #ruby-lang
relix has joined #ruby-lang
wkoch1 has quit [Quit: wkoch1]
dknox has quit [Quit: Textual IRC Client: www.textualapp.com]
lcdhoffman has quit [Quit: lcdhoffman]
x0f has quit [Ping timeout: 272 seconds]
shubhamgoyal has quit [Remote host closed the connection]
x0f has joined #ruby-lang
shubhamgoyal has joined #ruby-lang
robbyoconnor has quit [Excess Flood]
robbyoconnor has joined #ruby-lang
robbyoconnor has quit [Changing host]
robbyoconnor has joined #ruby-lang
apeiros has quit [Remote host closed the connection]
AKASkip has joined #ruby-lang
apeiros has joined #ruby-lang
chinaboy_rubyfan has joined #ruby-lang
shubhamgoyal has quit [Ping timeout: 272 seconds]
apeiros has quit [Ping timeout: 260 seconds]
ssvo has joined #ruby-lang
ssvo has quit [Client Quit]
ssvo has joined #ruby-lang
arBmind has joined #ruby-lang
Newbie0086 has quit [Quit: 离开]
ssvo has quit [Client Quit]
shubhamgoyal has joined #ruby-lang
ssvo has joined #ruby-lang
Technodrome has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
allomov has joined #ruby-lang
JaRe_Ax has joined #ruby-lang
shubhamgoyal has quit [Read error: Connection reset by peer]
shubhamgoyal has joined #ruby-lang
yfeldblu_ has joined #ruby-lang
yfeldblu_ has quit [Read error: Connection reset by peer]
JaReAx has quit [Ping timeout: 260 seconds]
JaRe_Ax is now known as JaReAx
kimegede has joined #ruby-lang
yfeldblum has quit [Ping timeout: 272 seconds]
robbyoconnor has quit [Ping timeout: 258 seconds]
AKASkip has quit [Ping timeout: 260 seconds]
chrisco has joined #ruby-lang
amerine has quit [Ping timeout: 245 seconds]
_lexjm has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
j4cknewt has joined #ruby-lang
JaReAx has quit [Read error: Connection reset by peer]
tectonic has quit []
kwd has joined #ruby-lang
shubhamgoyal has quit [Read error: Connection reset by peer]
shubhamg_ has joined #ruby-lang
chrisco has quit []
apeiros has joined #ruby-lang
shubhamg_ has quit [Remote host closed the connection]
AKASkip has joined #ruby-lang
shubhamgoyal has joined #ruby-lang
_ht has joined #ruby-lang
shubhamgoyal has quit [Ping timeout: 260 seconds]
allomov__ has joined #ruby-lang
jdecuirm has quit [Ping timeout: 258 seconds]
solars has joined #ruby-lang
thomasxie has quit [Remote host closed the connection]
allomov has quit [Ping timeout: 260 seconds]
mistym has quit [Remote host closed the connection]
bruno- has joined #ruby-lang
greenarrow has joined #ruby-lang
bruno- has quit [Ping timeout: 260 seconds]
jdecuirm has joined #ruby-lang
kyb3r_ has quit [Read error: Connection reset by peer]
chussenot has joined #ruby-lang
fusillicode has joined #ruby-lang
apeiros_ has joined #ruby-lang
apeiros has quit [Ping timeout: 260 seconds]
shubhamgoyal has joined #ruby-lang
heftig has quit [Read error: Connection reset by peer]
heftig has joined #ruby-lang
bsvineeth has quit [Remote host closed the connection]
elico has joined #ruby-lang
chinaboy_rubyfan has quit [Remote host closed the connection]
ikrima has joined #ruby-lang
arBmind has quit [Quit: Leaving.]
arBmind has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
Lewix has joined #ruby-lang
amclain has quit [Quit: Leaving]
Lewix has quit [Ping timeout: 246 seconds]
yfeldblum has joined #ruby-lang
arBmind has quit [Ping timeout: 245 seconds]
jdecuirm has quit [Ping timeout: 244 seconds]
kgrz has quit [Remote host closed the connection]
mkaesz has joined #ruby-lang
kgrz_ has joined #ruby-lang
kgrz__ has joined #ruby-lang
kgrz__ has quit [Remote host closed the connection]
kgrz__ has joined #ruby-lang
kgrz_ has quit [Ping timeout: 244 seconds]
arBmind has joined #ruby-lang
dbck has left #ruby-lang ["WeeChat 0.4.2"]
Steve_Jobs has quit [Ping timeout: 244 seconds]
Forgetful_Lion has joined #ruby-lang
elico has quit [Quit: Leaving.]
jdecuirm has joined #ruby-lang
blowmage has quit [Ping timeout: 245 seconds]
chussenot has quit [Quit: chussenot]
michd is now known as MichD
blowmage has joined #ruby-lang
Technodrome has quit [Quit: Technodrome]
arBmind has quit [Ping timeout: 245 seconds]
mikecmpbll has joined #ruby-lang
yatish27 has joined #ruby-lang
arBmind has joined #ruby-lang
chussenot has joined #ruby-lang
ta has joined #ruby-lang
Technodrome has joined #ruby-lang
yatish27 has quit [Ping timeout: 246 seconds]
j4cknewt_ has joined #ruby-lang
apeiros_ is now known as apeiros
tylersmith has quit [Remote host closed the connection]
arBmind has quit [Client Quit]
tylersmith has joined #ruby-lang
bsvineeth has joined #ruby-lang
j4cknewt has quit [Ping timeout: 245 seconds]
tylersmith has quit [Ping timeout: 272 seconds]
kek has joined #ruby-lang
j4cknewt has joined #ruby-lang
ta has quit [Remote host closed the connection]
j4cknewt_ has quit [Ping timeout: 272 seconds]
wallerdev has quit [Quit: wallerdev]
ssvo has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
elia has joined #ruby-lang
bsvineeth has quit [Remote host closed the connection]
allomov__ has quit [Remote host closed the connection]
charliesome has quit [Quit: zzz]
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
greenarrow has quit [Quit: 500]
diegoviola has joined #ruby-lang
chussenot has quit [Quit: chussenot]
yfeldblum has quit [Remote host closed the connection]
yfeldblum has joined #ruby-lang
Paul_McFreely has joined #ruby-lang
ta has joined #ruby-lang
thomasxie has joined #ruby-lang
bsvineeth has joined #ruby-lang
charliesome has joined #ruby-lang
bsvineet_ has joined #ruby-lang
bsvineeth has quit [Ping timeout: 260 seconds]
jhass|off is now known as jhass
fusillicode has quit [Read error: Connection reset by peer]
chussenot has joined #ruby-lang
kimegede has quit [Read error: Connection reset by peer]
qtax has joined #ruby-lang
kek has quit [Remote host closed the connection]
kek_ has joined #ruby-lang
emmesswhy has quit [Quit: This computer has gone to sleep]
Newbie0086 has joined #ruby-lang
bruno- has joined #ruby-lang
vvikus has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
bruno- has quit [Ping timeout: 272 seconds]
francisfish has joined #ruby-lang
fusillicode has joined #ruby-lang
qba73 has joined #ruby-lang
workmad3 has joined #ruby-lang
allomov has joined #ruby-lang
ikrima has quit [Ping timeout: 272 seconds]
qtax has quit [Quit: Leaving...]
benlovell has joined #ruby-lang
tkuchiki has quit [Remote host closed the connection]
kimegede has joined #ruby-lang
vvikus has quit [Quit: WeeChat 0.3.8]
Newbie0086 has quit [Quit: 离开]
kimegede has quit [Client Quit]
benlovell has quit [Ping timeout: 240 seconds]
arBmind has joined #ruby-lang
benlovell has joined #ruby-lang
vvikus has joined #ruby-lang
marr has joined #ruby-lang
diegoviola has quit [Quit: WeeChat 1.0]
benlovell has quit [Ping timeout: 245 seconds]
ta has quit [Read error: Connection reset by peer]
ta has joined #ruby-lang
klmlfl has quit [Remote host closed the connection]
klmlfl has joined #ruby-lang
shinnya has quit [Ping timeout: 272 seconds]
klmlfl has quit [Ping timeout: 260 seconds]
kyb3r_ has joined #ruby-lang
stamina has joined #ruby-lang
kimegede has joined #ruby-lang
skammer3 has joined #ruby-lang
bruno- has joined #ruby-lang
benlovell has joined #ruby-lang
dangerousdave has joined #ruby-lang
tbuehlmann has joined #ruby-lang
<yorickpeterse> morning
bruno- has quit [Ping timeout: 240 seconds]
<tbuehlmann> moin
bsvineet_ has quit [Remote host closed the connection]
<tbuehlmann> yorickpeterse, regarding Oga: getting a Racc::ParseError when parsing https://google.com: https://gist.github.com/tbuehlmann/b6990cb99295d430dbef
<tbuehlmann> any idea?
bsvineeth has joined #ruby-lang
gjaldon has joined #ruby-lang
<yorickpeterse> tbuehlmann: HTML parsing currently doesn't handle syntax errors/oddities very well
<yorickpeterse> e.g. HTML allows you to omit </li> tags, Oga doesn't support this just yet
<yorickpeterse> So basically it can only parse xhtml at the moment
<tbuehlmann> ah, ok
<yorickpeterse> https://github.com/YorickPeterse/oga/issues/20 I'm tracking that using this issue
<tbuehlmann> great, thanks
klmlfl has joined #ruby-lang
klmlfl has quit [Read error: No route to host]
toertore has joined #ruby-lang
klmlfl has joined #ruby-lang
<benlovell> howdy
<yorickpeterse> benlovell: how's #newjob?
<yorickpeterse> Being the CEO, CTO, dev, support and all that at the same time
<benlovell> not bad, slow start
<benlovell> to be expected
<benlovell> 'interesting' journey in to central london
<yorickpeterse> So you're doing freelancing, consulting or starting your own startup?
<yorickpeterse> (well the latter is basically the former, heh)
<benlovell> freelancing
<yorickpeterse> Ah
<benlovell> mercenary
<benlovell> sellsword
<benlovell> etc
klmlfl has quit [Ping timeout: 258 seconds]
francisfish has quit [Remote host closed the connection]
<yorickpeterse> pirate
<yorickpeterse> I'm surprised you didn't go with Bengineering Ltd though
francisfish has joined #ruby-lang
<tbuehlmann> haha
ta has quit [Remote host closed the connection]
gjaldon has quit [Remote host closed the connection]
gjaldon has joined #ruby-lang
<benlovell> yeah i dropped the ball on this one
<benlovell> missed opportunity
<yorickpeterse> I swear if I ever start my own company it will have the dumbest name
<yorickpeterse> and I won't get any customers because of that
apeiros has quit [Remote host closed the connection]
mkaesz has quit [Ping timeout: 272 seconds]
apeiros has joined #ruby-lang
bsvineeth has quit [Remote host closed the connection]
pskosinski has joined #ruby-lang
apeiros has quit [Ping timeout: 260 seconds]
relix has quit [Read error: Connection reset by peer]
relix has joined #ruby-lang
dorei has joined #ruby-lang
postmodern has quit [Quit: Leaving]
bsvineeth has joined #ruby-lang
faces has joined #ruby-lang
kyb3r_ has quit [Read error: Connection reset by peer]
face has quit [Ping timeout: 260 seconds]
chussenot has quit [Quit: chussenot]
bruno- has joined #ruby-lang
fusillicode has quit [Ping timeout: 240 seconds]
apeiros has joined #ruby-lang
klmlfl has joined #ruby-lang
bruno- has quit [Ping timeout: 272 seconds]
klmlfl has quit [Ping timeout: 258 seconds]
shinnya has joined #ruby-lang
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dangerousdave has joined #ruby-lang
dangerousdave has quit [Client Quit]
dangerousdave has joined #ruby-lang
bsvineeth has quit [Remote host closed the connection]
mkaesz has joined #ruby-lang
bsvineeth has joined #ruby-lang
tkuchiki has joined #ruby-lang
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mkaesz has quit [Read error: Connection reset by peer]
mkaesz has joined #ruby-lang
Squarepy has joined #ruby-lang
shinnya has quit [Ping timeout: 250 seconds]
benlovell has quit [Ping timeout: 258 seconds]
j4cknewt has quit [Remote host closed the connection]
ta has joined #ruby-lang
j4cknewt has joined #ruby-lang
vvikus has quit [Quit: WeeChat 0.3.8]
Technodrome has quit [Quit: Technodrome]
shinnya has joined #ruby-lang
vvikus has joined #ruby-lang
j4cknewt has quit [Ping timeout: 272 seconds]
kek_ has quit [Read error: Connection reset by peer]
kek has joined #ruby-lang
bsvineeth has quit [Remote host closed the connection]
xtruder has joined #ruby-lang
mskaesz has joined #ruby-lang
mkaesz has quit [Read error: No route to host]
banister has joined #ruby-lang
ldnunes has joined #ruby-lang
cored has joined #ruby-lang
cored has joined #ruby-lang
Steve_Jobs has joined #ruby-lang
pskosinski has quit [Quit: Til rivido Idisti! | http://www.ido.li]
banister has quit [Read error: Connection reset by peer]
banister has joined #ruby-lang
bsvineeth has joined #ruby-lang
thomasxie has quit [Quit: Leaving.]
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
chussenot has joined #ruby-lang
bruno- has joined #ruby-lang
klmlfl has joined #ruby-lang
kwd_ has joined #ruby-lang
shinnya has quit [Read error: Connection reset by peer]
kwd has quit [Read error: Connection reset by peer]
cored has quit [Quit: leaving]
bruno- has quit [Ping timeout: 260 seconds]
klmlfl has quit [Ping timeout: 260 seconds]
tigefa has joined #ruby-lang
shinnya has joined #ruby-lang
Lewix has joined #ruby-lang
yfeldblum has quit [Remote host closed the connection]
workmad3 is now known as wm3|away
yfeldblum has joined #ruby-lang
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
shubhamgoyal has quit [Remote host closed the connection]
DEac- has quit [Read error: Connection reset by peer]
DEac-_ has joined #ruby-lang
shubhamgoyal has joined #ruby-lang
benlovell has joined #ruby-lang
yfeldblum has quit [Ping timeout: 245 seconds]
shubhamgoyal has quit [Ping timeout: 272 seconds]
banister has joined #ruby-lang
bsvineeth has quit [Remote host closed the connection]
gjaldon has quit [Remote host closed the connection]
relix has joined #ruby-lang
banister has quit [Client Quit]
Forgetful_Lion has quit [Remote host closed the connection]
Technodrome has joined #ruby-lang
[spoiler] has joined #ruby-lang
Mellett68 has quit [Ping timeout: 244 seconds]
apeiros has quit [Read error: Connection reset by peer]
apeiros has joined #ruby-lang
<maloik_> did anyone say pirate?
hahuang65 has quit [Ping timeout: 260 seconds]
<yorickpeterse> nay
yfeldblum has joined #ruby-lang
qba73 has quit [Remote host closed the connection]
yfeldblu_ has joined #ruby-lang
qba73 has joined #ruby-lang
yfeldblum has quit [Ping timeout: 245 seconds]
yfeldblum has joined #ruby-lang
<benlovell> yarrrr
yfeldblu_ has quit [Ping timeout: 245 seconds]
Miphix has quit [Quit: Leaving]
skammer3 has quit [Ping timeout: 260 seconds]
yfeldblum has quit [Ping timeout: 260 seconds]
skammer3 has joined #ruby-lang
tigefa has quit [Quit: Leaving]
ldnunes has quit [Quit: Leaving]
<whitequark> yorickpeterse: http://www.vandervossen.net/
unsymbol has quit [Ping timeout: 240 seconds]
Lewix has quit [Remote host closed the connection]
unsymbol has joined #ruby-lang
Lewix has joined #ruby-lang
<yorickpeterse> whitequark: what about it?
Lewix has quit [Ping timeout: 272 seconds]
Kero_ has quit [Ping timeout: 245 seconds]
bruno- has joined #ruby-lang
Kero has joined #ruby-lang
wm3|away has quit [Ping timeout: 258 seconds]
Kero is now known as Guest42863
klmlfl has joined #ruby-lang
ta has quit [Remote host closed the connection]
ldnunes has joined #ruby-lang
bruno- has quit [Ping timeout: 245 seconds]
jgpawletko has joined #ruby-lang
klmlfl has quit [Ping timeout: 272 seconds]
j4cknewt has joined #ruby-lang
miqui has joined #ruby-lang
Lewix has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
Miphix has joined #ruby-lang
Lewix has joined #ruby-lang
Mellett68 has joined #ruby-lang
Lewix_ has joined #ruby-lang
Lewix has quit [Ping timeout: 245 seconds]
wm3|away has joined #ruby-lang
sepp2k has quit [Quit: Konversation terminated!]
rcvalle has joined #ruby-lang
[spoiler] has quit [Remote host closed the connection]
banister has joined #ruby-lang
momomomomo has joined #ruby-lang
oleo has joined #ruby-lang
[spoiler] has joined #ruby-lang
whippythellama has joined #ruby-lang
cmhobbs has joined #ruby-lang
cmhobbs has joined #ruby-lang
spastorino has joined #ruby-lang
Technodrome has quit [Quit: Technodrome]
yfeldblum has joined #ruby-lang
wm3|away is now known as workmad3
emmesswhy has joined #ruby-lang
Technodrome has joined #ruby-lang
emmesswhy has quit [Client Quit]
yfeldblum has quit [Ping timeout: 260 seconds]
nathanstitt has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
j4cknewt has joined #ruby-lang
hagabaka has quit [Ping timeout: 250 seconds]
gjaldon has joined #ruby-lang
hagabaka has joined #ruby-lang
Mellett68 has quit [Ping timeout: 272 seconds]
j4cknewt has quit [Ping timeout: 245 seconds]
imkmf has joined #ruby-lang
imkmf_ has joined #ruby-lang
banister has joined #ruby-lang
Guest42863 has quit [Ping timeout: 260 seconds]
toysrough has quit [Max SendQ exceeded]
bruno- has joined #ruby-lang
chancancode has quit [Ping timeout: 272 seconds]
mattyohe has quit [Ping timeout: 272 seconds]
adambeynon has quit [Ping timeout: 272 seconds]
avdi_ has quit [Ping timeout: 272 seconds]
SkramX_ has quit [Ping timeout: 272 seconds]
Kero has joined #ruby-lang
benlakey_ has joined #ruby-lang
Kero is now known as Guest75750
th2389____ has quit [Ping timeout: 272 seconds]
benlakey has quit [Ping timeout: 272 seconds]
benlakey_ is now known as benlakey
Technodrome has quit [Quit: Technodrome]
loincloth has joined #ruby-lang
nomadicoder_ has quit [Ping timeout: 272 seconds]
th2389_____ has joined #ruby-lang
Technodrome has joined #ruby-lang
avdi_ has joined #ruby-lang
chussenot has quit [Quit: chussenot]
nomadicoder_ has joined #ruby-lang
stardiviner has quit [Quit: my website: http://stardiviner.dyndns-blog.com/]
SkramX_ has joined #ruby-lang
chancancode has joined #ruby-lang
adambeynon has joined #ruby-lang
banister has quit [Client Quit]
mattyohe has joined #ruby-lang
bsvineeth has joined #ruby-lang
bruno- has quit [Ping timeout: 260 seconds]
Missphoenix has joined #ruby-lang
chussenot has joined #ruby-lang
Phoenixmiss has joined #ruby-lang
Miphix has quit [Read error: Connection reset by peer]
bsvineeth has quit [Remote host closed the connection]
bsvineeth has joined #ruby-lang
Missphoenix has quit [Ping timeout: 240 seconds]
gjaldon has quit [Remote host closed the connection]
bsvineet_ has joined #ruby-lang
bsvineeth has quit [Read error: Connection reset by peer]
gjaldon has joined #ruby-lang
kimegede has quit [Quit: Leaving...]
thomasxie has joined #ruby-lang
Technodrome has quit [Quit: Technodrome]
Phoenixmiss has quit [Ping timeout: 258 seconds]
gjaldon has quit [Ping timeout: 260 seconds]
Mellett68 has joined #ruby-lang
bradcliffe has joined #ruby-lang
emmesswhy has joined #ruby-lang
imkmf has quit [Quit: Textual IRC Client: www.textualapp.com]
emmesswhy has quit [Client Quit]
mkaesz has joined #ruby-lang
mskaesz has quit [Read error: No route to host]
imkmf_ has quit [Ping timeout: 244 seconds]
Miphix has joined #ruby-lang
tkuchiki has quit [Remote host closed the connection]
AKASkip has quit [Ping timeout: 245 seconds]
gjaldon has joined #ruby-lang
tdy has quit [Ping timeout: 240 seconds]
bradcliffe has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bantic has joined #ruby-lang
yatish27 has joined #ruby-lang
tommylommykins is now known as sammylammykins
sammylammykins is now known as tommylommykins
yfeldblum has joined #ruby-lang
mskaesz has joined #ruby-lang
j4cknewt has joined #ruby-lang
mkaesz has quit [Ping timeout: 272 seconds]
bradcliffe has joined #ruby-lang
DEac-_ has quit [Ping timeout: 246 seconds]
klmlfl has joined #ruby-lang
klmlfl has quit [Remote host closed the connection]
klmlfl has joined #ruby-lang
klmlfl has quit [Remote host closed the connection]
<yorickpeterse> always nice for the AWS network to crap itself, but for the status page to claim everything is working fine
klmlfl has joined #ruby-lang
gjaldon has quit []
yfeldblum has quit [Ping timeout: 240 seconds]
<momomomomo> dat lack of distribution
<yorickpeterse> actually it's all distributed
emmesswhy has joined #ruby-lang
<yorickpeterse> but it doesn't work if all of AWS is down :P
<momomomomo> distributed in one zone?
<yorickpeterse> or at least SQS, which we use _everywhere_
<momomomomo> one zone != distributed
<yorickpeterse> momomomomo: SQS doesn't have different zones, only regions
<yorickpeterse> for EC2 we always use all zones in eu-west
<yorickpeterse> same with S3: only regions, no zones
emmesswhy has quit [Client Quit]
<momomomomo> in multiple regions?
<momomomomo> if one region goes down, then you’re up a creek
<momomomomo> if you’re across multiple and all are down, then boo aws
elia has quit [Quit: Computer has gone to sleep.]
SuMo_D has joined #ruby-lang
<yorickpeterse> multi-region setups are a total clusterfuck if you're using elasticache for example
<yorickpeterse> (which we have in some parts)
<yorickpeterse> elasticache security policies only work with security groups in the same region I believe
elia has joined #ruby-lang
|jemc| has quit [Quit: WeeChat 0.4.3]
<yorickpeterse> Same with RDS, though there you can at least add regular IPs
<yorickpeterse> (no, we're not using VPC)
<momomomomo> “By locating the clusters/nodes in different Availability Zones, you eliminate the chance that a failure, such as a power outage, in one Availability Zone will cause your entire system to fail. Testing has demonstrated that there is no significant latency difference between locating all nodes in one Availability Zone or spreading them across multiple Availability Zones. “
<canton7> it *is* more of a hassle. another example: a snapshot saved in one region can't be mounted in another
<momomomomo> maybe more of a hassle, but so is losing customers
chouhoulis has joined #ruby-lang
chouhoulis has quit [Remote host closed the connection]
shubhamgoyal has joined #ruby-lang
Steve_Jobs has quit [Read error: Connection reset by peer]
chouhoulis has joined #ruby-lang
<yorickpeterse> momomomomo: losing customers is not a problem in our setup
<yorickpeterse> That is, downtime does not result in that
<canton7> cost of having all your tools handle the myriad of random restrictions and gotchas imposed by multiple regions, vs the cost if a region goes down
<yorickpeterse> I could literally pull the plug of a whole bunch of systems and we'd be fine
kek has quit [Remote host closed the connection]
banister has joined #ruby-lang
<momomomomo> eh, I handle multiple dc with hardware, I imagine using an API is a little easier
<yorickpeterse> and again, in this case it seems SQS was down
<yorickpeterse> which only has regions, not zones
<momomomomo> though, the ‘gotchas’ are a bummer, no doubt
<yorickpeterse> You can not do cross-region SQS, they'd be physically separate queues
Steve_Jobs has joined #ruby-lang
<yorickpeterse> either way, seems AWS got its stuff back together
kek has joined #ruby-lang
<momomomomo> right, but witha backup, queues can be offloaded while the healthcheck detects that SQS 1 is down
<momomomomo> to SQS 2 in region 2
<yorickpeterse> momomomomo: No, that's impossible
<momomomomo> lol it’s impossible to have two queues?
<yorickpeterse> You can not have a queue itself automatically pump stuff over to another queue in a different region
<yorickpeterse> The redrive policy of SQS is region specific
<momomomomo> I’m not syaing that it dumps its contents (it’s already down)
<momomomomo> I’m saying you can redirect traffic via route 53
<yorickpeterse> I never said this involved route 53
<yorickpeterse> or any web traffic for that matter
<yorickpeterse> These are all background processes, SQS is literally all they use (and some of them our DBs, those are doing fine)
<momomomomo> well if you’re resolving an IP to send to the queue, route53 can handle that
<momomomomo> queue.mydomain.com directs to two servers while both are healthy; then, when one dies, it detects that, and only routes to one
<momomomomo> when it’s back up, it directs to two again
<yorickpeterse> ....you have no idea what SQS is do you?
<momomomomo> it’s a queue
<momomomomo> but new messages can still be sent while one is down; the previous messages will take longer to get through (until that region is back up)
<yorickpeterse> There's no EC2 instance to redirect traffic to, in fact, no traffic is going to EC2 directly
<yorickpeterse> The setup you're describing requires sending traffic to EC2 instances behind an ELB, only to have those send it to SQS
<yorickpeterse> That's an incredibly complex way of doing multi-region SQS
imkmf has joined #ruby-lang
kwd_ has quit [Quit: Sleeping now. ZZZzzz…]
<momomomomo> yorickpeterse: example coming up.
tdy has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
<momomomomo> Create a few of these http://imgur.com/xSrxWg4
benlovell has quit [Ping timeout: 250 seconds]
<momomomomo> then, put those in groups per region
<momomomomo> or, group them (as suggested) randomly
<momomomomo> set the random groupings to a single domain
<momomomomo> ie: queue.mydomain.com
<momomomomo> healthcheck to your requirements
<momomomomo> you can do your drive etc. but still ensure that new entries don’t hit the down servers
<yorickpeterse> That doesn't really help, you'd still have to handle the routing of traffic to the correct SQS endpoint
<yorickpeterse> Using R53 as a monitoring solution for SQS is kinda crazy
bruno- has joined #ruby-lang
<yorickpeterse> it's no more complex for me to just copy some of the affected parts to a different region
<yorickpeterse> Or to modify the apps so that they can switch SQS regions
<momomomomo> eh, depends on your application; I tend to think more of decoupling my consumers from producers
<momomomomo> thus the queue can be consumed by any consumer at any point
<yorickpeterse> ehm, we have that
<momomomomo> so it works easily, smoothly
<momomomomo> so then why do you have to route to the ‘correct’ sqs endpoint?
<yorickpeterse> we don't?
<yorickpeterse> I never said that
<momomomomo> route53 handles the removal of a down server
<yorickpeterse> The problem is this:
<momomomomo> yorickpeterse: That doesn't really help, you'd still have to handle the routing of traffic to the correct SQS endpoint
<yorickpeterse> we have N applications, independently using various AWS services
<yorickpeterse> momomomomo: I'll get there in a sec
<yorickpeterse> If one of those AWS services is down across the entire region, zones become useless. Then, you'd have to move regions
<yorickpeterse> In this case only SQS was down, so you'd only have to move that
<momomomomo> right, but you’re doing this manually
<yorickpeterse> You can just handle that in your application: get a "aws down error"? Switch to us-east-whatever
<momomomomo> my situation: the consumers an dproducers automatically detect which are down
klmlfl_ has joined #ruby-lang
<momomomomo> via dns
<momomomomo> no if else
<yorickpeterse> In your setup I'd have to not send my messages directly to SQS, but instead send it to a fucking EC2 instance via Route53
<momomomomo> no keeping track of what zones im using
<yorickpeterse> which then sends it to SQS
<yorickpeterse> that's batshit crazy
<momomomomo> no
<momomomomo> why would you do that? my imgur link showed a route 53 health check for sqs
<yorickpeterse> If you're only using the health checks it's even crazier
<yorickpeterse> That literally offers nothing better than the app reacting to an error
<momomomomo> so I resolve queue.x.com to east one time and maybe another zone the next
<momomomomo> sure it is: this is automatic and doesn’t require tracking or code
<yorickpeterse> it's like saying "we use pingdom to check if a URL is not working before we request said URL" - just request it, handle the error, done
<momomomomo> not really
<yorickpeterse> Perhaps we're talking about different things, but I prefer systems more of the Erlang way: just deal with failure
<momomomomo> it’s more akin to “I test if my server is down every 5 seconds, then, if it is, I automatically redirect all traffic to the UP server"
<yorickpeterse> In this case our handling is quite simple: log error, retry in a short amount of time (that is handled by SQS itself)
<momomomomo> and nobody keeps track of any state
AmBienCeD has quit [Remote host closed the connection]
<yorickpeterse> we don't lose data, customers never notice, etc
<momomomomo> how would you lose data in this set-up? if the server comes back with the data, it’s added back to the dns
bruno- has quit [Ping timeout: 272 seconds]
<momomomomo> and can be set to resolve 50/50
<yorickpeterse> "the server" what server, SQS?
<momomomomo> yes
<yorickpeterse> If you're _only_ using the health check, you still have to handle the redirecting yourself
<momomomomo> dude
<yorickpeterse> Unless you're sending SQS messages via your own Route 53 line
<yorickpeterse> which is....stupid
<yorickpeterse> (surprise, AWS already does that for you)
<momomomomo> that’s like saying “I’m using linux to use tmux"
<momomomomo> route 53 has routing built in
<momomomomo> that’s assumed
<yorickpeterse> ugh, you're missing the point
<workmad3> it's times like this that I wish I liked popcorn
<yorickpeterse> If you want to let Route 53 route the SQS traffic you *have* to submit your SQS messages to Route 53 so that whatever sits behind it redirects it
<yorickpeterse> That basically means I have to MITM the AWS API
<yorickpeterse> (or proxy, or w/e you'd call it)
klmlfl_ has quit [Ping timeout: 272 seconds]
<momomomomo> yep it adds little overhead
<yorickpeterse> "little"
<momomomomo> and automatic failover
yatish27_ has joined #ruby-lang
<momomomomo> little as in transport time
<yorickpeterse> here's how you do automatic failover in a few lines of Ruby:
yatish27 has quit [Ping timeout: 246 seconds]
<momomomomo> lol right, after you create your new sqs instance?
<yorickpeterse> begin; ....; rescue SomeNetworkError => error; retry_in_us_east(message); end
<momomomomo> and send over the actual ip/path of the sqs instance
dwknoxy has joined #ruby-lang
<momomomomo> to your code
<yorickpeterse> (assuming the region is down, otherwise you can just let SQS itself handle it)
danijoo has quit [Ping timeout: 250 seconds]
<yorickpeterse> SQS instance? ip path? Now you're just making shit up
|jemc| has joined #ruby-lang
<yorickpeterse> Perhaps we're talking about two completely different things, but you're not making any sense
kek has quit [Remote host closed the connection]
<momomomomo> really? is http://imgur.com/xSrxWg4 not the location of an SQS queue?
<workmad3> screw it... it tastes like cardboard, but it's context-appropriate...
* workmad3 munches popcorn
<yorickpeterse> momomomomo: jebus, read above, I've explained why that is nuts
<momomomomo> damn, I made that url up
danijoo has joined #ruby-lang
<momomomomo> eh I guess it’s just two different ways of handling redirection
ledestin_ has joined #ruby-lang
<momomomomo> 1) code it in, and pass knowledge of your SQS to your app (or get it from the amazon api on a trip), or 2) automatically do this via a middle layer
<momomomomo> at dns
<yorickpeterse> workmad3: the popcorn part only works if two oblivious dumbasses are discussing things, this is not the case
<yorickpeterse> momomomomo: ok trick question
<yorickpeterse> momomomomo: now what if Route 53 is down?
<yorickpeterse> (assume for a minute your DNS is not cached)
<momomomomo> route 53 aims for ~100% uptime; you should use multiple dns resolvers anyhow
<momomomomo> if you’re aiming to surpass route 53 that is
<momomomomo> which I doubt will happen
<yorickpeterse> or instead of smacking service on top of service (e.g. 15 DNS services just so you have a theoratical 100% uptime), you just handle it gracefully on app level in the first place
AmBienCeD has joined #ruby-lang
<yorickpeterse> In this particular case of my apps that's as simple as "Fukit, we'll try again in 15
<yorickpeterse> inutes"
<yorickpeterse> ffs
<yorickpeterse> * minutes
bsvineet_ has quit [Remote host closed the connection]
ledestin has quit [Ping timeout: 260 seconds]
ledestin_ is now known as ledestin
<yorickpeterse> ....you should know SLAs are bullshit
<yorickpeterse> there's no such thing as 100% uptime
<yorickpeterse> or 99%
<yorickpeterse> or 99,12398123901829038%
* workmad3 is happy with π% uptime
danijoo has quit [Ping timeout: 250 seconds]
Lewix_ is now known as lewix
lewix has joined #ruby-lang
lewix has quit [Changing host]
danijoo_ has joined #ruby-lang
bsvineeth has joined #ruby-lang
<yorickpeterse> SLAs are there to keep the lawyers happy, that's all
bsvineeth has quit [Read error: Connection reset by peer]
momomomomo_ has joined #ruby-lang
bsvineeth has joined #ruby-lang
<whitequark> well, SLAs make sense if they actually incur some kind of liability to the provider
<momomomomo_> oops, d/c
mistym has joined #ruby-lang
<yorickpeterse> whitequark: exactly, lawyer stuff
momomomomo has quit [Ping timeout: 260 seconds]
momomomomo_ is now known as momomomomo
<yorickpeterse> "I can charge you X amount of money because you didn't meet your SLA"
<yorickpeterse> it doesn't actually mean that the laws of physics state you'll actually have 99,99% uptime
<momomomomo> amazon only applies credits; 5 minutes gets you a day, >4 hours gets you 30
<whitequark> yorickpeterse: it means that you'll either have 99.99% of uptime or die as a company
<whitequark> well
<whitequark> or compensate the losses, but in practice you'll probably die
<whitequark> which is essentially the point
<workmad3> momomomomo: so route 53 could be down for 29 days out of a month and you'll get a month free... not exactly appropriate compensation if a service relies on it
<momomomomo> workmad3: right but I trust route 53 and accept that their 100% guarantee at their word
<yorickpeterse> whitequark: exactly, so in our setup we can deal with that
<yorickpeterse> if SQS is down tough luck, we'll just have delayed data processing for a while
<whitequark> yorickpeterse: that means you don't *need* an SLA.
<whitequark> which is fine.
<yorickpeterse> whitequark: correct, we don't have one either I believe
<whitequark> but there are people who absolutely do need an SLA.
j4cknewt has quit [Remote host closed the connection]
<yorickpeterse> My point being, you might need one, but it's not going to actually prevent/solve the problem, it will only compensate for it
<yorickpeterse> (but by then the damage has already been done)
<whitequark> disagree
<whitequark> the company bound with SLA doesn't want to die, so they maybe won't hire incompetent assholes
<whitequark> I mean, it's not a very hard guarantee, but it's still *something*
<momomomomo> silly silly
<momomomomo> the arguments have changed so much
yatish27_ has quit [Ping timeout: 272 seconds]
yfeldblum has joined #ruby-lang
unsymbol has quit [Ping timeout: 272 seconds]
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
yatish27 has joined #ruby-lang
imkmf has quit [Ping timeout: 246 seconds]
yatish27_ has joined #ruby-lang
tbuehlmann has quit [Remote host closed the connection]
yfeldblum has quit [Ping timeout: 244 seconds]
yatish27 has quit [Ping timeout: 245 seconds]
bradcliffe has quit [Read error: Connection reset by peer]
j4cknewt has joined #ruby-lang
unsymbol has joined #ruby-lang
imkmf has joined #ruby-lang
dangerousdave has joined #ruby-lang
charliesome has quit [Quit: zzz]
thomasxie has quit [Remote host closed the connection]
yatish27_ has quit [Remote host closed the connection]
yatish27 has joined #ruby-lang
wallerdev has joined #ruby-lang
Missphoenix has joined #ruby-lang
imkmf has quit [Ping timeout: 245 seconds]
jgpawletko is now known as jgpawletko_away
jgpawletko_away is now known as jgp_away
Missphoenix has quit [Client Quit]
skammer3 has quit [Ping timeout: 272 seconds]
momomomomo has quit [Ping timeout: 240 seconds]
Miphix has quit [Ping timeout: 272 seconds]
centrx has joined #ruby-lang
mskaesz has quit [Ping timeout: 240 seconds]
momomomomo has joined #ruby-lang
banister has joined #ruby-lang
shinnya has quit [Ping timeout: 245 seconds]
bsvineeth has quit [Remote host closed the connection]
skammer3 has joined #ruby-lang
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
mkaesz has joined #ruby-lang
bsvineeth has joined #ruby-lang
arooni-mobile has joined #ruby-lang
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
benlovell has joined #ruby-lang
danijoo_ has quit [Read error: Connection reset by peer]
momomomomo has quit [Read error: Connection reset by peer]
danijoo has joined #ruby-lang
_lexjm has joined #ruby-lang
momomomomo has joined #ruby-lang
DEac- has joined #ruby-lang
bruno- has joined #ruby-lang
kavinder has joined #ruby-lang
jxpx777 has joined #ruby-lang
luiz_lha has quit [Read error: Connection reset by peer]
luiz_ has joined #ruby-lang
emmesswhy has joined #ruby-lang
banister has quit [Ping timeout: 272 seconds]
klmlfl_ has joined #ruby-lang
luiz_ is now known as Guest73795
banister has joined #ruby-lang
benlovell has quit [Ping timeout: 244 seconds]
banister has quit [Max SendQ exceeded]
bruno- has quit [Ping timeout: 250 seconds]
banister has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 258 seconds]
klmlfl_ has quit [Ping timeout: 260 seconds]
__butch__ has joined #ruby-lang
DEac- has quit [Ping timeout: 245 seconds]
sharpmachine has joined #ruby-lang
banister has quit [Max SendQ exceeded]
kavinder has quit [Remote host closed the connection]
gjaldon has joined #ruby-lang
kgrz__ has quit [Read error: Connection reset by peer]
banister has joined #ruby-lang
arooni-mobile has joined #ruby-lang
bruno- has joined #ruby-lang
AngryEgret_afk is now known as AngryEgret
imkmf has joined #ruby-lang
chussenot has quit [Ping timeout: 245 seconds]
mistym has quit [Remote host closed the connection]
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
lewix has quit [Remote host closed the connection]
lewix has joined #ruby-lang
AngryEgret is now known as AngryEgret_afk
tkuchiki has joined #ruby-lang
ssvo has joined #ruby-lang
mikecmpbll has quit [Ping timeout: 260 seconds]
lewix has quit [Ping timeout: 240 seconds]
tkuchiki has quit [Ping timeout: 260 seconds]
lewix has joined #ruby-lang
RobertBirnie has joined #ruby-lang
skammer3 has quit [Ping timeout: 260 seconds]
gjaldon has quit [Remote host closed the connection]
kgrz has joined #ruby-lang
lewix has quit [Read error: Connection reset by peer]
wallerdev has quit [Quit: wallerdev]
gjaldon has joined #ruby-lang
lewix has joined #ruby-lang
kgrz has quit [Read error: Connection reset by peer]
mkaesz has quit [Quit: Leaving...]
mistym has joined #ruby-lang
gjaldon has quit [Ping timeout: 260 seconds]
gjaldon has joined #ruby-lang
oleo is now known as Guest43395
oleo__ has joined #ruby-lang
oleo__ has quit [Read error: Connection reset by peer]
lewix has quit [Remote host closed the connection]
AngryEgret_afk is now known as AngryEgret
Guest43395 has quit [Ping timeout: 250 seconds]
lewix has joined #ruby-lang
oleo__ has joined #ruby-lang
oleo__ is now known as oleo
bradcliffe has joined #ruby-lang
AngryEgret is now known as AngryEgret_afk
allomov has quit [Remote host closed the connection]
Cyrano has joined #ruby-lang
lewix has quit [Ping timeout: 260 seconds]
tylersmith has joined #ruby-lang
lewix has joined #ruby-lang
AngryEgret_afk is now known as AngryEgret
francisfish has quit [Remote host closed the connection]
ledestin_ has joined #ruby-lang
ledestin has quit [Ping timeout: 240 seconds]
ledestin_ is now known as ledestin
lewix has quit [Remote host closed the connection]
kgrz has joined #ruby-lang
lewix has joined #ruby-lang
lewix has quit [Read error: Connection reset by peer]
lewix has joined #ruby-lang
qba73 has quit []
bradcliffe has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
wallerdev has joined #ruby-lang
fusillicode has joined #ruby-lang
bruno- has quit [Ping timeout: 245 seconds]
klmlfl_ has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
DEac- has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 245 seconds]
klmlfl_ has quit [Ping timeout: 272 seconds]
banister has joined #ruby-lang
bradcliffe has joined #ruby-lang
ledestin has quit [Ping timeout: 258 seconds]
ledestin_ has joined #ruby-lang
kgrz_ has joined #ruby-lang
kgrz has quit [Ping timeout: 272 seconds]
yfeldblum has joined #ruby-lang
banister has quit [Read error: Connection reset by peer]
banister_ has joined #ruby-lang
ta has joined #ruby-lang
ikrima has joined #ruby-lang
mikecmpbll has joined #ruby-lang
fragamus has joined #ruby-lang
yfeldblum has quit [Ping timeout: 246 seconds]
banister_ has quit [Ping timeout: 245 seconds]
michaeldeol has joined #ruby-lang
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
solars has quit [Ping timeout: 245 seconds]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
bradcliffe has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
loincloth has quit [Remote host closed the connection]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
mistym has quit [Quit: Leaving...]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
momomomomo has quit [Ping timeout: 260 seconds]
momomomomo has joined #ruby-lang
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
killerintersekt has joined #ruby-lang
ldnunes has quit [Ping timeout: 272 seconds]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
ledestin_ has quit [Ping timeout: 260 seconds]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
karamazov has joined #ruby-lang
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
ledestin has joined #ruby-lang
killerintersekt has quit [Remote host closed the connection]
bin7me has joined #ruby-lang
ldnunes has joined #ruby-lang
kgrz has joined #ruby-lang
stamina has quit [Quit: WeeChat 1.0]
Cyrano has quit [Quit: Cyrano]
kgrz_ has quit [Ping timeout: 240 seconds]
p0pe has joined #ruby-lang
killerintersekt has joined #ruby-lang
bruno- has joined #ruby-lang
tbuehlmann has joined #ruby-lang
tris has quit [Remote host closed the connection]
benlovell has joined #ruby-lang
davispuh has joined #ruby-lang
wkoch has joined #ruby-lang
killerintersekt has quit [Remote host closed the connection]
dabradley has quit [Ping timeout: 260 seconds]
rcvalle has quit [Quit: rcvalle]
mikecmpbll has quit [Quit: i've nodded off.]
kgrz_ has joined #ruby-lang
rcvalle has joined #ruby-lang
chouhoul_ has joined #ruby-lang
mikecmpbll has joined #ruby-lang
workmad3 has quit [Ping timeout: 260 seconds]
relix has joined #ruby-lang
kgrz has quit [Ping timeout: 250 seconds]
chouhoulis has quit [Ping timeout: 240 seconds]
rsl has quit [Read error: Connection reset by peer]
rsl has joined #ruby-lang
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
banister has joined #ruby-lang
arooni-mobile has joined #ruby-lang
FiXato|VPS has quit [Ping timeout: 244 seconds]
rsl has quit [Read error: Connection reset by peer]
rsl has joined #ruby-lang
momomomomo has quit [Ping timeout: 260 seconds]
dabradley has joined #ruby-lang
FiXato|VPS has joined #ruby-lang
chouhoul_ has quit [Remote host closed the connection]
chouhoulis has joined #ruby-lang
momomomomo has joined #ruby-lang
kgrz_ has quit [Ping timeout: 245 seconds]
ldnunes has quit [Ping timeout: 246 seconds]
imkmf has quit [Ping timeout: 260 seconds]
MichD is now known as michd
ldnunes has joined #ruby-lang
rippa has joined #ruby-lang
omosoj has joined #ruby-lang
emmesswhy has quit [Quit: This computer has gone to sleep]
klmlfl_ has joined #ruby-lang
j4cknewt has joined #ruby-lang
benlovell has quit [Ping timeout: 272 seconds]
AKASkip has joined #ruby-lang
karamazov has quit []
emmesswhy has joined #ruby-lang
klmlfl_ has quit [Ping timeout: 272 seconds]
imkmf has joined #ruby-lang
mistym has joined #ruby-lang
p0pe has quit [Ping timeout: 246 seconds]
ssvo has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
kgrz has joined #ruby-lang
coolguy6699 has joined #ruby-lang
tris has joined #ruby-lang
jxpx777_ has joined #ruby-lang
jxpx777 has quit [Read error: Connection reset by peer]
arooni-mobile has quit [Ping timeout: 250 seconds]
gjaldon has quit []
sarkyniin has joined #ruby-lang
coolguy6699 has quit [Remote host closed the connection]
p0pe has joined #ruby-lang
ssvo has joined #ruby-lang
momomomomo has quit [Ping timeout: 260 seconds]
ledestin_ has joined #ruby-lang
tkuchiki has joined #ruby-lang
ledestin has quit [Ping timeout: 245 seconds]
ledestin_ is now known as ledestin
tbuehlmann has quit [Ping timeout: 244 seconds]
momomomomo has joined #ruby-lang
jgp_away is now known as jgpawletko
SuMo_D has joined #ruby-lang
bradcliffe has joined #ruby-lang
tkuchiki has quit [Ping timeout: 260 seconds]
francisfish has joined #ruby-lang
ikrima has quit [Ping timeout: 245 seconds]
bruno- has quit [Ping timeout: 260 seconds]
Paul_McFreely has quit [Quit: Computer has gone to sleep.]
Paul_McFreely has joined #ruby-lang
Mellett68 has quit [Ping timeout: 272 seconds]
karamazov has joined #ruby-lang
ssvo has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
SuMo_D has quit [Remote host closed the connection]
workmad3 has joined #ruby-lang
fusillicode has quit [Ping timeout: 272 seconds]
whippythellama has quit [Quit: whippythellama]
momomomomo has quit [Quit: momomomomo]
amsi has joined #ruby-lang
loincloth has joined #ruby-lang
sharpmachine has quit [Remote host closed the connection]
whippythellama has joined #ruby-lang
sharpmachine has joined #ruby-lang
arBmind has quit [Quit: Leaving.]
SuMo_D has joined #ruby-lang
Technodrome has joined #ruby-lang
btiefert has joined #ruby-lang
sharpmachine has quit [Ping timeout: 260 seconds]
lcdhoffman has joined #ruby-lang
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
vvikus has quit [Quit: WeeChat 0.3.8]
yfeldblum has joined #ruby-lang
emmesswhy has quit [Quit: This computer has gone to sleep]
klmlfl_ has joined #ruby-lang
kgrz has quit [Remote host closed the connection]
kgrz has joined #ruby-lang
Kailyn_Quitzon has joined #ruby-lang
hramrach_ has quit [Remote host closed the connection]
klmlfl_ has quit [Ping timeout: 250 seconds]
hramrach_ has joined #ruby-lang
sharpmachine has joined #ruby-lang
lewix has quit [Remote host closed the connection]
lewix has joined #ruby-lang
sepp2k has joined #ruby-lang
kgrz has quit [Ping timeout: 272 seconds]
wallerdev has quit [Quit: wallerdev]
lewix has quit [Ping timeout: 245 seconds]
Kailyn_Quitzon has quit [Remote host closed the connection]
arBmind has joined #ruby-lang
amsi has quit [Ping timeout: 245 seconds]
bradcliffe has quit [Remote host closed the connection]
bradcliffe has joined #ruby-lang
symm- has quit [Ping timeout: 245 seconds]
fragamus has quit [Quit: Computer has gone to sleep.]
mikeym has joined #ruby-lang
seanosaur has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
j4cknewt_ has joined #ruby-lang
michd is now known as MichD
loincloth has quit [Remote host closed the connection]
klmlfl has quit [Remote host closed the connection]
klmlfl has joined #ruby-lang
MichD is now known as michd
SuMo_D has quit [Remote host closed the connection]
j4cknewt has quit [Ping timeout: 260 seconds]
lcdhoffman has quit [Quit: lcdhoffman]
kgrz has joined #ruby-lang
kgrz has quit [Remote host closed the connection]
mistym has quit [Remote host closed the connection]
bradcliffe has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
kgrz has joined #ruby-lang
skammer3 has joined #ruby-lang
kgrz has quit [Ping timeout: 272 seconds]
mikeym has quit [Max SendQ exceeded]
mikeym has joined #ruby-lang
mikeym has quit [Max SendQ exceeded]
skammer3 has quit [Ping timeout: 240 seconds]
mikeym has joined #ruby-lang
mikeym has quit [Max SendQ exceeded]
mikeym has joined #ruby-lang
mikeym has quit [Max SendQ exceeded]
symm- has joined #ruby-lang
mikeym has joined #ruby-lang
mikeym has quit [Max SendQ exceeded]
mikeym has joined #ruby-lang
mikeym has quit [Max SendQ exceeded]
Steve_Jobs has quit [Quit: WeeChat 0.4.2]
DivineEntity has quit [Ping timeout: 245 seconds]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
p0pe has quit [Ping timeout: 246 seconds]
[spoiler] has quit [Quit: Leaving]
bradcliffe has joined #ruby-lang
loincloth has joined #ruby-lang
kimegede has joined #ruby-lang
bradcliffe has quit [Ping timeout: 246 seconds]
francisfish has quit [Remote host closed the connection]
allomov has joined #ruby-lang
j4cknewt_ has quit [Remote host closed the connection]
DivineEntity has joined #ruby-lang
omosoj has quit [Ping timeout: 272 seconds]
yatish27 has quit [Remote host closed the connection]
yatish27 has joined #ruby-lang
wallerdev has joined #ruby-lang
diegoviola has joined #ruby-lang
yatish27 has quit [Ping timeout: 260 seconds]
jbardin has quit [Quit: jbardin]
klmlfl_ has joined #ruby-lang
fragamus has joined #ruby-lang
michaeldeol has joined #ruby-lang
benanne has joined #ruby-lang
_ht has quit [Remote host closed the connection]
kgrz has joined #ruby-lang
klmlfl_ has quit [Ping timeout: 272 seconds]
Technodrome has quit [Quit: Technodrome]
emmesswhy has joined #ruby-lang
michd is now known as MichD
kgrz has quit [Ping timeout: 260 seconds]
Technodrome has joined #ruby-lang
yalue has quit [Quit: Leaving]
elia has quit [Quit: Computer has gone to sleep.]
MichD is now known as michd
fragamus has quit [Quit: Computer has gone to sleep.]
amerine has joined #ruby-lang
yatish27 has joined #ruby-lang
amsi has joined #ruby-lang
elia has joined #ruby-lang
bin7me has quit [Read error: Connection reset by peer]
francisfish has joined #ruby-lang
elia has quit [Client Quit]
matp has joined #ruby-lang
jbardin has joined #ruby-lang
tkuchiki has joined #ruby-lang
diegoviola has quit [Remote host closed the connection]
tkuchiki has quit [Ping timeout: 244 seconds]
tkuchiki has joined #ruby-lang
mistym has joined #ruby-lang
francisfish has quit [Remote host closed the connection]
_lexjm has quit [Quit: Textual IRC Client: www.textualapp.com]
__butch__ has quit [Quit: Leaving.]
tkuchiki has quit [Ping timeout: 260 seconds]
j4cknewt has joined #ruby-lang
omosoj has joined #ruby-lang
benanne has quit [Quit: kbai]
elia has joined #ruby-lang
elia has quit [Client Quit]
arooni-mobile has joined #ruby-lang
ledestin_ has joined #ruby-lang
ledestin has quit [Ping timeout: 260 seconds]
ledestin_ is now known as ledestin
bradcliffe has joined #ruby-lang
emmesswhy has quit [Quit: This computer has gone to sleep]
ikrima has joined #ruby-lang
fusillicode has joined #ruby-lang
diegoviola has joined #ruby-lang
stamina has joined #ruby-lang
fusillicode1 has joined #ruby-lang
ikrima has quit [Read error: Connection reset by peer]
ikrima_ has joined #ruby-lang
skammer3 has joined #ruby-lang
fusillicode has quit [Ping timeout: 244 seconds]
emmesswhy has joined #ruby-lang
karamazov has quit [Remote host closed the connection]
hramrach_ has quit [Remote host closed the connection]
karamazov has joined #ruby-lang
yatish27 has quit [Remote host closed the connection]
hramrach_ has joined #ruby-lang
elia has joined #ruby-lang
elia has quit [Client Quit]
karamazov has quit [Ping timeout: 246 seconds]
bradcliffe has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
AngryEgret is now known as AngryEgret_afk
AngryEgret_afk is now known as AngryEgret
klmlfl_ has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 260 seconds]
j4cknewt has quit [Remote host closed the connection]
sarkyniin has quit [Ping timeout: 260 seconds]
workmad3 has quit [Ping timeout: 272 seconds]
klmlfl has quit [Ping timeout: 260 seconds]
postmodern has joined #ruby-lang
klmlfl_ has quit [Ping timeout: 246 seconds]
klmlfl has joined #ruby-lang
diegoviola has quit [Quit: WeeChat 1.0]
klmlfl has quit [Ping timeout: 240 seconds]
karamazov has joined #ruby-lang
Guest73795 has quit [Read error: Connection reset by peer]
ssvo has joined #ruby-lang
imkmf_ has joined #ruby-lang
xtruder has quit []
imkmf has quit [Ping timeout: 272 seconds]
tkuchiki has joined #ruby-lang
klmlfl has joined #ruby-lang
j4cknewt has joined #ruby-lang
zz_dlu has quit [Ping timeout: 260 seconds]
ldnunes has quit [Quit: Leaving]
tkuchiki has quit [Ping timeout: 258 seconds]
cleopatra has joined #ruby-lang
zz_dlu has joined #ruby-lang
Technodrome has quit [Quit: Technodrome]
charliesome has joined #ruby-lang
Technodrome has joined #ruby-lang
dorei has quit []
kimegede has quit [Quit: Leaving...]
omosoj has quit [Quit: Leaving]
skammer3 has quit [Ping timeout: 260 seconds]
elia has joined #ruby-lang
sepp2k has quit [Quit: Leaving.]
charliesome has quit [Quit: zzz]
sepp2k has joined #ruby-lang
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
saarinen has joined #ruby-lang
seanosaur has quit [Remote host closed the connection]
_elia has joined #ruby-lang
saarinen has quit [Ping timeout: 260 seconds]
elia has quit [Ping timeout: 245 seconds]
imkmf_ has quit [Quit: Textual IRC Client: www.textualapp.com]
Squarepy has quit [Remote host closed the connection]
allomov has quit [Remote host closed the connection]
_elia has quit [Ping timeout: 245 seconds]
nathanstitt has quit [Quit: I growing sleepy]
miqui has quit [Remote host closed the connection]
arooni-mobile has joined #ruby-lang
imkmf has joined #ruby-lang
skammer3 has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
klmlfl_ has joined #ruby-lang
jgpawletko has quit [Quit: jgpawletko]
kgrz has joined #ruby-lang
lewix has joined #ruby-lang
klmlfl_ has quit [Ping timeout: 260 seconds]
lewix has quit [Remote host closed the connection]
lewix has joined #ruby-lang
lewix has quit [Read error: Connection reset by peer]
lewix has joined #ruby-lang
tylersmith has quit [Remote host closed the connection]
cmhobbs has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
kgrz has quit [Ping timeout: 244 seconds]
amerine has quit [Ping timeout: 272 seconds]
Technodrome has quit [Ping timeout: 260 seconds]
momomomomo has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 245 seconds]
chouhoul_ has joined #ruby-lang
amerine has joined #ruby-lang
karamazov has quit []
workmad3 has joined #ruby-lang
chouhoulis has quit [Ping timeout: 260 seconds]
nathanstitt has joined #ruby-lang
nathanstitt has quit [Client Quit]
whippythellama has quit [Quit: whippythellama]
bantic has quit [Quit: bantic]
charliesome has joined #ruby-lang
allomov has joined #ruby-lang
AKASkip has quit [Ping timeout: 260 seconds]
francisfish has joined #ruby-lang
charliesome has quit [Client Quit]
charliesome has joined #ruby-lang
amerine has quit [Quit: bye]
j4cknewt has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
amerine has joined #ruby-lang
francisfish has quit [Ping timeout: 245 seconds]
hahuang65 has joined #ruby-lang
workmad3 has quit [Ping timeout: 244 seconds]
yatish27 has joined #ruby-lang
j4cknewt has quit [Ping timeout: 240 seconds]
elia has joined #ruby-lang
|jemc| has quit [Read error: Connection reset by peer]
bruno- has joined #ruby-lang
hahuang65 has quit [Ping timeout: 260 seconds]
elia has quit [Quit: Computer has gone to sleep.]
j4cknewt has joined #ruby-lang
bruno- has quit [Ping timeout: 260 seconds]
bruno- has joined #ruby-lang
allomov has quit [Remote host closed the connection]
allomov has joined #ruby-lang
klmlfl_ has joined #ruby-lang
bruno- has quit [Ping timeout: 245 seconds]
diegoviola has joined #ruby-lang
jxie_ has quit [Quit: leaving]
klmlfl_ has quit [Ping timeout: 260 seconds]
imkmf has quit [Ping timeout: 245 seconds]
marr has quit [Ping timeout: 272 seconds]
skammer3 has quit [Ping timeout: 250 seconds]
j4cknewt has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
face has joined #ruby-lang
symm- has quit [Quit: Leaving...]
faces has quit [Ping timeout: 272 seconds]
centrx has quit [Quit: The plan is programmed into every one of my one thousand robots]
j4cknewt_ has joined #ruby-lang
ohsix has quit [Ping timeout: 260 seconds]
ohsix has joined #ruby-lang
allomov has quit [Remote host closed the connection]
Cleora_Kunze31 has joined #ruby-lang
elia has joined #ruby-lang
tylersmith has joined #ruby-lang
seanosaur has joined #ruby-lang
j4cknewt has quit [Ping timeout: 240 seconds]
mikecmpbll has quit [Quit: i've nodded off.]
stamina has quit [Ping timeout: 258 seconds]
Cleora_Kunze31 has quit [Ping timeout: 246 seconds]
bruno- has joined #ruby-lang
wallerdev has quit [Quit: wallerdev]
chouhoulis has joined #ruby-lang
chouhoul_ has quit [Read error: Connection reset by peer]
j4cknewt_ has quit [Remote host closed the connection]
lewix has quit [Remote host closed the connection]
elia has quit [Quit: Computer has gone to sleep.]
bruno- has quit [Ping timeout: 240 seconds]
lewix has joined #ruby-lang
Margaretta_Gorcz has joined #ruby-lang
imkmf has joined #ruby-lang
cleopatra has quit [Ping timeout: 272 seconds]
imkmf has quit [Client Quit]
lewix has quit [Ping timeout: 260 seconds]
jxie has joined #ruby-lang
lewix has joined #ruby-lang
wallerdev has joined #ruby-lang
bantic has joined #ruby-lang