relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
skade_ has joined #ruby-lang
<trapless>
i figured i could ask someone here about how a bit of code i have in mind could be implemented, i think they are dead though
skade has quit [Ping timeout: 252 seconds]
<masscrx>
zombiess? ;[
<trapless>
i havnt a clue
<trapless>
maybe dead dead
viscera has joined #ruby-lang
relix has joined #ruby-lang
<trapless>
perhaps you can explain something to me? i figure its something simple. however, i am less than a month into programming and i am failing at entering an effective search term to the web maybe
<ledestin>
I'd like to do something like o.send(:x, :=, 1), but it doesn't work
<ledestin>
i.e. to assign x
banister_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
relix has quit [Client Quit]
<trapless>
|x| ?
<trapless>
im working with 1.9.2
<robmiller1>
ledestin: o.send(:'x=', 1)
<trapless>
o.send{
<trapless>
ah
<ledestin>
robmiller1: arrr! stupid me! thanks a lot!
robmiller1 is now known as robmiller
<robmiller>
ledestin: no worries! the first argument to send is always the name of a method, and the rest are arguments
MartynKeigher has joined #ruby-lang
<robmiller>
so even though "foo = bar" looks like "foo" and "=" are separate, it's actually "foo=(bar)"
<ledestin>
I kinda knew that, but forgot
<ledestin>
having written such methods
bin7me has joined #ruby-lang
<ledestin>
now my code can be better!
<trapless>
anyone: im trying to create "@animation0 = Sprite.new(@anivport)" multiple times with sequential numbering on "animation" ie: "@animation0 =", "@animation1 ="
<robmiller>
trapless: use an array instead
<trapless>
instead of what?
<trapless>
i simple typed each one out
<robmiller>
@animation = []
<robmiller>
# repeat as necessary
<robmiller>
@animation << Sprite.new(@anivport)
bahar has quit [Ping timeout: 268 seconds]
<robmiller>
then you can access them with e.g. @animation[0], @animation[1], and so on
<robmiller>
you can also loop over them with e.g. @animation.each
<trapless>
@animation[0, 1, 2] would work for accessing them correct?
stardiviner has joined #ruby-lang
<robmiller>
if you want to access a range (e.g. you have ten animations and you want the first three, you can pass a range to [], like @animations[0..2]
skammer has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<robmiller>
see how the second call (foo[0..2]) returns just the first three elements
<trapless>
yes
<trapless>
i get that much
<trapless>
@animation = [0, 1, 2, 3, 4,] <-- will this works to create 5 @animation essentially?
MartynKeigher has quit [Ping timeout: 245 seconds]
vlad_starkov has quit []
<trapless>
i'' experiment with this. thank you robmiller
<trapless>
*i'll
bahar has joined #ruby-lang
karamazov has quit [Remote host closed the connection]
karamazov has joined #ruby-lang
ikrima has joined #ruby-lang
karamazov has quit [Ping timeout: 240 seconds]
alexju has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 252 seconds]
skade_ has quit [Ping timeout: 264 seconds]
<trapless>
any way to get that to work with .each?
<canton7-mac>
hmm?
<trapless>
trying to trying to create "@animation0 = Sprite.new(@anivport)" multiple times with sequential numbering on "animation" ie: "@animation0 = Sprite.new(@anivport)", "@animation1 = Sprite.new(@anivport)"
<masscrx>
Report.update(params[:report].keys, params[:report].values) <-- this syntax is actual in rails 4 ? Or is it old
<canton7-mac>
trapless, so, you create an array... that was the earlier discussion, right?
achal has quit [Quit: Connection closed for inactivity]
skade has joined #ruby-lang
devgiant has joined #ruby-lang
skade has quit [Ping timeout: 252 seconds]
workmad3 has quit [Ping timeout: 245 seconds]
skade has joined #ruby-lang
robmiller has quit [Quit: Leaving.]
Pain has quit [Ping timeout: 252 seconds]
jgpawletko has joined #ruby-lang
karamazov has quit []
ikrima has quit [Ping timeout: 255 seconds]
jgpawletko has quit [Client Quit]
whitecrow1 has joined #ruby-lang
khaase has joined #ruby-lang
kukyakya has joined #ruby-lang
ecnalyr has joined #ruby-lang
<whitecrow1>
whats difference between class::method or class.method in ruby , for example Dir::pwd or Dir.pwd (sorry i can speak EN very will but i can understand a little so please be patient)
<whitecrow1>
can't*
skade has quit [Quit: Computer has gone to sleep.]
lolmaus_ has quit [Read error: Connection reset by peer]
lolmaus has joined #ruby-lang
<DefV>
whitecrow1: nothing (unless I'm wrong)
<whitecrow1>
DefV, and i have an other question why some method start with :
Pain has joined #ruby-lang
Fushi has joined #ruby-lang
MartynKeigher has quit [Ping timeout: 255 seconds]
momomomomo has joined #ruby-lang
<apeiros>
DefV: you're correct.
<apeiros>
whitecrow1: no method starts with :
<apeiros>
whitecrow1: the symbol literal starts with : (just like the string literal starts and ends with ")
<whitecrow1>
in irb type Dir.methods and see :pwd
<apeiros>
whitecrow1: re obj::method - it's old style and you should generally use . to invoke methods. :: is used in documentation to distinguish class methods (Time::at) from instance methods (Time#strftime)
<apeiros>
whitecrow1: because Dir.methods returns an array of symbols. ruby uses symbols to identify things (such as methods)
<apeiros>
whitecrow1: if it used strings, you'd see "pwd" instead. you wouldn't ask why methods start with " and end with " either then ;-)
<whitecrow1>
apeiros, thanks understood
<apeiros>
yw :)
jilliansaurus has joined #ruby-lang
devgiant_ has joined #ruby-lang
devgiant has quit [Ping timeout: 255 seconds]
MartynKeigher has joined #ruby-lang
fijimunkii has joined #ruby-lang
LMity has joined #ruby-lang
devgiant_ has quit [Ping timeout: 265 seconds]
devgiant has joined #ruby-lang
bradcliffe has joined #ruby-lang
kitak has quit [Remote host closed the connection]
dennus has joined #ruby-lang
grayWolf has joined #ruby-lang
grayWolf is now known as Speed
whitecrow1 is now known as wabisuke
yfeldblum has joined #ruby-lang
LMity has quit [Ping timeout: 240 seconds]
francisfish has joined #ruby-lang
LMity has joined #ruby-lang
khaase has quit [Remote host closed the connection]
yfeldblum has quit [Ping timeout: 265 seconds]
DEac-_ has quit [Read error: Operation timed out]
dik_dak has joined #ruby-lang
LMity has quit [Ping timeout: 245 seconds]
simono has quit [Read error: Connection reset by peer]
jgpawletko has joined #ruby-lang
simono has joined #ruby-lang
francisfish has quit [Remote host closed the connection]
tkuchiki has quit [Remote host closed the connection]
skade has joined #ruby-lang
DEac- has joined #ruby-lang
vlad_starkov has joined #ruby-lang
Coincidental has joined #ruby-lang
MartynKeigher has quit [Ping timeout: 265 seconds]
skade has quit [Quit: Computer has gone to sleep.]
rahul_j has quit [Quit: rahul_j]
yfeldblum has joined #ruby-lang
jsutt has joined #ruby-lang
Coincidental has quit [Ping timeout: 255 seconds]
DEac- has quit [Ping timeout: 265 seconds]
khaase has joined #ruby-lang
MartynKeigher has joined #ruby-lang
jgpawletko has quit [Quit: jgpawletko]
yfeldblum has quit [Ping timeout: 265 seconds]
fijimunkii has quit [Read error: Connection reset by peer]
khaase has quit [Remote host closed the connection]
fijimunkii has joined #ruby-lang
jsutt has quit [Read error: Operation timed out]
skade has joined #ruby-lang
jgpawletko has joined #ruby-lang
Pupeno_ has quit [Ping timeout: 240 seconds]
Squarepy has joined #ruby-lang
alekst has joined #ruby-lang
jilliansaurus has quit [Quit: Leaving.]
nathanstitt has joined #ruby-lang
jilliansaurus has joined #ruby-lang
[spoiler] has quit [Quit: Leaving]
momomomomo has quit [Quit: momomomomo]
AncientAmateur has joined #ruby-lang
havenwood has joined #ruby-lang
tkuchiki has joined #ruby-lang
tkuchiki has quit [Read error: Connection reset by peer]
nathanstitt has quit [Quit: I growing sleepy]
tkuchiki has joined #ruby-lang
luiz_lha has joined #ruby-lang
fijimunkii has quit [Read error: Connection reset by peer]
fijimunkii has joined #ruby-lang
fijimunkii has quit [Read error: Connection reset by peer]
symm- has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
fijimunkii has joined #ruby-lang
shinnya has quit [Ping timeout: 265 seconds]
headius_ is now known as headius
toretore has joined #ruby-lang
alekst has quit [Read error: Connection reset by peer]
kitak_ has quit [Remote host closed the connection]
kitak has joined #ruby-lang
AncientAmateur has quit [Remote host closed the connection]
loincloth has joined #ruby-lang
achal has joined #ruby-lang
alexju has joined #ruby-lang
AncientAmateur has joined #ruby-lang
enebo has joined #ruby-lang
momomomomo has joined #ruby-lang
MartynKeigher has quit [Ping timeout: 255 seconds]
tbuehlmann has quit [Quit: Leaving]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jgpawletko is now known as jgpawletko_away
phansch has quit [Quit: WeeChat 0.4.2]
tylersmith has joined #ruby-lang
yfeldblum has joined #ruby-lang
heftig has quit [Ping timeout: 264 seconds]
robbyoconnor has quit [Ping timeout: 245 seconds]
alekst has joined #ruby-lang
alexju has quit [Remote host closed the connection]
MartynKeigher has joined #ruby-lang
yfeldblum has quit [Ping timeout: 265 seconds]
MartynKeigher has quit [Ping timeout: 240 seconds]
bradcliffe has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nathanstitt has joined #ruby-lang
nirix has quit [Read error: Connection reset by peer]
francisfish has joined #ruby-lang
DEac- has joined #ruby-lang
Speed has quit [Ping timeout: 255 seconds]
gix has quit [Ping timeout: 246 seconds]
MartynKeigher has joined #ruby-lang
robmiller has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
havenwood has joined #ruby-lang
gix has joined #ruby-lang
Speed has joined #ruby-lang
MartynKeigher has quit [Ping timeout: 240 seconds]
robmiller has quit [Quit: Leaving.]
robmiller has joined #ruby-lang
bzalasky has joined #ruby-lang
bin7me has quit [Quit: Leaving]
havenwood has quit [Ping timeout: 240 seconds]
khaase has joined #ruby-lang
khaase has quit [Changing host]
khaase has joined #ruby-lang
AncientAmateur has quit [Remote host closed the connection]
francisfish has quit [Remote host closed the connection]
robmiller has quit [Quit: Leaving.]
ecnalyr has quit [Ping timeout: 265 seconds]
robmiller has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
Speed has quit [Read error: Connection reset by peer]
rahul_j has joined #ruby-lang
francisfish has joined #ruby-lang
Speed has joined #ruby-lang
anekos has quit [Remote host closed the connection]
mykoweb has joined #ruby-lang
thmzlt has joined #ruby-lang
anekos has joined #ruby-lang
rahul_j_ has joined #ruby-lang
mib_mib has joined #ruby-lang
momomomomo has quit [Quit: momomomomo]
rahul_j has quit [Ping timeout: 240 seconds]
rahul_j_ is now known as rahul_j
lolmaus has quit [Read error: Operation timed out]
bzalasky has quit [Remote host closed the connection]
lolmaus has joined #ruby-lang
phansch has joined #ruby-lang
chichou has joined #ruby-lang
AncientAmateur has joined #ruby-lang
bradcliffe has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dwknoxy has joined #ruby-lang
momomomomo has joined #ruby-lang
Coincidental has joined #ruby-lang
yfeldblum has joined #ruby-lang
Coincidental has quit [Ping timeout: 240 seconds]
yfeldblum has quit [Read error: Connection reset by peer]
bradcliffe has joined #ruby-lang
workmad3 has joined #ruby-lang
t4nk586 has joined #ruby-lang
cnivolle has quit [Ping timeout: 246 seconds]
tylersmith has quit [Remote host closed the connection]
AncientAmateur has quit [Remote host closed the connection]
tylersmith has joined #ruby-lang
bradcliffe has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
julweber has joined #ruby-lang
cnivolle_ has joined #ruby-lang
cnivolle_ has quit [Remote host closed the connection]
cnivolle has joined #ruby-lang
tylersmith has quit [Ping timeout: 265 seconds]
khaase has quit [Ping timeout: 240 seconds]
kgrz has quit [Remote host closed the connection]
momomomomo has quit [Quit: momomomomo]
chichou has quit [Remote host closed the connection]
momomomomo has joined #ruby-lang
Cakey has joined #ruby-lang
tylersmith has joined #ruby-lang
mib_mib has quit [Ping timeout: 245 seconds]
corecode has left #ruby-lang ["ERC Version 5.3 (IRC client for Emacs)"]
loinclot_ has joined #ruby-lang
havenwood has joined #ruby-lang
jilliansaurus has joined #ruby-lang
loincloth has quit [Ping timeout: 240 seconds]
bradcliffe has joined #ruby-lang
julweber has quit [Remote host closed the connection]
reynhout has joined #ruby-lang
Lewix has joined #ruby-lang
<yorickpeterse>
mirror mirror on the wall
<yorickpeterse>
who has the dumbest JS based website of them all
<yorickpeterse>
lets use POST to get data, use "top notch crypto" to screw over bots and use <input> instead of <a>
<yorickpeterse>
and send along 4500 fucking form fields
<yorickpeterse>
using different naming conventions
<yorickpeterse>
Good thing I have metal on
loinclot_ has quit [Remote host closed the connection]
jsrn has quit [Quit: Leaving]
simono has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jilliansaurus has quit [Ping timeout: 252 seconds]
Coincidental has joined #ruby-lang
cnivolle_ has joined #ruby-lang
simono has joined #ruby-lang
loincloth has joined #ruby-lang
jsutt has joined #ruby-lang
simono has quit [Client Quit]
cnivolle has quit [Ping timeout: 246 seconds]
tylersmith has quit [Remote host closed the connection]
michaeldeol has joined #ruby-lang
tylersmith has joined #ruby-lang
jsutt has quit [Ping timeout: 255 seconds]
skade has quit [Read error: Connection reset by peer]
AncientAmateur has joined #ruby-lang
skade has joined #ruby-lang
Cakey has quit [Ping timeout: 252 seconds]
tylersmith has quit [Ping timeout: 240 seconds]
rippa has joined #ruby-lang
apeiros has quit [Remote host closed the connection]
apeiros has joined #ruby-lang
dagobah has quit [Quit: Leaving...]
yfeldblum has joined #ruby-lang
jgpawletko_away is now known as jgpawletko
cnivolle_ has quit [Remote host closed the connection]
apeiros has quit [Ping timeout: 240 seconds]
cnivolle has joined #ruby-lang
wallerdev has joined #ruby-lang
<reynhout>
using a C ext, i'm registering (from the main thread) a block which will be used as a callback in an error condition. works fine except when the error occurs due to code running on a child thread. can i define the block without instantiating it (so it will be created by the C ext on the new thread)? or can I call it differently inside the C ext to avoid the cross thread problem?
<reynhout>
is there another option i'm missing? :)
cnivolle has quit [Ping timeout: 240 seconds]
<reynhout>
to clarify: the block is passed to the C ext as part of configuration, the child thread is a ruby thread, but the error condition is detected and the callback invoked within the C ext code
qba73 has quit [Remote host closed the connection]
mr-fooba_ is now known as mr-foobar
mistym has joined #ruby-lang
simono has joined #ruby-lang
amsi has joined #ruby-lang
soulnafein has quit [Quit: Page closed]
dstynchula has joined #ruby-lang
elia has quit [Ping timeout: 264 seconds]
amsi has quit [Quit: Leaving]
Squarepy has quit [Quit: Leaving]
canton7-mac has quit [Quit: Leaving]
yxhuvvd has quit [Remote host closed the connection]
saarinen has joined #ruby-lang
vlad_starkov has quit []
yxhuvud has joined #ruby-lang
dennus has quit []
yfeldblu_ has joined #ruby-lang
tharindu has joined #ruby-lang
AncientAmateur has quit [Remote host closed the connection]
wallerdev has quit [Quit: wallerdev]
centrx has joined #ruby-lang
yfeldblum has quit [Ping timeout: 265 seconds]
bantic has quit [Quit: bantic]
marr has quit [Ping timeout: 245 seconds]
havenwood has quit [Remote host closed the connection]
Pupeno has joined #ruby-lang
jilliansaurus has joined #ruby-lang
francisfish has quit [Remote host closed the connection]
someperson has joined #ruby-lang
apeiros has joined #ruby-lang
jilliansaurus has quit [Ping timeout: 252 seconds]
toastynerd has joined #ruby-lang
rahul_j has quit [Quit: rahul_j]
skammer has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
pr0ton has joined #ruby-lang
symm- has quit [Ping timeout: 240 seconds]
hahuang65 has quit [Ping timeout: 264 seconds]
chichou has joined #ruby-lang
wallerdev has joined #ruby-lang
pr0ton has quit [Client Quit]
AncientAmateur has joined #ruby-lang
chichouw has joined #ruby-lang
tylersmith has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
pr0ton has joined #ruby-lang
thmzlt has quit [Read error: Connection reset by peer]
thmzlt has joined #ruby-lang
ikrima has joined #ruby-lang
chichou has quit [Ping timeout: 265 seconds]
Squarepy has joined #ruby-lang
bradcliffe has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jhass|off is now known as jhass
toastynerd has quit [Remote host closed the connection]
chichou has joined #ruby-lang
vsorlov has joined #ruby-lang
chichouw has quit [Ping timeout: 252 seconds]
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
pr0ton has quit [Quit: pr0ton]
michaeldeol has joined #ruby-lang
loincloth has quit [Remote host closed the connection]
chichou has quit [Ping timeout: 240 seconds]
ikrima has quit [Ping timeout: 252 seconds]
toastynerd has joined #ruby-lang
someperson has quit [Quit: leaving]
wabisuke has quit [Quit: Leaving]
loincloth has joined #ruby-lang
RobertBirnie has joined #ruby-lang
saarinen has quit [Quit: saarinen]
t4nk586 has quit []
saarinen has joined #ruby-lang
Lewix has joined #ruby-lang
pr0ton has joined #ruby-lang
nanno has joined #ruby-lang
futilegames has quit [Quit: futilegames]
tylersmi_ has joined #ruby-lang
Lewix_ has joined #ruby-lang
jgpawletko_ has joined #ruby-lang
Pupeno_ has joined #ruby-lang
grayWolf has joined #ruby-lang
wallerdev_ has joined #ruby-lang
RobertBirnie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
tkuchiki has quit [Remote host closed the connection]
jgpawletko_ has quit [Client Quit]
tkuchiki has joined #ruby-lang
khaase has joined #ruby-lang
khaase has quit [Changing host]
khaase has joined #ruby-lang
pr0ton has quit [Quit: pr0ton]
Speed has quit [Disconnected by services]
grayWolf is now known as Speed
flori_ has joined #ruby-lang
hahuang65 has joined #ruby-lang
tris has quit [Remote host closed the connection]
mbj has quit [Quit: leaving]
mykoweb has quit [Remote host closed the connection]
Lewix has quit [*.net *.split]
tylersmith has quit [*.net *.split]
wallerdev has quit [*.net *.split]
Pupeno has quit [*.net *.split]
yxhuvud has quit [*.net *.split]
nirix has quit [*.net *.split]
bryanl_ has quit [*.net *.split]
flori has quit [*.net *.split]
aarellano has quit [*.net *.split]
wallerdev_ is now known as wallerdev
bryanl- has joined #ruby-lang
Olipro has quit [Ping timeout: 246 seconds]
stayarrr has joined #ruby-lang
yann_ck has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nirix has joined #ruby-lang
alexju has quit [Ping timeout: 240 seconds]
Olipro has joined #ruby-lang
soahccc has quit [Quit: Legalize it!]
kgrz has joined #ruby-lang
yxhuvud has joined #ruby-lang
alexju has joined #ruby-lang
havenwood has joined #ruby-lang
khaase has quit [Remote host closed the connection]
khaase has joined #ruby-lang
arBmind1 has quit [Quit: Leaving.]
heftig has joined #ruby-lang
kgrz has quit [Ping timeout: 252 seconds]
jilliansaurus has joined #ruby-lang
stupidystupid has joined #ruby-lang
stupidystupid has quit [Max SendQ exceeded]
stupidystupid has joined #ruby-lang
stupidystupid has quit [Max SendQ exceeded]
stupidystupid has joined #ruby-lang
stupidystupid has quit [Max SendQ exceeded]
stupidystupid has joined #ruby-lang
khaase has quit [Ping timeout: 252 seconds]
ozzloy_ is now known as ozzloy
jilliansaurus has quit [Ping timeout: 252 seconds]
futilegames has joined #ruby-lang
amsi has joined #ruby-lang
thrillagorilla has joined #ruby-lang
ozzloy has quit [Changing host]
ozzloy has joined #ruby-lang
RobertBirnie has joined #ruby-lang
yfeldblu_ has quit [Remote host closed the connection]
nisstyre has quit [Quit: WeeChat 0.4.3]
yfeldblum has joined #ruby-lang
pr0ton has joined #ruby-lang
loincloth has quit [Remote host closed the connection]
RobertBirnie has quit [Ping timeout: 240 seconds]
yfeldblum has quit [Read error: Operation timed out]
pr0ton has quit [Client Quit]
stupidystupid has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
RobertBirnie has joined #ruby-lang
thmzlt has left #ruby-lang [#ruby-lang]
concertman has joined #ruby-lang
concertman has quit [Client Quit]
Pain has quit [Ping timeout: 240 seconds]
phansch has quit [Quit: WeeChat 0.4.2]
workmad3 has quit [Ping timeout: 240 seconds]
CaptainJet has joined #ruby-lang
robmiller has quit [Quit: Leaving.]
toastynerd has quit [Remote host closed the connection]
bradcliffe has joined #ruby-lang
toastynerd has joined #ruby-lang
Lewix_ has quit [Remote host closed the connection]
Lewix has joined #ruby-lang
slawrence has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
bradcliffe has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
slawrence has quit [Client Quit]
slawrence00 has joined #ruby-lang
toastynerd has quit [Remote host closed the connection]
aarellano has joined #ruby-lang
Lewix has joined #ruby-lang
bradcliffe has joined #ruby-lang
symm- has joined #ruby-lang
toastynerd has joined #ruby-lang
marcosto_ has joined #ruby-lang
bantic has joined #ruby-lang
Pupeno_ has quit [Ping timeout: 268 seconds]
lsegal has joined #ruby-lang
yubrew has joined #ruby-lang
loincloth has joined #ruby-lang
Fushi has quit [Quit: Connection closed for inactivity]
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jsutt has joined #ruby-lang
jilliansaurus has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
mr-foobar has quit []
sepp2k has joined #ruby-lang
francisfish has joined #ruby-lang
Squarepy has quit [Quit: Leaving]
CaptainJet has quit []
francisfish has quit [Ping timeout: 240 seconds]
AncientAmateur has quit [Remote host closed the connection]
wallerdev has quit [Quit: wallerdev]
toastynerd has quit [Remote host closed the connection]
vsorlov has quit [Ping timeout: 268 seconds]
CaptainJet has joined #ruby-lang
toastynerd has joined #ruby-lang
saarinen has quit [Quit: saarinen]
jilliansaurus has quit [Quit: Leaving.]
AncientAmateur has joined #ruby-lang
michaeldeol has joined #ruby-lang
tharindu_ has joined #ruby-lang
tharindu has quit [Ping timeout: 255 seconds]
toastynerd has quit [Remote host closed the connection]
toastynerd has joined #ruby-lang
cored has quit [Ping timeout: 268 seconds]
yfeldblum has joined #ruby-lang
cored has joined #ruby-lang
cored has joined #ruby-lang
cored has quit [Changing host]
mehlah has quit [Quit: Leaving...]
yfeldblum has quit [Ping timeout: 240 seconds]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
bantic has quit [Quit: bantic]
enebo has quit [Quit: enebo]
mykoweb has joined #ruby-lang
tharindu_ has quit [Ping timeout: 240 seconds]
alexju has quit [Remote host closed the connection]
mykoweb has quit [Remote host closed the connection]
tharindu has joined #ruby-lang
khaase has joined #ruby-lang
mykoweb has joined #ruby-lang
francisfish has joined #ruby-lang
mykoweb has quit [Remote host closed the connection]