apeiros_ changed the topic of #ruby-lang to: Ruby 2.2.0; 2.1.5; 2.0.0-p643: https://ruby-lang.org || Paste code on https://gist.github.com
apeiros_ has quit [Remote host closed the connection]
apeiros_ has joined #ruby-lang
Averna has joined #ruby-lang
<weaksauce> bleachtree not sure. can you gist the full error?
<bleachtree> sure, one sec
<weaksauce> you might need to brew install some things
<bleachtree> yah, i just did updated brew
<weaksauce> it looks like you are using a system ruby
<weaksauce> not the best way to go personally.
Musashi007 has joined #ruby-lang
surrounder has quit [Ping timeout: 250 seconds]
surrounder has joined #ruby-lang
<bleachtree> ah gotcha, how do i fix that?
<bleachtree> im kind of a noob haha
<weaksauce> follow that guide but use brew install for anything that they say to apt-get
<bleachtree> gotcha, thanks so much!
<bleachtree> btw, i fixed the error by running "ARCHFLAGS="-arch x86_64" gem install pg"
<weaksauce> no problem. you might need to install the xcode command line tools.
<bleachtree> awesome, thank you!
<weaksauce> interesting... not sure why that would work as it was complaining about missing the pg client library
Iskarlar has joined #ruby-lang
<bleachtree> yah, haha i have no idea. found it on StackO and was desperate so i ran it. :-)
my0373 has quit []
sarkyniin has quit [Remote host closed the connection]
Iskarla__ has quit [Ping timeout: 265 seconds]
dorei has quit []
Zionmaster has joined #ruby-lang
riotjones has joined #ruby-lang
duderonomy has quit [Read error: Connection reset by peer]
oleo has quit [Quit: Verlassend]
tkuchiki has joined #ruby-lang
riotjones has quit [Ping timeout: 240 seconds]
duderonomy has joined #ruby-lang
taylorrf has quit [Remote host closed the connection]
tunaCanBruh has joined #ruby-lang
fujimura has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 264 seconds]
hhatch has quit [Ping timeout: 246 seconds]
mikecmpbll has quit [Quit: i've nodded off.]
mikecmpbll has joined #ruby-lang
Musashi007 has quit [Quit: Musashi007]
fujimura has quit [Remote host closed the connection]
fujimura has joined #ruby-lang
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Musashi007 has joined #ruby-lang
fujimura has quit [Remote host closed the connection]
fujimura has joined #ruby-lang
taylorrf has joined #ruby-lang
bleachtree has quit [Ping timeout: 246 seconds]
oleo has joined #ruby-lang
simi has joined #ruby-lang
hackeron has quit [Ping timeout: 246 seconds]
tvon has quit [Quit: leaving]
lytol has joined #ruby-lang
hackeron has joined #ruby-lang
oleo has quit [Quit: Verlassend]
j4cknewt_ has joined #ruby-lang
j4cknewt has quit [Ping timeout: 240 seconds]
sankaber has joined #ruby-lang
charliesome has quit [Quit: zzz]
Asher has joined #ruby-lang
tvon has joined #ruby-lang
j4cknewt_ has quit [Read error: Connection reset by peer]
j4cknewt has joined #ruby-lang
charliesome has joined #ruby-lang
hendranata_ has joined #ruby-lang
shinnya has quit [Ping timeout: 244 seconds]
wallerdev has quit [Quit: wallerdev]
olivierrr has left #ruby-lang [#ruby-lang]
havenwood has joined #ruby-lang
ledestin has joined #ruby-lang
ghostpl_ has joined #ruby-lang
ghostpl_ has quit [Ping timeout: 252 seconds]
chouhoulis has joined #ruby-lang
ta has joined #ruby-lang
marr has quit [Ping timeout: 250 seconds]
jdecuirm has joined #ruby-lang
io_syl has joined #ruby-lang
ta has quit [Ping timeout: 250 seconds]
io_syl has quit [Client Quit]
crdpink2 has joined #ruby-lang
crdpink has quit [Ping timeout: 250 seconds]
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
lytol has quit [Remote host closed the connection]
LMity has joined #ruby-lang
fujimura has quit [Remote host closed the connection]
slawrence00 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
fujimura has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 246 seconds]
bruno- has quit [Ping timeout: 252 seconds]
fujimura has quit [Remote host closed the connection]
tunaCanBruh has joined #ruby-lang
j4cknewt has quit [Ping timeout: 250 seconds]
taylorrf has quit [Remote host closed the connection]
tunaCanBruh has quit [Ping timeout: 250 seconds]
j4cknewt has joined #ruby-lang
unreal_ has joined #ruby-lang
chouhoulis has quit [Remote host closed the connection]
unreal has quit [Ping timeout: 265 seconds]
charliesome has quit [Quit: zzz]
LMity has quit [Ping timeout: 246 seconds]
charliesome has joined #ruby-lang
jo__ has quit [Quit: Connection closed for inactivity]
fujimura has joined #ruby-lang
fujimura has quit [Remote host closed the connection]
uberjar has joined #ruby-lang
<uberjar> Hi. Is there a way to get a version of Array#split that behaves like the one shipped with Javascript ?
j4cknewt has quit [Read error: Connection reset by peer]
<uberjar> in javascript: "#gift #vintage #ephemera #glass #porcelain #antique #sale see o ".split(" ").length => 11
<uberjar> in Ruby the same code returns 9
jbeeze has joined #ruby-lang
<jhass> I can see 10 entries, but 11?
<havenwood> ha, made me double check - 10
<uberjar> if you leave off the length call it looks like this in javascript:
<uberjar> ["#gift", "#vintage", "#ephemera", "#glass", "#porcelain", "#antique", "#sale", "", "see", "o", ""]
<uberjar> while ruby does this ["#gift", "#vintage", "#ephemera", "#glass", "#porcelain", "#antique", "#sale", "see", "o"]
<jhass> mmh, I guess your actual input has an extra space somewhere
<havenwood> uberjar: you must have an extra sp, ya
<uberjar> yea there's some whitespace
<uberjar> how can I get ruby to treat the whitespace like javascript does or visa versa ?
<uberjar> and which one is "right" ? ;)
<havenwood> uberjar: JavaScript is never right, that's an easy rule to remember.
<havenwood> uberjar: :P
<uberjar> lol sigh
<havenwood> >> "#gift #vintage #ephemera #glass #porcelain #antique #sale see o ".split(" ", -1)
<eval-in> havenwood => ["#gift", "#vintage", "#ephemera", "#glass", "#porcelain", "#antique", "#sale", "see", "o", ""] (https://eval.in/294850)
<jhass> I think JS is actually more correct but Ruby is more practical here, easier to work with
chouhoulis has joined #ruby-lang
<jhass> huh, -1, didn't know that one
<havenwood> "If negative, there is no limit to the number of fields returned, and trailing null fields are not suppressed."
<jhass> .scan(/\S+|(?<=\s)$/) was as good as I could get, but didn't handle in between whitespace^^
fujimura has joined #ruby-lang
<jhass> mmh, well, still skips in between whitespace I guess
<havenwood> aye
<jhass> you gotta ask #javascript how to get a sane split :P
<uberjar> lol they'll just tell me Ruby's is borked
<uberjar> but yea I'll see what they say, cheers
<havenwood> >> "#gift #vintage #ephemera #glass #porcelain #antique #sale see o ".split(/ /, -1)
<eval-in> havenwood => ["#gift", "#vintage", "#ephemera", "#glass", "", "#porcelain", "", "#antique", "#sale", "see", "o", ""] (https://eval.in/294852)
j4cknewt has joined #ruby-lang
<jhass> haha, that's annoying actually
<jhass> it shouldn't make a difference
<uberjar> lol that's still off by one.. just in the other direction
<havenwood> uberjar: i put extra whitespace in
<uberjar> oh ok
<uberjar> oh looks good then, muchos gracias!
<havenwood> uberjar: de nada
<jhass> I guess your next step is filtering out those blank itmes then :P
red_menace has quit [Quit: leaving...]
taylorrf has joined #ruby-lang
martinbmadsen has joined #ruby-lang
<uberjar> for the record I think ruby's is kinda more wrong because to me
<uberjar> "#gift #vintage #ephemera #glass #porcelain #antique #sale see o ".split(" ").join(" ")
<uberjar> looks like it should equal the original text to be "the most obvious thing"
<uberjar> eh, but in some use cases it's kinda nice teh way ruby has it
<uberjar> x.split(" ").join(" ") == x => false
<jhass> that's what I meant with correct vs practical ;)
Lewix has joined #ruby-lang
bruno- has joined #ruby-lang
<uberjar> fyi: "#gift #vintage #jewelry #ephemera #glass #porcelain #antique #sale see o ".trim().split(/\s+/)
<uberjar> gets a sane split
uberjar has quit [Quit: uberjar]
bruno- has quit [Ping timeout: 265 seconds]
ledestin has quit [Ping timeout: 252 seconds]
j4cknewt_ has joined #ruby-lang
j4cknewt has quit [Read error: Connection reset by peer]
ledestin has joined #ruby-lang
chouhoulis has quit [Remote host closed the connection]
arooni-mobile has quit [Ping timeout: 265 seconds]
ghostpl_ has joined #ruby-lang
ghostpl_ has quit [Ping timeout: 256 seconds]
taylorrf has quit [Remote host closed the connection]
yfeldblu_ has joined #ruby-lang
yfeldblum has quit [Ping timeout: 265 seconds]
j4cknewt_ has quit [Read error: Connection reset by peer]
j4cknewt has joined #ruby-lang
arooni-mobile has joined #ruby-lang
duderonomy has quit [Ping timeout: 240 seconds]
nedp has joined #ruby-lang
slawrence00 has joined #ruby-lang
fujimura has quit [Remote host closed the connection]
havenwood has quit []
riotjones has joined #ruby-lang
ledestin has quit [Ping timeout: 246 seconds]
ledestin_ has joined #ruby-lang
symm- has joined #ruby-lang
tkuchiki has quit [Ping timeout: 244 seconds]
ledestin_ has quit [Ping timeout: 240 seconds]
ledestin has joined #ruby-lang
riotjones has quit [Ping timeout: 264 seconds]
tkuchiki has joined #ruby-lang
gix has quit [Ping timeout: 272 seconds]
gix has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 246 seconds]
SuMo_D has joined #ruby-lang
ur5us has quit [Ping timeout: 256 seconds]
qiffp has quit [Ping timeout: 264 seconds]
SilentNuke has joined #ruby-lang
allomov has joined #ruby-lang
<Musashi007> would anyone ever be willing to let a noob programmer watch them code?
wprice has joined #ruby-lang
wprice is now known as wprice_sick
<jhass> Musashi007: Please do not crosspost without at least telling so. Experience shows that people don't bother to inform the other channels of provided solutions, therefore it is considered rude.
<SilentNuke> There's quite a few sites that list developers who stream while they code Musashi. Just google it, or on Reddit there is a sub dedicated to it.
<Musashi007> jhass: alright
j4cknewt has quit [Ping timeout: 245 seconds]
<Musashi007> Silentnuke, thanks for pointing me to http://www.reddit.com/r/WatchPeopleCode
<SilentNuke> no problem
brianpWins has joined #ruby-lang
kyb3r_ has joined #ruby-lang
j4cknewt has joined #ruby-lang
dellavg_ has joined #ruby-lang
SilentNuke has quit []
KINGSABRI has joined #ruby-lang
brianpWins has quit [Quit: brianpWins]
jbeeze has quit [Remote host closed the connection]
dellavg_ has quit [Ping timeout: 264 seconds]
Guest25383 is now known as perry
perry has quit [Changing host]
perry has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 250 seconds]
gix has quit [Ping timeout: 252 seconds]
tkuchiki_ has joined #ruby-lang
bruno- has joined #ruby-lang
tkuchiki has quit [Ping timeout: 246 seconds]
gix has joined #ruby-lang
fujimura has joined #ruby-lang
bruno- has quit [Ping timeout: 250 seconds]
AKASkip has joined #ruby-lang
fujimura has quit [Ping timeout: 255 seconds]
simi has quit [Ping timeout: 256 seconds]
j4cknewt_ has joined #ruby-lang
j4cknewt has quit [Ping timeout: 250 seconds]
allomov has quit [Remote host closed the connection]
ghostpl_ has joined #ruby-lang
j4cknewt has joined #ruby-lang
j4cknewt_ has quit [Ping timeout: 250 seconds]
ghostpl_ has quit [Ping timeout: 245 seconds]
hahuang65 has quit [Ping timeout: 245 seconds]
Musashi007 has quit [Quit: Musashi007]
Musashi007 has joined #ruby-lang
yfeldblu_ has quit [Read error: Connection reset by peer]
yfeldblum has joined #ruby-lang
j4cknewt has quit [Read error: Connection reset by peer]
j4cknewt has joined #ruby-lang
ryanf has joined #ruby-lang
red_horned_rihno has joined #ruby-lang
riotjones has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
ryanf has quit [Quit: leaving]
riotjones has quit [Ping timeout: 245 seconds]
j4cknewt has quit [Read error: Connection reset by peer]
red_horned_rihno has quit [Ping timeout: 252 seconds]
AKASkip has quit [Ping timeout: 245 seconds]
hahuang65 has joined #ruby-lang
rbowlby has joined #ruby-lang
allomov has joined #ruby-lang
Iskarlar has quit [Read error: Connection reset by peer]
Iskarlar has joined #ruby-lang
allomov has quit [Read error: Connection reset by peer]
allomov has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
j4cknewt has joined #ruby-lang
guillaume-rb has joined #ruby-lang
wallerdev has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 264 seconds]
red_horned_rihno has joined #ruby-lang
Iskarlar_ has joined #ruby-lang
Zionmaster has quit [Remote host closed the connection]
Iskarla__ has joined #ruby-lang
Zionmaster has joined #ruby-lang
Zionmaster has quit [Remote host closed the connection]
Zionmaster has joined #ruby-lang
Iskarlar has quit [Ping timeout: 246 seconds]
Zionmaster has quit [Remote host closed the connection]
Iskarlar_ has quit [Ping timeout: 256 seconds]
j4cknewt has quit [Ping timeout: 272 seconds]
apeiros_ has quit [Remote host closed the connection]
apeiros_ has joined #ruby-lang
ghostpl_ has joined #ruby-lang
crankharder has quit [Ping timeout: 246 seconds]
j4cknewt has joined #ruby-lang
ghostpl_ has quit [Ping timeout: 250 seconds]
Lewix has quit []
Mon_Ouie has joined #ruby-lang
charliesome has quit [Quit: zzz]
tvon has quit [Quit: Lost terminal]
tvon has joined #ruby-lang
rushed has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
ta has joined #ruby-lang
hahuang61 has quit [Ping timeout: 252 seconds]
funnel has quit [Ping timeout: 245 seconds]
funnel has joined #ruby-lang
riotjones has joined #ruby-lang
crankharder has joined #ruby-lang
rbowlby has quit [Remote host closed the connection]
riotjones has quit [Ping timeout: 265 seconds]
lytol has joined #ruby-lang
ta has quit [Remote host closed the connection]
apeiros_ has quit [Remote host closed the connection]
apeiros_ has joined #ruby-lang
ta has joined #ruby-lang
FastJack has quit [Ping timeout: 250 seconds]
arBmind has joined #ruby-lang
FastJack has joined #ruby-lang
arBmind1 has quit [Ping timeout: 246 seconds]
apeiros_ has quit [Ping timeout: 245 seconds]
ta has quit [Remote host closed the connection]
charliesome has joined #ruby-lang
Iskarla__ has quit [Read error: Connection reset by peer]
brianpWins has joined #ruby-lang
Iskarlar has joined #ruby-lang
guillaume-rb has quit [Quit: guillaume-rb]
guillaume-rb has joined #ruby-lang
rushed has quit [Quit: rushed]
Iskarlar_ has joined #ruby-lang
Iskarlar has quit [Ping timeout: 256 seconds]
rbowlby has joined #ruby-lang
Musashi007 has quit [Remote host closed the connection]
nedp has quit [Remote host closed the connection]
Musashi007 has joined #ruby-lang
iamninja has quit [Read error: Connection reset by peer]
apeiros_ has joined #ruby-lang
|jemc| has quit [Ping timeout: 246 seconds]
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
rushed has joined #ruby-lang
j4cknewt has joined #ruby-lang
futilegames has joined #ruby-lang
j4cknewt_ has joined #ruby-lang
j4cknewt has quit [Ping timeout: 245 seconds]
slawrence00 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rushed has quit [Quit: rushed]
j4cknewt_ has quit [Ping timeout: 246 seconds]
tunaCanBruh has joined #ruby-lang
beginnerhelpme has quit [Ping timeout: 246 seconds]
tunaCanBruh has quit [Ping timeout: 244 seconds]
skade has joined #ruby-lang
lsegal has joined #ruby-lang
amclain has quit [Quit: Leaving]
strixd has joined #ruby-lang
crankharder has quit [Ping timeout: 272 seconds]
ghostpl_ has joined #ruby-lang
solars has joined #ruby-lang
guillaume-rb has quit [Quit: guillaume-rb]
symm- has quit [Ping timeout: 245 seconds]
ghostpl_ has quit [Ping timeout: 252 seconds]
charliesome has quit [Quit: zzz]
crankharder has joined #ruby-lang
brianpWins has quit [Read error: Connection reset by peer]
brianpWins has joined #ruby-lang
brianpWins has quit [Client Quit]
cornerman has joined #ruby-lang
cornerma1 has quit [Ping timeout: 265 seconds]
lytol has quit [Remote host closed the connection]
LMity has joined #ruby-lang
godd2 has quit [Ping timeout: 245 seconds]
riotjones has joined #ruby-lang
Averna has quit [Quit: Leaving.]
rflaten has joined #ruby-lang
riotjones has quit [Ping timeout: 250 seconds]
bruno- has joined #ruby-lang
<rflaten> Hello! I'm trying to learn Ruby and I can't find the meaning of an example in my textbook. The scope is
<rflaten> scope : viewable_by, -> (user) do joins(:permissions).where(permissions: {action: "view", user_id: user.id })
<rflaten> what im confused with is the joins. Shouldn there a model name like: Project.joins(perm...)
bruno- has quit [Ping timeout: 264 seconds]
LMity has quit [Ping timeout: 272 seconds]
skade has quit [Remote host closed the connection]
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
wallerdev has quit [Quit: wallerdev]
skade has joined #ruby-lang
charliesome has joined #ruby-lang
charliesome has quit [Client Quit]
charliesome has joined #ruby-lang
guillaume-rb has joined #ruby-lang
rbowlby has quit [Remote host closed the connection]
guillaume-rb has quit [Client Quit]
toretore has quit [Ping timeout: 272 seconds]
guillaume-rb has joined #ruby-lang
toretore has joined #ruby-lang
guillaume-rb has quit [Client Quit]
banister has joined #ruby-lang
yfeldblu_ has joined #ruby-lang
guillaume-rb has joined #ruby-lang
ta has joined #ruby-lang
guillaume-rb has quit [Client Quit]
martinbmadsen has quit [Ping timeout: 245 seconds]
guillaume-rb has joined #ruby-lang
mikecmpbll has joined #ruby-lang
yfeldblum has quit [Ping timeout: 255 seconds]
SHyx0rmZ has quit [Remote host closed the connection]
SHyx0rmZ has joined #ruby-lang
rflaten has quit [Quit: Changing server]
red_horned_rihno has quit [Ping timeout: 252 seconds]
ghostpl_ has joined #ruby-lang
vondruch has quit [Ping timeout: 240 seconds]
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tobiasvl has quit [Quit: reboot]
marr has joined #ruby-lang
tvl has joined #ruby-lang
tvl is now known as tobiasvl
red_horned_rihno has joined #ruby-lang
Musashi007 has quit [Quit: Musashi007]
banister has joined #ruby-lang
Musashi007 has joined #ruby-lang
lytol has joined #ruby-lang
banister has quit [Client Quit]
skade has quit [Remote host closed the connection]
tunaCanBruh has joined #ruby-lang
lytol has quit [Ping timeout: 264 seconds]
skade has joined #ruby-lang
skade has quit [Remote host closed the connection]
tunaCanBruh has quit [Ping timeout: 246 seconds]
kyb3r_ has quit [Quit: Leaving]
skade has joined #ruby-lang
Musashi007 has quit [Quit: Musashi007]
piotrj has joined #ruby-lang
rbowlby has joined #ruby-lang
jmrepetti has joined #ruby-lang
martinbmadsen has joined #ruby-lang
rbowlby has quit [Ping timeout: 256 seconds]
hendranata_ has quit [Ping timeout: 246 seconds]
martinbmadsen has quit [Ping timeout: 256 seconds]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
symm- has joined #ruby-lang
jmrepetti has quit [Read error: Connection reset by peer]
jmrepetti has joined #ruby-lang
simi has joined #ruby-lang
jmrepetti has quit [Remote host closed the connection]
skade has quit [Remote host closed the connection]
symm- has quit [Quit: Leaving...]
arBmind has quit [Quit: Leaving.]
symm- has joined #ruby-lang
tvl has joined #ruby-lang
bruno- has joined #ruby-lang
lytol has joined #ruby-lang
workmad3 has joined #ruby-lang
anekos has quit [Remote host closed the connection]
anekos has joined #ruby-lang
skade has joined #ruby-lang
bruno- has quit [Ping timeout: 246 seconds]
lytol has quit [Ping timeout: 252 seconds]
sarkyniin has joined #ruby-lang
Voker57 has joined #ruby-lang
Voker57|2 has joined #ruby-lang
piotrj has quit [Remote host closed the connection]
piotrj has joined #ruby-lang
Voker57 has quit [Ping timeout: 252 seconds]
apt-get_ has joined #ruby-lang
sarkyniin has quit [Ping timeout: 256 seconds]
jmrepetti has joined #ruby-lang
rbowlby has joined #ruby-lang
simi has quit [Ping timeout: 252 seconds]
Voker57|2 has quit [Remote host closed the connection]
tkuchiki_ has quit [Ping timeout: 256 seconds]
arBmind has joined #ruby-lang
postmodern has quit [Quit: Leaving]
tunaCanBruh has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 255 seconds]
ldnunes has joined #ruby-lang
stamina has joined #ruby-lang
bruno- has joined #ruby-lang
toretore has quit [Read error: Connection reset by peer]
toretore has joined #ruby-lang
chouhoulis has joined #ruby-lang
bruno- has quit [Ping timeout: 264 seconds]
piotrj has quit [Remote host closed the connection]
chouhoulis has quit [Remote host closed the connection]
Iskarlar_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
shazaum has joined #ruby-lang
stardiviner has quit [Ping timeout: 256 seconds]
vondruch has joined #ruby-lang
piotrj has joined #ruby-lang
Integralist has joined #ruby-lang
kfpratt has joined #ruby-lang
martinbmadsen has joined #ruby-lang
tcopeland has quit [Quit: Leaving.]
kohgpat has joined #ruby-lang
kohgpat has quit [Client Quit]
stardiviner has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 256 seconds]
arBmind1 has joined #ruby-lang
jmrepetti has quit [Remote host closed the connection]
whippythellama has quit [Quit: whippythellama]
arBmind has quit [Ping timeout: 264 seconds]
red_horned_rihno has quit [Ping timeout: 245 seconds]
dzejrou has joined #ruby-lang
mkaesz has joined #ruby-lang
shazaum has quit [Quit: This computer has gone to sleep]
KINGSABRI has quit [Quit: Konversation terminated!]
simi has joined #ruby-lang
red_horned_rihno has joined #ruby-lang
lytol has joined #ruby-lang
caseydriscoll has quit [Remote host closed the connection]
My_Hearing has joined #ruby-lang
My_Hearing has joined #ruby-lang
lytol has quit [Ping timeout: 252 seconds]
seank_ has quit []
Mon_Ouie has quit [Ping timeout: 246 seconds]
piotrj has quit [Remote host closed the connection]
seank_ has joined #ruby-lang
piotrj has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
ledestin has quit [Quit: ledestin]
skade has joined #ruby-lang
Voker57 has joined #ruby-lang
fujimura has joined #ruby-lang
tkuchiki has joined #ruby-lang
Voker57|2 has joined #ruby-lang
Bwild has quit [Quit: leaving]
Voker57|2 has quit [Read error: No route to host]
Voker57 has quit [Read error: No route to host]
jefus has joined #ruby-lang
strixd has quit [Quit: 500]
stamina has quit [Quit: WeeChat 1.1.1]
bruno- has joined #ruby-lang
strixd has joined #ruby-lang
Voker57 has joined #ruby-lang
bruno- has quit [Ping timeout: 252 seconds]
bruno- has joined #ruby-lang
bruno- has quit [Ping timeout: 240 seconds]
bruno- has joined #ruby-lang
JohnBat26 has joined #ruby-lang
fujimura has quit [Remote host closed the connection]
fujimura has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
fujimura has quit [Remote host closed the connection]
chouhoulis has joined #ruby-lang
shazaum has joined #ruby-lang
Integralist has quit [Ping timeout: 272 seconds]
tunaCanBruh has quit [Ping timeout: 256 seconds]
rbowlby has quit [Ping timeout: 252 seconds]
taylorrf has joined #ruby-lang
robbyoconnor has joined #ruby-lang
charliesome has quit [Quit: zzz]
shaman42 has quit [Ping timeout: 240 seconds]
fusillicode has joined #ruby-lang
toretore has quit [Ping timeout: 245 seconds]
fusillicode1 has quit [Ping timeout: 244 seconds]
yurinnick has joined #ruby-lang
sgambino has joined #ruby-lang
shaman42 has joined #ruby-lang
Integralist has joined #ruby-lang
charliesome has joined #ruby-lang
shaman42 has quit [Ping timeout: 240 seconds]
martinbmadsen has joined #ruby-lang
robin850 has joined #ruby-lang
shazaum_ has joined #ruby-lang
shazaum has quit [Ping timeout: 250 seconds]
shazaum_ is now known as Shazaum
Shazaum has quit [Changing host]
Shazaum has joined #ruby-lang
jamo_ has quit [Ping timeout: 250 seconds]
charliesome has quit [Quit: zzz]
yfeldblu_ has quit [Ping timeout: 250 seconds]
jamo_ has joined #ruby-lang
<robin850> Hi there! Excuse me but does anyone here know why it's not possible to call dup on a `Method` object please ?
martinbmadsen has quit [Ping timeout: 244 seconds]
nathanstitt has joined #ruby-lang
nomadicoder has quit []
<yorickpeterse> Probably because they're bound to whatever method table they are located in
<piotrj> robin850: describe the use case when you would want to use it
<yorickpeterse> #clone however does exist
<yorickpeterse> and works
taylorrf has quit [Remote host closed the connection]
catmanbun has joined #ruby-lang
<robin850> piotrj yorickpeterse: honestly I don't have any use case, I'm just trying to understand why this test fails on Rubinius (or pass on MRI :p) : https://github.com/rails/rails/blob/9f4210cd80f452685b44c198d5a361ee2b54c05e/activesupport/test/core_ext/object/duplicable_test.rb#L14 (because calling dup on `method(:puts)` is possible while it's not with Ruby)
nathanstitt has quit [Quit: I growing sleepy]
<piotrj> robin850: yeah I see that clone works but dup not. I guess it's because the difference between dup and clone that's described here under dup vs clone: http://ruby-doc.org/core-2.2.0/Object.html#method-i-dup
<piotrj> but can't find it documented anywhere
<yorickpeterse> what the hell does that even test
MXfive has joined #ruby-lang
<yorickpeterse> why are they even testing if you can dup a method?
havenwood has joined #ruby-lang
<robin850> piotrj: Hum, that seems to explain it, thanks!
sankaber has joined #ruby-lang
tcopeland has joined #ruby-lang
<robin850> yorickpeterse: Yep, this seems pretty useless since this test is intended to check whether `duplicable?` works as expected, this is testing Ruby internals :/
<piotrj> I guess they are testing it in order to be sure that they conform to Ruby implementation
AugustoCesar has joined #ruby-lang
caseydriscoll has joined #ruby-lang
<robin850> Yep but they aren't redefining the `dup` method, just defining the `duplicable?` predicate
<robin850> It looks like this check is there since this method was added : https://github.com/rails/rails/commit/bb4ebaa858c3c73888ffb4639f6854b78955f9ed
rushed has joined #ruby-lang
fujimura has joined #ruby-lang
<piotrj> robin850: so the thing is that they are testing that duplicable has the same behavior as dup in rails. It means that if suddenly Ruby adds dup to Method or removes from something else they would know from tests and can adjust code accordingly
<piotrj> so that it won't break suddenly for someone in production because he is using newer ruby ;)
<piotrj> this test seems to be more of safety measure than real test
symm- has quit [Ping timeout: 255 seconds]
<robin850> piotrj: : Hum, seems more legit then!
lytol has joined #ruby-lang
enebo has joined #ruby-lang
shaman42 has joined #ruby-lang
shinnya has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
lytol has quit [Ping timeout: 255 seconds]
marr has quit [Ping timeout: 265 seconds]
slawrence00 has joined #ruby-lang
chinmay_dd has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 240 seconds]
fujimura has quit [Remote host closed the connection]
b_hoffman has joined #ruby-lang
taylorrf has joined #ruby-lang
MXfive has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
rushed has quit [Quit: rushed]
bruno- has quit [Ping timeout: 240 seconds]
ta has quit [Remote host closed the connection]
qiffp has joined #ruby-lang
Integralist has quit [Quit: leaving]
tunaCanBruh has joined #ruby-lang
mkaesz has quit [Read error: Connection reset by peer]
mkaesz has joined #ruby-lang
MXfive has joined #ruby-lang
My_Hearing is now known as Mon_Ouie
caseydriscoll has quit [Remote host closed the connection]
caseydriscoll has joined #ruby-lang
setanta_ has joined #ruby-lang
LMity has joined #ruby-lang
qiffp has quit [Ping timeout: 245 seconds]
SuMo_D has joined #ruby-lang
fujimura has joined #ruby-lang
LMity has quit [Quit: Nettalk6 - www.ntalk.de]
caseydriscoll has quit [Remote host closed the connection]
Mon_Ouie has quit [Ping timeout: 256 seconds]
<brixen> piotrj: not really a fan of that argument
<brixen> piotrj: if that were the case, Rails would be responsible for testing all of the semantics of Ruby (so that it wouldn't break unexpectedly in production)
<brixen> that's not realistic
taylorrf has quit [Ping timeout: 246 seconds]
<brixen> further, most people running Rails in production are *not* running Rails tests
<brixen> they are running their own tests
<brixen> and their own tests should tell whether their app performs as expected
<piotrj> brixen: yeah, but here they are doing workaround so that they are not using normal ruby rescue syntax but their own thing. So they want to make sure that it conforms to Ruby implementation
whippythellama has joined #ruby-lang
<piotrj> and I'm not defending it, I'm just saying why (and it's only my guess) it's there
riotjones has joined #ruby-lang
<brixen> piotrj: just saying I don't think that "why" cuts it, for the stated reasons
riotjones has quit [Ping timeout: 246 seconds]
gr33n7007h has joined #ruby-lang
<brixen> I can understand the inclination to try to test something like that given how unspecified Ruby is, but these sorts of tests in Rails are a total PITA for implementers
priodev has quit [Ping timeout: 272 seconds]
drewdavis has quit [Remote host closed the connection]
caseydriscoll has joined #ruby-lang
ReD-BoY_ has joined #ruby-lang
skade has quit [Remote host closed the connection]
tenderlove has joined #ruby-lang
<ReD-BoY_> hey, hey I am learning Ruby with Well Grounded Rubyist book, and I have a questions about 1 simple exercise, I would like to know if I did it right and how to implement exactly to work Integer class with Array method
<ReD-BoY_> someone who has a 2 min and willing to help ? Thank you in advance
strixd has quit [Quit: 500]
<jhass> just make a gist with the requirements and your solution and ask the channel, don't try to find the right person for it ;)
skade has joined #ruby-lang
strixd has joined #ruby-lang
<ReD-BoY_> it's simple question, i just wanted to find someone who gonna give me quick review of what i have done at this moment, coz i wanna go forward
<jhass> could be done by now if you just posted it ;)
catmanbun has quit []
mkaesz has quit [Remote host closed the connection]
<ReD-BoY_> class Integer; def my_times; c = 0; (c..self).my_each do |i|; yield(i); end; self; end; end
zarubin has joined #ruby-lang
<ReD-BoY_> implementing times Integer method with each method of Array class
<ReD-BoY_> but i don't know how to make it work with both functions set by myself
<ReD-BoY_> and does this is the right solution
SuMo_D has quit [Remote host closed the connection]
skade has quit [Remote host closed the connection]
Zionmaster has joined #ruby-lang
SuMo_D has joined #ruby-lang
smoitra has joined #ruby-lang
<ReD-BoY_> Book : Given the definition of my_each in the main text, how would you use it in an implementation of my_times ? Unlike the first exercise, this one really will be left to you to try on your own!
momomomomo has joined #ruby-lang
lapide_viridi has joined #ruby-lang
zichul has joined #ruby-lang
zarubin has quit [Client Quit]
smoitra has quit [Client Quit]
<piotrj> brixen: I guess you are right. But at least you know there is a difference in behavior between MRI and Rubinius (or Rails implementers know). Maybe it's something that should be addresed.
smoitra has joined #ruby-lang
<ReD-BoY_> here we are not talking about Rails at all
martinbmadsen has joined #ruby-lang
Zionmaster has quit [Ping timeout: 250 seconds]
SuMo_D has quit [Ping timeout: 245 seconds]
<ReD-BoY_> book shows me how to make my own Integer#times and Array#each simple methods
<ReD-BoY_> then gives me implementation of each over times and tells me to to the same but to build Integer#my_times with Array#my_each
<ReD-BoY_> Integer#my_times is as follows:
<ReD-BoY_> class Integer; def my_times; c = 0; until c == self; yield(c); c += 1; end; self; end; end
<brixen> piotrj: yeah, I get your reasoning
<ReD-BoY_> it want's me to build it with my_each method instead of looping
drewdavis has joined #ruby-lang
<brixen> piotrj: it's a hard decision on these edge cases
<brixen> piotrj: eg, in Rubinius, you can take a method from any method table and put it in any other method table
<brixen> piotrj: but Ruby doesn't allow that because if implementation details
<ReD-BoY_> piotrj sry i tough you are speaking to me :/
<brixen> piotrj: anyway, we're not going to solve this problem, but hopefully we can reduce MRI-specific tests in Rails
ta has joined #ruby-lang
toretore has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 245 seconds]
<ReD-BoY_> jhass can you help ? :)
<jhass> ReD-BoY_: mmh, so you wonder how you can return an array if no block is given?
<ReD-BoY_> i wonder if my solution for building my_times with each method is correct
wolves_cs has joined #ruby-lang
<ReD-BoY_> and how to usey Array#my_each inside Integer#my_times
ArchRogem has joined #ruby-lang
<jhass> looks fairly sane to me
<jhass> if you indeed have to use my_each for it
arooni-mobile has joined #ruby-lang
<jhass> a gist with all code to make it run might help
centrx has joined #ruby-lang
<ReD-BoY_> class Integer; def my_times; c = 0; (c..self).each do |i|; yield(i); end; self; end; end - Correct ? (it works perfectly)
MXfive has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<ReD-BoY_> and if I have my own Array#my_each instead of original Array#each, how to implement it to run inside the Integer class
<jhass> you would need to turn your Range into in an Array I guess
<jhass> there's Range#to_a to do that
<ReD-BoY_> the point is (c..self).each works, but (c..self).my_each doesnt
<ReD-BoY_> how to tell the class to extend itself with my_each and then use it in Integer class
<jhass> as said, just turn the Range into an Array with the help of the Range#to_a methodd
<jhass> >> (1..5).to_a
<eval-in> jhass => [1, 2, 3, 4, 5] (https://eval.in/295050)
<jhass> >> (1..5).to_a.class
<eval-in> jhass => Array (https://eval.in/295051)
<jhass> >> (1..5).class
<eval-in> jhass => Range (https://eval.in/295052)
Zionmaster has joined #ruby-lang
<ReD-BoY_> you are genious
<ReD-BoY_> why I don't get it
<ReD-BoY_> so Range class has it's own each method ?
<jhass> yes
<ReD-BoY_> i seeeeeeeeeeeee
<ReD-BoY_> thank you very much
<ReD-BoY_> (bow)
<ReD-BoY_> so do you think my solution is correct look
<ReD-BoY_> Book: Given the definition of my_each in the main text, how would you use it in an implementation of my_times ? Unlike the first exercise, this one really will be left to you to try on your own!
<jhass> I guess so
<ReD-BoY_> class Integer; def my_times; c = 0; (c..self).to_a.my_each do |i|; yield(i); end; self; end; end
ta has quit [Remote host closed the connection]
<jhass> hard to tell what the book wants to teach you with that without a lot more context tbh
<jhass> but from the snippet it seems correct
<jhass> I'd get rid of the c local btw
<jhass> (0..self) is just fine
<ReD-BoY_> shows me simple building simple Array#each and Integer#times methods
<ReD-BoY_> by myself
<ReD-BoY_> that's why they are my_times and my_each
unsymbol has quit [Ping timeout: 256 seconds]
<jhass> well, yeah, but what the books intention is with teaching you how to do it ;)
<ReD-BoY_> learning Ruby language
<ReD-BoY_> Well Grounded Rubyist
<ReD-BoY_> is the book
<jhass> yeah sure
<ReD-BoY_> i have never done any programming and was just interested if it's correct, coz it works, but I am kinda very, very newbie in programming exactly
<jhass> my point is, reimplementing core methods is nothing you gonna do in production code, so I'm wondering which aspect of ruby this exercise is supposed to teach you ;)
skade has joined #ruby-lang
<ReD-BoY_> i have a lot of experience with windows and softwares in it, but since 1 week I installed Ubuntu, coz i had a lot of issues in Windows and trying to work around with New ubuntu and learn programming with ruby
unsymbol has joined #ruby-lang
<ReD-BoY_> introduction to collection methods
<ReD-BoY_> now I am reading about iteration on collections
<jhass> mmh, so maybe just understanding how they work and play together I guess
<ReD-BoY_> yes
skade has quit [Remote host closed the connection]
<ReD-BoY_> not implementing new ones inside the classes
<ReD-BoY_> but how to say, it works, but I don't know if I am correct and if this is right solution, that's why I wanted more competent opinion....
<piotrj> brixen: yeah, I guess that issue should be taken to rails contrib group
<ReD-BoY_> about local variable it showed me for Array#my_each and Integer#my_times to make it like that
<jhass> weird
<jhass> are you sure it wasn't meant as parameter instead?
<ReD-BoY_> instead of 0 == self
<ReD-BoY_> using c == self
skade has joined #ruby-lang
<ReD-BoY_> it showed me the normal building of times as follows: class Integer; def my_times; c = 0; until c == self; yield(c); c += 1; end; self; end; end;
<ReD-BoY_> i cant increment 0 in 0 == self
<ReD-BoY_> after 0 == self
apeiros_ has quit [Remote host closed the connection]
<jhass> well, sure
<jhass> but you no longer increment c on your own
<ReD-BoY_> but for using each it is possible
apeiros_ has joined #ruby-lang
<ReD-BoY_> if i use range.to_a.each instead of until c == self then I can use the 0 itself
<jhass> yes, that's what I'm saying
<ReD-BoY_> but the range.to_a.each is my own imagination
<ReD-BoY_> it's not in the book, it tells me to build times with each
<ReD-BoY_> but shows me times with local variable
priodev has joined #ruby-lang
<jhass> I guess the book considers such details obvious ;)
<ReD-BoY_> anyways, what is important, that I do really understand slowly, slowly some things, so I can say I am very happy, to be able to do my_times with each by myself
<ReD-BoY_> from first try, ofc i made mistake not using to_a
<ReD-BoY_> to be able to use my own my_each instead of original each
apeiros_ has quit [Ping timeout: 246 seconds]
ta has joined #ruby-lang
<ReD-BoY_> maybe you are laughing on what I am saying for something maybe incredibly simple, but for me is improvement lol
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
ta has quit [Remote host closed the connection]
ta has joined #ruby-lang
yurinnick has quit [Ping timeout: 250 seconds]
symm- has joined #ruby-lang
skade has quit [Ping timeout: 245 seconds]
riotjones has joined #ruby-lang
|jemc| has joined #ruby-lang
tvon has quit [Quit: leaving]
ArchRogem has quit [Quit: Textual IRC Client: www.textualapp.com]
piotrj has quit [Remote host closed the connection]
chouhoulis has quit [Remote host closed the connection]
chouhoulis has joined #ruby-lang
rippa has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 252 seconds]
yurinnick has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
ta has quit [Remote host closed the connection]
tkuchiki has quit [Remote host closed the connection]
lytol has joined #ruby-lang
centrx has quit [Ping timeout: 245 seconds]
lytol has quit [Ping timeout: 255 seconds]
apeiros_ has joined #ruby-lang
bruno- has joined #ruby-lang
nathanstitt has joined #ruby-lang
__butch__ has joined #ruby-lang
nathanstitt has quit [Client Quit]
yurinnick has quit [Remote host closed the connection]
arooni-mobile has quit [Ping timeout: 240 seconds]
centrx has joined #ruby-lang
<smoitra> Hello all I have created an Ruby on Rails app for wallpapers please tell me is it ok http://sm-awesome-gallery.herokuapp.com/
Iskarlar has joined #ruby-lang
godd2 has joined #ruby-lang
guillaume-rb has quit [Quit: guillaume-rb]
strixd has quit [Quit: 500]
marr has joined #ruby-lang
skade has joined #ruby-lang
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
caseydriscoll has quit [Remote host closed the connection]
bb010g has quit [Quit: Connection closed for inactivity]
lytol has joined #ruby-lang
tkuchiki has joined #ruby-lang
<centrx> * Three cheers for smoitra *
lytol has quit [Remote host closed the connection]
tkuchiki has quit [Ping timeout: 265 seconds]
SumoBoy has joined #ruby-lang
martinbmadsen has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 245 seconds]
nathanstitt has joined #ruby-lang
malconis has joined #ruby-lang
caseydriscoll has joined #ruby-lang
nathanstitt has quit [Client Quit]
mikecmpbll has quit [Quit: i've nodded off.]
imperator has joined #ruby-lang
peppino has joined #ruby-lang
peppino has left #ruby-lang [#ruby-lang]
piotrj has joined #ruby-lang
apt-get__ has joined #ruby-lang
<godd2> hip hip
qiffp has joined #ruby-lang
apt-get_ has quit [Ping timeout: 252 seconds]
allomov has quit [Remote host closed the connection]
mikecmpbll has joined #ruby-lang
shazaum_ has joined #ruby-lang
Shazaum has quit [Ping timeout: 264 seconds]
migbar has joined #ruby-lang
nathanstitt has joined #ruby-lang
malconis_ has joined #ruby-lang
djbkd has quit [Remote host closed the connection]
malconis has quit [Ping timeout: 255 seconds]
iamninja has joined #ruby-lang
jwesley has quit [Remote host closed the connection]
<tubbo> hip hip
<smoitra> tubbo: nice
simi has quit [Ping timeout: 272 seconds]
apt-get_ has joined #ruby-lang
centrx has quit [Ping timeout: 250 seconds]
jo__ has joined #ruby-lang
sankaber has joined #ruby-lang
apt-get__ has quit [Ping timeout: 265 seconds]
Voker57 has quit [Ping timeout: 265 seconds]
rbowlby has joined #ruby-lang
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
centrx has joined #ruby-lang
djbkd has joined #ruby-lang
red_horned_rihno has quit [Ping timeout: 245 seconds]
nathanstitt has quit [Quit: I growing sleepy]
workmad3 has quit [Read error: Connection reset by peer]
red_horned_rihno has joined #ruby-lang
simi has joined #ruby-lang
martinbmadsen has joined #ruby-lang
jmrepetti has joined #ruby-lang
matp_ has quit [Remote host closed the connection]
mkaesz has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 265 seconds]
gregf__ has quit [Ping timeout: 255 seconds]
gregf_ has joined #ruby-lang
matp has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 246 seconds]
mkaesz has quit [Ping timeout: 246 seconds]
smoitra has quit [Quit: Leaving]
tunaCanBruh has joined #ruby-lang
arBmind1 has quit [Quit: Leaving.]
lytol has joined #ruby-lang
dellavg_ has joined #ruby-lang
ducklobster has joined #ruby-lang
chouhoulis has quit [Remote host closed the connection]
rushed has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 255 seconds]
tvon has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 265 seconds]
SumoBoy has quit [Quit: Leaving]
tekacs has quit [Remote host closed the connection]
ghostpl_ has quit [Remote host closed the connection]
robin850 has quit [Remote host closed the connection]
lytol has quit [Remote host closed the connection]
allomov has joined #ruby-lang
yfeldblum has joined #ruby-lang
matp has quit [Remote host closed the connection]
qiffp has quit [Quit: Leaving]
yfeldblum has quit [Remote host closed the connection]
yfeldblum has joined #ruby-lang
qiffp has joined #ruby-lang
tkuchiki has joined #ruby-lang
postmodern has joined #ruby-lang
arBmind has joined #ruby-lang
qiffp_ has joined #ruby-lang
gregf_ has quit [Ping timeout: 244 seconds]
qiffp_ has quit [Remote host closed the connection]
lucas has joined #ruby-lang
matp has joined #ruby-lang
gregf_ has joined #ruby-lang
tkuchiki has quit [Ping timeout: 256 seconds]
lytol has joined #ruby-lang
ur5us has joined #ruby-lang
nathanstitt has joined #ruby-lang
AugustoCesar has quit [Ping timeout: 272 seconds]
AugustoCesar has joined #ruby-lang
tekacs has joined #ruby-lang
ta has joined #ruby-lang
allomov has quit [Remote host closed the connection]
ta has quit [Ping timeout: 272 seconds]
Squarepy has joined #ruby-lang
hahuang61 has joined #ruby-lang
iamninja has quit [Read error: Connection reset by peer]
lytol has quit [Remote host closed the connection]
bruno- has quit [Ping timeout: 272 seconds]
ghostpl_ has joined #ruby-lang
ghostpl_ has quit [Remote host closed the connection]
ghostpl_ has joined #ruby-lang
nathanstitt has quit [Ping timeout: 264 seconds]
hahuang61 has quit [Ping timeout: 272 seconds]
nathanstitt has joined #ruby-lang
mkaesz has joined #ruby-lang
solars has quit [Quit: WeeChat 0.4.2]
charliesome has joined #ruby-lang
tohsig has joined #ruby-lang
tvon has quit [Quit: leaving]
tvon has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
chouhoulis has joined #ruby-lang
yfeldblum has quit [Read error: Connection reset by peer]
Iskarlar has joined #ruby-lang
yfeldblum has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 252 seconds]
chouhoul_ has joined #ruby-lang
chouhoulis has quit [Ping timeout: 256 seconds]
tkuchiki has joined #ruby-lang
bruno- has joined #ruby-lang
migbar has quit [Remote host closed the connection]
migbar has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
martinbmadsen has joined #ruby-lang
b_hoffman has quit [Quit: b_hoffman]
migbar has quit [Ping timeout: 256 seconds]
caseydriscoll has quit [Remote host closed the connection]
tkuchiki has quit [Ping timeout: 256 seconds]
lytol has joined #ruby-lang
solars has joined #ruby-lang
imperator has left #ruby-lang ["Leaving"]
migbar has joined #ruby-lang
malconis_ has quit [Quit: Textual IRC Client: www.textualapp.com]
Zionmaster has quit [Remote host closed the connection]
malconis has joined #ruby-lang
caseydriscoll has joined #ruby-lang
pancake-breakfas has joined #ruby-lang
mkaesz has quit [Remote host closed the connection]
benanne has joined #ruby-lang
matp has quit [Remote host closed the connection]
migbar_ has joined #ruby-lang
migbar has quit [Ping timeout: 256 seconds]
Asher has quit [Quit: Leaving.]
matp has joined #ruby-lang
lapide_viridi has quit [Quit: Leaving]
DivineEntity has quit [Quit: Lost terminal]
cornerma1 has joined #ruby-lang
DivineEntity has joined #ruby-lang
pancake-breakfas has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
cornerman has quit [Ping timeout: 255 seconds]
migbar_ has quit [Remote host closed the connection]
JohnBat26 has joined #ruby-lang
AlxAltea has joined #ruby-lang
Asher has joined #ruby-lang
charliesome has quit [Quit: zzz]
AlxAltea has quit [Read error: Connection reset by peer]
AlxAltea has joined #ruby-lang
AlxAlt has quit [Ping timeout: 245 seconds]
workmad3 has joined #ruby-lang
crdpink2 has quit [Quit: q term]
piotrj has quit []
tunaCanBruh has quit [Ping timeout: 264 seconds]
qiffp has quit [Ping timeout: 256 seconds]
Zionmaster has joined #ruby-lang
rushed has quit [Quit: rushed]
taylorrf has joined #ruby-lang
rushed has joined #ruby-lang
AnxiousGarlic has joined #ruby-lang
AnxiousGarlic has left #ruby-lang [#ruby-lang]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
b_hoffman has joined #ruby-lang
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
AlxAltea has quit [Read error: Connection reset by peer]
tunaCanBruh has joined #ruby-lang
JohnBat26 has quit [Ping timeout: 245 seconds]
Zionmaster has quit [Ping timeout: 246 seconds]
ghostpl_ has quit [Remote host closed the connection]
migbar has joined #ruby-lang
dzejrou has quit [Quit: Leaving]
Mon_Ouie has joined #ruby-lang
symm- has quit [Ping timeout: 250 seconds]
charliesome has joined #ruby-lang
benanne has quit [Quit: kbai]
shazaum_ has quit [Quit: This computer has gone to sleep]
jefus has quit [Ping timeout: 264 seconds]
MXfive has joined #ruby-lang
malconis_ has joined #ruby-lang
malconis_ has quit [Remote host closed the connection]
malconis_ has joined #ruby-lang
malconis has quit [Ping timeout: 256 seconds]
tcopeland has quit [Quit: Leaving.]
Musashi007 has joined #ruby-lang
bantic has joined #ruby-lang
j4cknewt has joined #ruby-lang
jefus has joined #ruby-lang
tkuchiki has joined #ruby-lang
dellavg_ has quit [Ping timeout: 264 seconds]
tunaCanBruh has quit [Ping timeout: 244 seconds]
riotjone_ has joined #ruby-lang
jdecuirm has quit [Remote host closed the connection]
riotjones has quit [Ping timeout: 265 seconds]
tkuchiki has quit [Ping timeout: 256 seconds]
jdecuirm has joined #ruby-lang
bleachtree has joined #ruby-lang
solars has quit [Ping timeout: 250 seconds]
jdecuirm has quit [Remote host closed the connection]
jdecuirm has joined #ruby-lang
fusillicode has quit [Ping timeout: 252 seconds]
LMity has joined #ruby-lang
Squarepy has quit [Quit: Leaving]
djbkd has quit [Remote host closed the connection]
arooni-mobile has joined #ruby-lang
chinmay_dd has quit [Quit: Connection closed for inactivity]
MXfive has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tunaCanBruh has joined #ruby-lang
ta has joined #ruby-lang
jdecuirm has quit [Remote host closed the connection]
rushed has quit [Quit: rushed]
malconis_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jdecuirm has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
nedp has joined #ruby-lang
b_hoffman has quit [Quit: b_hoffman]
arooni-mobile has quit [Ping timeout: 272 seconds]
ldnunes has quit [Quit: Leaving]
b_hoffman has joined #ruby-lang
rushed has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 264 seconds]
sgambino has quit [Remote host closed the connection]
lytol has quit [Remote host closed the connection]
Zionmaster has joined #ruby-lang
b_hoffman has quit [Quit: b_hoffman]
LMity has quit [Ping timeout: 252 seconds]
futilegames has quit [Quit: futilegames]
futilegames has joined #ruby-lang
futilegames has quit [Client Quit]
Bwild has joined #ruby-lang
qiffp has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
guillaume-rb has joined #ruby-lang
b_hoffman has joined #ruby-lang
guillaume-rb has left #ruby-lang [#ruby-lang]
tohsig has quit [Ping timeout: 245 seconds]
rushed has quit [Quit: rushed]
rushed has joined #ruby-lang
b_hoffman has quit [Quit: b_hoffman]
wolves_cs has quit [Ping timeout: 252 seconds]
tkuchiki has joined #ruby-lang
ta has quit [Remote host closed the connection]
rushed has quit [Quit: rushed]
tkuchiki has quit [Ping timeout: 256 seconds]
whippythellama has quit [Quit: whippythellama]
workmad3 has quit [Ping timeout: 246 seconds]
b_hoffman has joined #ruby-lang
b_hoffman has quit [Client Quit]
bruno- has quit [Ping timeout: 250 seconds]
apt-get_ has quit [Remote host closed the connection]
j4cknewt has quit [Remote host closed the connection]
tcopeland has joined #ruby-lang
Asher has quit [Quit: Leaving.]
nathanstitt has quit [Quit: I growing sleepy]
Zionmast_ has joined #ruby-lang
djbkd has joined #ruby-lang
Zionmaster has quit [Read error: Connection reset by peer]
j4cknewt has joined #ruby-lang
djbkd has quit [Ping timeout: 255 seconds]
b_hoffman has joined #ruby-lang
b_hoffman has quit [Client Quit]
bantic has quit [Quit: bantic]
taylorrf has quit [Remote host closed the connection]
bruno- has joined #ruby-lang
jmrepetti has quit [Remote host closed the connection]
wallerdev has joined #ruby-lang
martinbmadsen has quit [Quit: leaving]
martinbmadsen has joined #ruby-lang
djbkd has joined #ruby-lang
bruno- has quit [Ping timeout: 264 seconds]
bruno- has joined #ruby-lang
djbkd has quit [Ping timeout: 245 seconds]
Shazaum has joined #ruby-lang
Shazaum has quit [Changing host]
Shazaum has joined #ruby-lang
enebo has quit [Quit: enebo]
bantic has joined #ruby-lang
__butch__ has quit [Quit: Leaving.]
bruno- has quit [Ping timeout: 245 seconds]
bruno- has joined #ruby-lang