apeiros changed the topic of #ruby-lang to: Nick registration required to talk || Ruby 2.0.0-p247: http://ruby-lang.org (Ruby 1.9.3-p448) || Paste >3 lines of text on http://gist.github.com
<julian__2>
I don't want to add the BG color as an attribut though
<julian__2>
I want the BG color to be one, global variable
<julian__2>
I haven't defined the Window class, I mean. It's part of the library
<julian__2>
so it's not easy to create a BG attribute. But like I say, I don't want to have to pass a parameter for the BG color every single time I call blank_window because the BG color will always be the same.
<toretore>
well, if it's not part of the curses library it should only bein your own code
rickhull has quit [Quit: Leaving.]
<toretore>
so you can have a def blank(window); window.fill_all(1); end
<toretore>
there is no reason to try and add it to the library
Barrin6 has quit [Quit: HydraIRC -> http://www.hydrairc.com <- Would you like to know more?]
<julian__2>
toretore: aright,
<toretore>
just because ruby lets you meddle with every class that exists doesn't mean you should ;0
<toretore>
;)
<toretore>
most of the time you should leave classes that aren't your own alone
Coincidental has quit [Remote host closed the connection]
<julian__2>
toretore: Ah okay then. What's so bad about defining a method in an object? :)
<julian__2>
I mean surely it's the only way to create self methods for objects?
<toretore>
on an object, nothing. on a class, lots of things
Coincidental has joined #ruby-lang
<toretore>
def myWindow.clear; …; end
<julian__2>
I meant on a class of Object
<julian__2>
confusing :L
<julian__2>
what's so bad about a method in a class?
<toretore>
defining methods in Object is definitely a bad idea
<julian__2>
right. Everything's working and it's clear what's going on.
<julian__2>
Does it slow things down?
<julian__2>
Make things buggy somehow?
<toretore>
it will result in bugs, yes
<toretore>
given enough time
<julian__2>
ah right, okay.
<julian__2>
In curses, each window instance is an object. How should I write self methods for them?
<toretore>
what do you mean by self methods?
<julian__2>
class Object def say_hello self.addstr "hello" end end
<julian__2>
window1.say_hello #=> "hello"
<julian__2>
like that
<toretore>
def window1.say_hello; ... end
Coincidental has quit [Ping timeout: 240 seconds]
<julian__2>
but that's not dynamic?
<julian__2>
what if I had
<julian__2>
wind2.say_hello
<toretore>
just imagine it's not possible to define methods in classes which you didn't write yourself and you'll be ok
martndemus has joined #ruby-lang
<toretore>
do you?
<julian__2>
well I don't make a habit of it :L
<toretore>
if you really want a class with say_hello, create your own that inherits from Window
<toretore>
but Window isn't yours to touch
<julian__2>
Ah right, I like the sound of that!
<julian__2>
could I have an example?
<ErwinNH>
Thanks for your help guys, I'm out for the night.
ErwinNH has quit [Quit: Leaving]
<toretore>
class MyWindow < Window; def say_hello; …; end; end
<toretore>
window1 = MyWindow.new
ckim has quit [Remote host closed the connection]
<julian__2>
window1.say_hello
<toretore>
this is all pretty basic ruby; you should read the "programming ruby" book, it's free online
ckim has joined #ruby-lang
x0f_ has quit [Ping timeout: 240 seconds]
<julian__2>
I have read a few books on Ruby
<julian__2>
it's not like I don't understand what you've just done
<julian__2>
but I will look into that
<julian__2>
thanks for help
ikrima has joined #ruby-lang
martndemus has quit [Ping timeout: 240 seconds]
ckim_ has joined #ruby-lang
ckim_ has quit [Remote host closed the connection]
ckim has quit [Ping timeout: 248 seconds]
ckim has joined #ruby-lang
x0f has joined #ruby-lang
ckim has quit [Ping timeout: 240 seconds]
elia has quit [Quit: Computer has gone to sleep.]
richardburton has joined #ruby-lang
richardburton has quit [Client Quit]
GaelanAintAround is now known as Gaelan
Ahti333 has joined #ruby-lang
hfp has quit [Ping timeout: 256 seconds]
hfp has joined #ruby-lang
nathanstitt has joined #ruby-lang
hfp_ has joined #ruby-lang
Johz_ has joined #ruby-lang
Johz has quit [Ping timeout: 240 seconds]
hfp has quit [Ping timeout: 248 seconds]
hfp_ is now known as hfp
bg451 has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
flip_digits has quit [Remote host closed the connection]
flip_digits has joined #ruby-lang
flip_digits has quit [Remote host closed the connection]
flip_digits has joined #ruby-lang
havenwood has joined #ruby-lang
ckim has joined #ruby-lang
zz_michael_mbp is now known as michael_mbp
jonahR has joined #ruby-lang
hogeo has joined #ruby-lang
heftig has quit [Quit: Quitting]
michael_mbp is now known as zz_michael_mbp
tkuchiki has joined #ruby-lang
tkuchiki has quit [Read error: Connection reset by peer]
tkuchiki has joined #ruby-lang
Tearan has joined #ruby-lang
hogeo has quit [Ping timeout: 240 seconds]
toretore has quit [Quit: Leaving]
alexju has quit [Remote host closed the connection]
alexju has joined #ruby-lang
bg451 has quit [Remote host closed the connection]
hogeo has joined #ruby-lang
Gaelan is now known as GaelanAintAround
GaelanAintAround is now known as Gaelan
shinnya has quit [Ping timeout: 240 seconds]
cnivolle_ has quit [Remote host closed the connection]
cnivolle has joined #ruby-lang
alexju has quit [Ping timeout: 248 seconds]
ikrima has quit [Ping timeout: 272 seconds]
dhruvasagar has joined #ruby-lang
postmodern has joined #ruby-lang
cnivolle has quit [Ping timeout: 248 seconds]
ikrima has joined #ruby-lang
Ahti333 has quit [Quit: Computer has gone to sleep.]
flip_digits has quit [Remote host closed the connection]
flip_digits has joined #ruby-lang
flip_digits has quit [Read error: Connection reset by peer]
flip_digits has joined #ruby-lang
martndemus has joined #ruby-lang
lfox has joined #ruby-lang
flip_digits has quit [Read error: Connection reset by peer]
flip_dig_ has joined #ruby-lang
ruskie has joined #ruby-lang
stamina has quit [Ping timeout: 248 seconds]
martndemus has quit [Ping timeout: 272 seconds]
kgrz has joined #ruby-lang
flip_dig_ has quit [Remote host closed the connection]
kgrz has quit [Ping timeout: 241 seconds]
bzalasky has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
havenwood has quit [Ping timeout: 240 seconds]
bzalasky has quit [Ping timeout: 256 seconds]
dhruvasagar has quit [Ping timeout: 272 seconds]
dhruvasagar has joined #ruby-lang
Johz_ has quit [Quit: Leaving]
dorei has quit [Ping timeout: 248 seconds]
micalexander has joined #ruby-lang
mistym has quit [Remote host closed the connection]
micalexander has quit [Ping timeout: 265 seconds]
r0bglees0n has joined #ruby-lang
diegoviola has joined #ruby-lang
justinmc_ has joined #ruby-lang
justinmc_ has quit [Remote host closed the connection]
bastilian has joined #ruby-lang
r0bgleeson has quit [Ping timeout: 248 seconds]
ckim has quit [Remote host closed the connection]
ckim has joined #ruby-lang
Domon has joined #ruby-lang
ckim has quit [Ping timeout: 256 seconds]
rickhull has joined #ruby-lang
nisstyre has quit [Quit: Leaving]
nathanstitt has quit [Quit: I growing sleepy]
micalexander has joined #ruby-lang
havenwood has joined #ruby-lang
fuhgeddaboudit has joined #ruby-lang
Gaelan is now known as GaelanAintAround
GaelanAintAround is now known as Gaelan
heftig has joined #ruby-lang
martndemus has joined #ruby-lang
micalexander has quit [Ping timeout: 245 seconds]
martndemus has quit [Ping timeout: 265 seconds]
ruskie has quit [Excess Flood]
symm- has quit [Ping timeout: 272 seconds]
nofxx has joined #ruby-lang
Coincide_ has joined #ruby-lang
nathanstitt has joined #ruby-lang
Gaelan is now known as GaelanAintAround
GaelanAintAround is now known as Gaelan
mistym has joined #ruby-lang
ruskie has joined #ruby-lang
alexju has joined #ruby-lang
ikrima has quit [Ping timeout: 248 seconds]
ikrima has joined #ruby-lang
micalexander has joined #ruby-lang
Barrin6 has joined #ruby-lang
<Barrin6>
i'm back
Elico has quit [Quit: Elico]
dhruvasagar has quit [Ping timeout: 248 seconds]
fuhgeddaboudit has quit [Ping timeout: 272 seconds]
jithu has joined #ruby-lang
kurko_ has quit [Ping timeout: 265 seconds]
julian__2 has quit [Ping timeout: 272 seconds]
kurko_ has joined #ruby-lang
lfox has quit [Quit: ZZZzzz…]
Coincide_ has quit [Remote host closed the connection]
epitron has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
Coincidental has joined #ruby-lang
epitron has joined #ruby-lang
epitron has quit [Changing host]
epitron has joined #ruby-lang
kgrz has joined #ruby-lang
Coincidental has quit [Ping timeout: 256 seconds]
MrPoT4tO has joined #ruby-lang
jithu has quit [Quit: Mother, did it need to be so high?]
martndemus has joined #ruby-lang
vlad_starkov has joined #ruby-lang
samuelkadolph has quit [Ping timeout: 248 seconds]
jds has quit [Ping timeout: 248 seconds]
levifig has quit [Ping timeout: 248 seconds]
akahn has quit [Ping timeout: 248 seconds]
martndemus has quit [Ping timeout: 256 seconds]
randym_ has quit [Ping timeout: 248 seconds]
jacknagel has quit [Ping timeout: 248 seconds]
FlyingLeap has quit [Read error: Connection reset by peer]
FlyingLeap has joined #ruby-lang
jds has joined #ruby-lang
akahn has joined #ruby-lang
randym_ has joined #ruby-lang
jacknagel has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 240 seconds]
samuelkadolph has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
levifig has joined #ruby-lang
kurko_ has quit [Quit: Computer has gone to sleep.]
<Lench>
maloik: yea, i tested it too. it does make a difference!
martndemus has quit [Ping timeout: 272 seconds]
<Lench>
got rid of the output stuff, hope this helps too
martndemus has joined #ruby-lang
<maloik>
oh it should
<maloik>
rewriting the commandline tends to take up a lot of time
<maloik>
the terminal I mean
<Lench>
do you think it might help to add more cpu cores?
<maloik>
no idea :-) sort of doubt it
<Lench>
but cpu is the only thing that loop seems to leech hah
stevepsharpe has joined #ruby-lang
<maloik>
just throwing cores at the process probably won't help, but what you can do is create new threads and execute them in parallell for every 2500 or so loops
dhruvasagar has joined #ruby-lang
<maloik>
and by can do I mean "can try" as again this is really far away from my daily tasks ;-)
adambeynon has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
<havenwood>
blowmage: yeah, that was my suspicion, as it worked for me in 4 and seemingly not in 5
<imperator>
havenwood, ruby association prize
<imperator>
oops, my bad, he's a finalist, not a winner (yet)
<havenwood>
imperator: oh wow, awesome!
<havenwood>
zzak: grats!
<imperator>
i thought all 3 won, but apparently there's only 1 winner
<imperator>
havenwood, nm, just a finalist for now
<asahi>
hello, I'm wondering how I can parse out the text in quotes in something like the following string: 1.2.3.4 - - [17/Oct/2013:16:22:42 -0400] "GET /s1/path HTTP/1.1" 200 0 "http://domain.com/path" "Mozilla/5.0 (Windows NT 5.1; rv:15.0) Gecko/20100101 Firefox/15.0"
<imperator>
still, nice
<havenwood>
indeed!
<cout>
I don't think I have any fonts with those emoji characters
<havenwood>
<dorei>
asahi: maybe something like scan(/\"[^\"]+\"/)
<dorei>
asahi: your_string.scan(some_regexp)
<asahi>
dorei: i see. that helps thank you
diegoviola has joined #ruby-lang
skade has joined #ruby-lang
tough_griff has joined #ruby-lang
vlad_starkov has joined #ruby-lang
zz_michael_mbp is now known as michael_mbp
<cout>
hmm, I wonder why this doesn't work
<cout>
ruby -r <( echo 'puts "HI"' ) -e ''
vlad_starkov has quit [Remote host closed the connection]
Johz has joined #ruby-lang
<dorei>
why should it work? :p
arBmind has quit [Quit: Leaving.]
bantic has quit [Quit: bantic]
vlad_starkov has joined #ruby-lang
michael_mbp is now known as zz_michael_mbp
<havenwood>
cout: -r library Causes Ruby to load the library using require. It is useful when using -n or -p.
<cout>
dorei: <( ... ) in bash executes a command and sends the output to a pipe, then passes the filename of the pipe in as a command-line argument
<dorei>
nop
<cout>
dorei: e.g. cat <( echo 'puts "HI"') does what one would expect
<dorei>
it redirects stdin i think
<cout>
no that's >( ... )
<dorei>
that's stdout redirection i think
JohnBat26 has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 248 seconds]
<cout>
anyway the eror is strange (cannot load such file)
Coincidental has quit [Remote host closed the connection]
<dorei>
yeap
<asahi>
got another regex question. how can i capture the content inside [] brackets? for example: 1.2.3.4 - - [17/Oct/2013:16:22:42 -0400] "GET /s1/path HTTP/1.1"
Coincidental has joined #ruby-lang
<dorei>
asahi: the same trick, /\[[^\[]\[/
<dorei>
asahi: oops, /\[[^\[]*\[/
<dorei>
hmm, i messed it :D
TTilus has joined #ruby-lang
<dorei>
the correct one is /\[[^\]]*\]/
fuhgeddaboudit has quit [Ping timeout: 272 seconds]
<asahi>
dorei: ahh i see thanks. i kept confusing myself :-/
saarinen has quit [Quit: saarinen]
Coincidental has quit [Ping timeout: 272 seconds]
saarinen has joined #ruby-lang
Johz has quit [Read error: Connection reset by peer]
hakunin has quit [Read error: Operation timed out]
iraja has quit [Remote host closed the connection]
Johz has joined #ruby-lang
hakunin has joined #ruby-lang
iraja has joined #ruby-lang
<asahi>
one more question. If I do DateTime.parse("17/Oct/2013:16:22:42 -0400") I get a syntax error. any ideas on what I need to do?
<maloik>
I've been struggling with that problem for a while and not sure if it's very elegant
<maloik>
my tests pass so I'm pretty sure it works but still
vlad_starkov has joined #ruby-lang
postmodern has joined #ruby-lang
mrpot4to_ has quit [Read error: Connection reset by peer]
MrPoT4tO has joined #ruby-lang
Squarepy_ has quit [Quit: Leaving]
skade has quit [Quit: Computer has gone to sleep.]
charlies_ has joined #ruby-lang
xcesariox has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
charliesome has quit [Disconnected by services]
charlies_ is now known as charliesome
diegoviola has quit [Ping timeout: 272 seconds]
skade has joined #ruby-lang
bantic has joined #ruby-lang
brianpWins has joined #ruby-lang
asahi has left #ruby-lang [#ruby-lang]
Rarrikins has quit [Ping timeout: 272 seconds]
kek has joined #ruby-lang
Rarrikins has joined #ruby-lang
<yorickpeterse>
looks fine by me, maybe put the OpeningHour.new(....) stuff in a helper method of some sort
brianpWins has quit [Ping timeout: 248 seconds]
<yorickpeterse>
so you'd call it something like `create_opening_hour(start_time, end_time)`
<maloik>
you mean in the test ?
<yorickpeterse>
saves some typing but that's all
<yorickpeterse>
yes
<maloik>
fair enough
kek has quit [Remote host closed the connection]
kek has joined #ruby-lang
brianpWins has joined #ruby-lang
kek has quit [Read error: Connection reset by peer]
kek has joined #ruby-lang
<maloik>
I cant believe how much time I spent on that shitty problem
<maloik>
I just couldnt wrap my head around it for the longest time
MaddinXx has quit [Remote host closed the connection]
kek has quit [Remote host closed the connection]
kek has joined #ruby-lang
diegoviola has joined #ruby-lang
kek has quit [Read error: No route to host]
kek has joined #ruby-lang
<yxhuvud>
break out seconds_since_midnight..seconds_since_midnight + duration).include? to a method.
<apeiros>
also while numeric ranges are special cased - use Range#cover? when you don't want to enumerate your range just to check whether a value is within its boundaries.
saarinen has quit [Quit: saarinen]
<yxhuvud>
um. wait a minute. Does it really say 'def self.initialize'? *boggle*
stamina has quit [Ping timeout: 248 seconds]
<apeiros>
oh, indeed
<apeiros>
maloik: a) self.initialize would be a class method which is wrong, b) you should never override initialize in AR models. use after_initialize
jithu has quit [Quit: Mother, did it need to be so high?]
kek has quit [Remote host closed the connection]
kek has joined #ruby-lang
<apeiros>
maloik: also you override your attr_accessor's later, so you can just drop them.
saarinen has joined #ruby-lang
torrieri has quit [Ping timeout: 252 seconds]
Ropz has joined #ruby-lang
torrieri has joined #ruby-lang
kek has quit [Ping timeout: 245 seconds]
<tubbo>
yxhuvud: my coworker just showed me this lovely piece of code: `module Client; def self.new(attributes); Client::Client.new(attributes); end; end` :D
<tubbo>
it's so you don't have to type OurProgramClient::Client
<tubbo>
because the code was originally just OurProgramClient
<tubbo>
plus i feel like that looks better
<maloik>
apeiros: good feedback thanks a bunch, will take care of that
<maloik>
actually apeiros I didn't quite get what you mean by Range#cover
<maloik>
oh hang on... it just uses < and > to check if a value is within the range rather than turning the range into an array or something like that, is that what you mean ?
olleicua has joined #ruby-lang
<yorickpeterse>
man, the Smalltalk-80 "Bluebook" is some nice reading material
<yorickpeterse>
(I'm dead serious here)
<imperator>
it's dead jim
<yorickpeterse>
My name is not jim
bastilian has quit [Quit: Leaving...]
rickhull has quit [Quit: Leaving.]
olleicua3 has joined #ruby-lang
olleicua3 has quit [Client Quit]
JohnBat26|2 has joined #ruby-lang
kgrz has quit [Remote host closed the connection]
kgrz has joined #ruby-lang
<apeiros>
maloik: yes, Range#include? enumerates the range to check. for numeric values it's the same as cover?, though
bastilian has joined #ruby-lang
JohnBat26|3 has joined #ruby-lang
<maloik>
fantastic, good to know :)
JohnBat26 has quit [Ping timeout: 272 seconds]
dwknoxy has joined #ruby-lang
brianpWins has quit [Quit: brianpWins]
kgrz has quit [Ping timeout: 248 seconds]
torrieri has quit [Quit: Leaving...]
martndemus has joined #ruby-lang
bean_ has joined #ruby-lang
olleicua_ has joined #ruby-lang
JohnBat26|2 has quit [Ping timeout: 245 seconds]
torrieri has joined #ruby-lang
<olleicua_>
I have a class with a bunch of subclasses and I need to run a custom memoizing method after the declaration of some methods that are defined in the subclasses. Is there a way to do this with something like class eval or do I need to call my method in each subclass?
Coincidental has joined #ruby-lang
martndemus has quit [Ping timeout: 268 seconds]
diegoviola has quit [Ping timeout: 268 seconds]
vlad_starkov has quit [Remote host closed the connection]
tough_griff has quit [Quit: computer went to sleep.]
Oloryn_lt2 has joined #ruby-lang
diegoviola has joined #ruby-lang
vky has quit [Quit: ChatZilla 0.9.90.1 [Firefox 26.0a2/20131021004002]]
torrieri has quit [Ping timeout: 264 seconds]
Coincidental has quit [Ping timeout: 256 seconds]
Coincidental has joined #ruby-lang
mmorga has quit [Remote host closed the connection]
majjoha has joined #ruby-lang
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bantic has quit [Quit: bantic]
bastilian has quit [Quit: Leaving...]
relix has joined #ruby-lang
vlad_starkov has joined #ruby-lang
bantic has joined #ruby-lang
serroft has quit [Quit: Leaving.]
kgrz has joined #ruby-lang
lfox has quit [Ping timeout: 240 seconds]
havenwood has quit [Remote host closed the connection]
<imperator>
olleicua, possibly Module#included or Module#method_added might be what you're looking for
lfox has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
kgrz has quit [Ping timeout: 252 seconds]
stamina has joined #ruby-lang
majjoha has quit [Ping timeout: 240 seconds]
symm- has quit [Ping timeout: 240 seconds]
elia has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
ph8 has joined #ruby-lang
ph8 has left #ruby-lang [#ruby-lang]
ldnunes has quit [Quit: Leaving]
brianpWins has joined #ruby-lang
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
Rarrikins has quit [Ping timeout: 246 seconds]
MrWharfsnort has joined #ruby-lang
adambeynon has joined #ruby-lang
elia has joined #ruby-lang
julweber has joined #ruby-lang
jvrmaia has quit [Quit: Leaving]
kgrz has joined #ruby-lang
kgrz has quit [Read error: Connection reset by peer]
kgrz has joined #ruby-lang
Rarrikins has joined #ruby-lang
martndemus has joined #ruby-lang
kurko_ has quit [Quit: Computer has gone to sleep.]
tough_griff has joined #ruby-lang
benanne has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
kgrz has quit [Ping timeout: 245 seconds]
Uranio has quit [Quit: while you reading this, a kitty dies]
martndemus has quit [Ping timeout: 268 seconds]
michael_mbp is now known as zz_michael_mbp
bean_ is now known as Guest94987
Guest94987 has quit [Killed (brooks.freenode.net (Nickname regained by services))]
sjk has joined #ruby-lang
workmad3 has quit [Read error: Connection reset by peer]
bean__ has joined #ruby-lang
MrWharfsnort has quit [Ping timeout: 245 seconds]
martndemus has joined #ruby-lang
zz_michael_mbp is now known as michael_mbp
cmckni3 has joined #ruby-lang
havenwood has joined #ruby-lang
MrPoT4tO has quit [Read error: Connection reset by peer]
julweber has quit [Remote host closed the connection]
vlad_starkov has quit [Remote host closed the connection]
julweber has joined #ruby-lang
Ropz has quit [Ping timeout: 240 seconds]
julweber has quit [Ping timeout: 256 seconds]
kgrz has joined #ruby-lang
kgrz has quit [Read error: Connection reset by peer]
kgrz has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
wallerdev has joined #ruby-lang
kgrz has quit [Ping timeout: 246 seconds]
tbuehlmann has quit [Remote host closed the connection]
Ahti333 has quit [Read error: Operation timed out]
apeiros has quit [Remote host closed the connection]
apeiros has joined #ruby-lang
mucker has quit [Remote host closed the connection]
slyphon has quit [Ping timeout: 246 seconds]
Ahti333 has joined #ruby-lang
majjoha has joined #ruby-lang
elia has joined #ruby-lang
krzyzaq has joined #ruby-lang
tough_griff has quit [Quit: computer went to sleep.]
majjoha has quit [Ping timeout: 260 seconds]
enmand has joined #ruby-lang
breakingthings has quit []
mac_ has quit [Remote host closed the connection]
enmand has quit [Client Quit]
mac_ has joined #ruby-lang
vlad_starkov has joined #ruby-lang
iraja has quit [Remote host closed the connection]
tough_griff has joined #ruby-lang
iraja has joined #ruby-lang
benwoody has joined #ruby-lang
enmand has joined #ruby-lang
benwoody has quit [Client Quit]
michael_mbp is now known as zz_michael_mbp
tylersmith has joined #ruby-lang
iraja has quit [Ping timeout: 252 seconds]
workmad3 has joined #ruby-lang
benwoody has joined #ruby-lang
enmand has quit [Read error: Connection reset by peer]
GazCMarsh has joined #ruby-lang
TheAscender has joined #ruby-lang
kgrz has joined #ruby-lang
kgrz has quit [Read error: Connection reset by peer]