havenwood changed the topic of #ruby to: Rules & more: https://ruby-community.com || Ruby 2.4.0, 2.3.3 & 2.2.6: https://www.ruby-lang.org || Paste >3 lines of text to: https://gist.github.com || Rails questions? Ask in: #RubyOnRails || Logs: https://irclog.whitequark.org/ruby
<Radar> ruby-lang334: You can't do that. You would have to pass it to the initialization.
<Radar> ruby-lang334: Fan.new("f1", 1, true)
<ruby-lang334> means i have to create a new @name?
<ruby-lang334> :)
<Radar> Yes.
montanonic has quit [Ping timeout: 268 seconds]
<ruby-lang334> oh i see
<ruby-lang334> thx alot men
<ruby-lang334> :)
ledestin has joined #ruby
StoneCypher has quit [Ping timeout: 256 seconds]
<Radar> np
paradisaeidae_ has quit [Quit: ChatZilla 0.9.93 [Firefox 50.1.0/20161208153507]]
roamingdog has joined #ruby
jcao219 has joined #ruby
nankyokusei has joined #ruby
ruby-lang334 has quit [Quit: Page closed]
SteenJobs has joined #ruby
newdan has left #ruby ["ERC (IRC client for Emacs 24.5.1)"]
gajus has quit [Quit: Connection closed for inactivity]
alan_w has joined #ruby
a7d7p_ has quit [Quit: a7d7p_]
jcao219 has quit [Ping timeout: 248 seconds]
nankyokusei has quit [Ping timeout: 260 seconds]
coreygibson has joined #ruby
<coreygibson> fna
coreygibson has quit [Client Quit]
<Radar> fascinating
hotpancakes has quit [Remote host closed the connection]
lszhu has joined #ruby
milardovich has quit []
jallen123 has quit [Ping timeout: 258 seconds]
jackjackdripper has joined #ruby
petrichorx has quit [Quit: Connection closed for inactivity]
aidalgol has joined #ruby
aidalgol is now known as Guest58587
Guest58587 is now known as aidalgol
MrBismuth has quit [Quit: https://www.youtube.com/watch?v=xIIqYqtR1lY -- Suicide is Painless - Johnny Mandel]
skweek has joined #ruby
astrobunny has joined #ruby
rwb has joined #ruby
ur5us has quit [Remote host closed the connection]
houhoulis has joined #ruby
<zenspider> gotta love holidays
roamingdog has quit [Ping timeout: 264 seconds]
enterprisey has joined #ruby
TomyLobo has quit [Ping timeout: 246 seconds]
elh9 has joined #ruby
benlieb has quit [Quit: benlieb]
hotpancakes has joined #ruby
hotpancakes has quit [Remote host closed the connection]
iogf has joined #ruby
skweek has quit [Ping timeout: 248 seconds]
marr has quit [Ping timeout: 246 seconds]
aryaching has joined #ruby
roamingdog has joined #ruby
elh9 has quit [Remote host closed the connection]
brent__ has joined #ruby
elh9 has joined #ruby
Scient has quit [Ping timeout: 258 seconds]
neanderslob has quit [Ping timeout: 248 seconds]
aryaching has quit [Ping timeout: 264 seconds]
brent__ has quit [Remote host closed the connection]
dcunit3d has joined #ruby
astrobunny has quit [Remote host closed the connection]
StoneCypher has joined #ruby
gusrub has joined #ruby
StoneCypher has quit [Ping timeout: 260 seconds]
BrianJ has joined #ruby
gusrub has quit [Remote host closed the connection]
neanderslob has joined #ruby
skweek has joined #ruby
exchgr has quit [Quit: ZNC - http://znc.in]
enyo_ has joined #ruby
houhoulis has quit [Remote host closed the connection]
montanonic has joined #ruby
symm- has joined #ruby
jallen123 has joined #ruby
enyo_ has quit [Ping timeout: 248 seconds]
ruby-lang407 has quit [Ping timeout: 260 seconds]
paradisaeidae_ has joined #ruby
prestorium has quit [Ping timeout: 248 seconds]
sepp2k has quit [Read error: Connection reset by peer]
SteenJobs has quit [Quit: SteenJobs]
skweek has quit [Ping timeout: 246 seconds]
skweek has joined #ruby
roamingdog has quit [Remote host closed the connection]
cibs has quit [Ping timeout: 268 seconds]
roamingdog has joined #ruby
roamingdog has quit [Remote host closed the connection]
roamingdog has joined #ruby
roamingdog has quit [Remote host closed the connection]
roamingdog has joined #ruby
cibs has joined #ruby
roamingdog has quit [Remote host closed the connection]
aremaref has quit [Ping timeout: 265 seconds]
roamingdog has joined #ruby
roamingdog has quit [Remote host closed the connection]
roamingdog has joined #ruby
prestorium has joined #ruby
roamingdog has quit [Remote host closed the connection]
paradisaeidae_ has quit [Quit: ChatZilla 0.9.93 [Firefox 50.1.0/20161208153507]]
StoneCypher has joined #ruby
coyo has quit [Quit: Heaven is not a place, Bartleby, it's being with people who love you.]
gusrub has joined #ruby
gusrub has quit [Remote host closed the connection]
alan_w_ has joined #ruby
ur5us has joined #ruby
hotpancakes has joined #ruby
jallen12_ has joined #ruby
ruby-lang001 has joined #ruby
jallen123 has quit [Ping timeout: 258 seconds]
<ruby-lang001> stuck at this bug, for counting an array for a grades
<ruby-lang001> how do you count the array to check wether it's 80 and above?
<Radar> ruby-lang001: I think what you're after is the select method on the array
<Radar> ruby-lang001: [20, 40, 60, 80, 100].select { |i| ... }
<Radar> ruby-lang001: Experiment with that in an irb console.
skweek has quit [Ping timeout: 264 seconds]
jallen12_ has quit [Remote host closed the connection]
<ruby-lang001> can you count the element that are larger than 80 ?
<ruby-lang001> i tried it
<ruby-lang001> but can't
benlieb has joined #ruby
<Radar> ruby-lang001: What did you try?
nankyokusei has joined #ruby
<ruby-lang001> see the link above
<Radar> Did you try [20, 40, 60, 80, 100].select { |i| ... } ?
<Radar> I did see the link above and now I'm making suggestions of what to try.
<ruby-lang001> kk let me try
<ruby-lang001> marks.select {|i| i < 80; put i.count}
eminencehc has joined #ruby
eminencehc has quit [Client Quit]
<ruby-lang001> it there a way to put the condition inside the,count the arrays that met the conditions?
aremaref has joined #ruby
charliesome has joined #ruby
nankyokusei has quit [Ping timeout: 248 seconds]
<ruby-lang001> marks.select {|i| i.to_i > 80; puts i.to_a.count}
hotpancakes has quit [Ping timeout: 258 seconds]
<ruby-lang001> what i did was convert the i to array and count
StoneCypher has quit [Ping timeout: 248 seconds]
<ruby-lang001> any alternatives?
<Yonk_> With pg_search let's say we have a `User` model with a has_many relationship to `Location`. If I query someone named George that has two locations is it possible to get back the User with the name George and only the matched location of brooklyn?
<Yonk_> It's not really an issue otherwise I would post it on their github
<ruby-lang001> rails channel yonk
StoneCypher has joined #ruby
<Yonk_> doh
<Yonk_> sorry about that
splud has quit [Quit: splud]
<ruby-lang001> @Radar thank you solved it
Kug3lis has joined #ruby
skweek has joined #ruby
JoshS has joined #ruby
Kug3lis is now known as Kug3lis_off
Yxhuvud has quit [Ping timeout: 265 seconds]
<Radar> ruby-lang001: great :)
houhoulis has joined #ruby
Yxhuvud has joined #ruby
HalcyonicStorm has joined #ruby
dnicole has joined #ruby
arescorpio has joined #ruby
houhoulis has quit [Client Quit]
doubleemms has joined #ruby
aryaching has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
charliesome has joined #ruby
astrobunny has joined #ruby
astrobunny has quit [Read error: Connection reset by peer]
astrobunny has joined #ruby
libastral has quit [Ping timeout: 264 seconds]
libastral has joined #ruby
ur5us has quit [Remote host closed the connection]
ur5us has joined #ruby
harai has joined #ruby
skweek has quit [Ping timeout: 260 seconds]
benlieb has quit [Quit: benlieb]
ur5us has quit [Ping timeout: 246 seconds]
SteenJobs has joined #ruby
Scientz is now known as Scient
Scient is now known as Scient_
Scient_ is now known as Scient
TilakeTikka has joined #ruby
TilakeTikka has quit [Remote host closed the connection]
ur5us has joined #ruby
doubleemms has quit [Remote host closed the connection]
Dreamer3 has joined #ruby
d^sh has quit [Ping timeout: 246 seconds]
d^sh has joined #ruby
benlieb has joined #ruby
ruby-lang001 has quit [Ping timeout: 260 seconds]
hotpancakes has joined #ruby
foption has joined #ruby
dcunit3d has quit [Ping timeout: 248 seconds]
jottr has joined #ruby
hanmac has quit [Ping timeout: 258 seconds]
enyo_ has joined #ruby
optiz0r has quit [Ping timeout: 265 seconds]
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
jottr_ has quit [Ping timeout: 265 seconds]
hotpancakes has quit [Remote host closed the connection]
hotpancakes has joined #ruby
enyo_ has quit [Ping timeout: 258 seconds]
username_ has joined #ruby
dviola has quit [Quit: WeeChat 1.6]
harai has quit [Ping timeout: 258 seconds]
doubleemms has joined #ruby
benlieb has quit [Quit: benlieb]
hotpancakes has quit [Remote host closed the connection]
hotpancakes has joined #ruby
hanmac has joined #ruby
username_ has quit [Ping timeout: 260 seconds]
Gasher has joined #ruby
Azure has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
carterdea has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
benlieb has joined #ruby
Yxhuvud has quit [*.net *.split]
Kug3lis_off has quit [*.net *.split]
astrobunny has quit [*.net *.split]
arescorpio has quit [*.net *.split]
Scient has quit [*.net *.split]
libastral has quit [*.net *.split]
JoshS has quit [*.net *.split]
montanonic has quit [*.net *.split]
ledestin has quit [*.net *.split]
SteenJobs has quit [*.net *.split]
aryaching has quit [*.net *.split]
rwb has quit [*.net *.split]
aidalgol has quit [*.net *.split]
alan_w has quit [*.net *.split]
doubleemms has quit [*.net *.split]
lszhu has quit [*.net *.split]
arescorpio has joined #ruby
Scient has joined #ruby
astrobunny has joined #ruby
Kug3lis_off has joined #ruby
Yxhuvud has joined #ruby
doubleemms has joined #ruby
lszhu has joined #ruby
libastral has joined #ruby
ledestin has joined #ruby
montanonic has joined #ruby
JoshS has joined #ruby
SteenJobs has joined #ruby
alan_w has joined #ruby
aidalgol has joined #ruby
aryaching has joined #ruby
rwb has joined #ruby
nadir is now known as nadir|mobile
SeepingN has joined #ruby
nankyokusei has joined #ruby
rwb has quit [Ping timeout: 248 seconds]
ghostlight has quit [Ping timeout: 258 seconds]
JoshS has quit [Ping timeout: 248 seconds]
JoshS has joined #ruby
optiz0r has joined #ruby
charliesome_ has joined #ruby
m_antis has quit [Ping timeout: 265 seconds]
charliesome has quit [Read error: Connection reset by peer]
charliesome__ has joined #ruby
nankyokusei has quit [Ping timeout: 258 seconds]
ghostlight has joined #ruby
harfangk has joined #ruby
charliesome_ has quit [Read error: Connection reset by peer]
charliesome__ has quit [Ping timeout: 260 seconds]
dcunit3d has joined #ruby
brent__ has joined #ruby
charliesome has joined #ruby
brent__ has quit [Client Quit]
rwb has joined #ruby
jackjackdripper has quit [Quit: Leaving.]
MrBismuth has joined #ruby
banisterfiend has joined #ruby
roamingdog has joined #ruby
charliesome has quit [Read error: Connection reset by peer]
charliesome has joined #ruby
carterdea has joined #ruby
toretore has quit [Ping timeout: 256 seconds]
braincrash has quit [Quit: bye bye]
LuckyABA has quit [Ping timeout: 265 seconds]
JoshS has quit [Ping timeout: 246 seconds]
SeepingN has quit [Remote host closed the connection]
SeepingN has joined #ruby
benlieb has quit [Quit: benlieb]
ryzokuken has joined #ruby
doubleemms has quit [Remote host closed the connection]
ryzokuken has quit [Client Quit]
shakes has joined #ruby
ryzokuken has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
podman[USC] is now known as podman
charliesome has joined #ruby
benlieb has joined #ruby
charliesome has quit [Client Quit]
hahuang61 has joined #ruby
FastJack has joined #ruby
govg has joined #ruby
braincrash has joined #ruby
gix has quit [Ping timeout: 260 seconds]
petrichorx has joined #ruby
DLSteve has quit [Quit: All rise, the honorable DLSteve has left the channel.]
gix has joined #ruby
aremaref has quit [Ping timeout: 265 seconds]
aremaref has joined #ruby
aupadhye has joined #ruby
enyo has joined #ruby
blackbom1 has joined #ruby
arescorpio has quit [Remote host closed the connection]
enyo has quit [Ping timeout: 256 seconds]
blackbombay has quit [Ping timeout: 268 seconds]
solocshaw has joined #ruby
roamingdog has quit []
pilne has quit [Quit: Quitting!]
catenthusiast has joined #ruby
hotpancakes has quit [Remote host closed the connection]
hotpancakes has joined #ruby
minimalism has quit [Quit: minimalism]
nbdy has joined #ruby
Channel6 has quit [Quit: Leaving]
nchambers is now known as hammwch
shakes has quit [Quit: Leaving]
DoctorMonocular has joined #ruby
<DoctorMonocular> I have a data structure that is a nestable node. Nodes have parents, which are usually other nodes, but a parent can also be a Root object. I want to reference the root object from an arbitrary node. If I check that node's parent and it's a node, I want to check the parent's parent, until I hit (and return) the root. What's the cleanest way to do that? I suspect I can do some inject magic or something, but I
<DoctorMonocular> 'm not sure how to pull it off
elh9 has quit [Ping timeout: 245 seconds]
JoshS has joined #ruby
JoshS has quit [Max SendQ exceeded]
<DoctorMonocular> I guess I'll just use recurrsion
<DoctorMonocular> a little worried about overflows though
MrBismuth is now known as MrBusiness
JoshS has joined #ruby
testuser1 has joined #ruby
lxsameer has joined #ruby
nankyokusei has joined #ruby
A_Drone has quit [Read error: Connection reset by peer]
Gasher has quit [Quit: Leaving]
govg has quit [Ping timeout: 260 seconds]
nbdy has quit [Quit: Textual IRC Client: www.textualapp.com]
nankyokusei has quit [Ping timeout: 260 seconds]
iaz has joined #ruby
dnicole has quit [Remote host closed the connection]
clouvet has joined #ruby
pawnbox has joined #ruby
govg has joined #ruby
LoneHerm_ has joined #ruby
banisterfiend has quit [Read error: Connection reset by peer]
solocshaw has quit [Ping timeout: 258 seconds]
<iaz> I'm having an issue with rspec (3.5.4) where I'm pretty sure I'm just not configuring it correctly. When I run `bundler exec rspec` it only seems to run the first (depth-first, alphabetically) file in my spec directory. It's supposed to run all the files ending in _spec.rb right?
zapata has joined #ruby
<iaz> I've never used IRC before, so if I do anything that's bad form, let me know.
pabloh_ has joined #ruby
aryaching has quit [Ping timeout: 248 seconds]
hotpancakes has quit [Ping timeout: 258 seconds]
pabloh has quit [Ping timeout: 248 seconds]
ryzokuken has quit [Read error: Connection reset by peer]
LoneHerm_ has quit [Remote host closed the connection]
ryzokuken has joined #ruby
DoctorMonocular has quit [Remote host closed the connection]
nbdy has joined #ruby
nbdy has quit [Client Quit]
montanonic has quit [Ping timeout: 248 seconds]
benlieb has quit [Quit: benlieb]
enterprisey has quit [Remote host closed the connection]
montanonic has joined #ruby
iaz has quit [Ping timeout: 260 seconds]
ur5us has quit [Ping timeout: 260 seconds]
ur5us has joined #ruby
<zenspider> iaz: I'm no expert by any means... but that sounds right to me
charliesome has joined #ruby
djbkd2 has joined #ruby
djbkd2 has quit [Client Quit]
oaklndr1 has joined #ruby
__Yiota has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Mortomes|Train has joined #ruby
jcao219 has joined #ruby
Mortomes|Train_ has joined #ruby
Mortomes|Train has quit [Ping timeout: 260 seconds]
lacour has quit [Quit: Leaving]
astrobunny has quit [Remote host closed the connection]
smathy has joined #ruby
astrobunny has joined #ruby
Kug3lis_off is now known as Kug3lis
clouvet has quit [Quit: leaving]
enyo has joined #ruby
hotpancakes has joined #ruby
postmodern has joined #ruby
biberu has joined #ruby
tvw has joined #ruby
jaiks has quit [Ping timeout: 240 seconds]
clouvet has joined #ruby
LoneHermit has joined #ruby
enyo has quit [Ping timeout: 260 seconds]
Coldblackice_ has quit [Ping timeout: 256 seconds]
clouvet has quit [Client Quit]
Kug3lis is now known as Kug3lis_off
clouvet has joined #ruby
SeepingN has quit [Ping timeout: 256 seconds]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Coldblackice has joined #ruby
charliesome has joined #ruby
LoneHermit has quit [Ping timeout: 260 seconds]
pabloh_ has quit [Quit: Leaving]
Tanfrieze has joined #ruby
charliesome has quit [Client Quit]
SteenJobs has quit [Quit: SteenJobs]
charliesome has joined #ruby
jaiks has joined #ruby
charliesome has quit [Client Quit]
hotpancakes has quit [Ping timeout: 258 seconds]
charliesome has joined #ruby
xen0fon has joined #ruby
SeepingN has joined #ruby
blackbom1 has quit [Ping timeout: 260 seconds]
carterdea has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nankyokusei has joined #ruby
ur5us has quit [Remote host closed the connection]
jottr has quit [Ping timeout: 256 seconds]
petrichorx has quit [Quit: Connection closed for inactivity]
SeepingN has quit [Ping timeout: 272 seconds]
Mortomes|Train_ has quit [Ping timeout: 260 seconds]
nankyokusei has quit [Ping timeout: 246 seconds]
enilsen16 has joined #ruby
SpiffTR has joined #ruby
iogf has quit [Remote host closed the connection]
CloCkWeRX has quit [Ping timeout: 264 seconds]
charliesome has joined #ruby
oaklndr1 has quit [Ping timeout: 256 seconds]
enilsen16 has quit [Quit: enilsen16]
aganov has joined #ruby
conta1 has joined #ruby
enilsen16 has joined #ruby
SeepingN has joined #ruby
bigkevmcd has joined #ruby
clouvet has quit [Quit: leaving]
smathy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
clouvet has joined #ruby
harai has joined #ruby
elementaru has joined #ruby
testuser1 has quit [Quit: Leaving.]
aremaref has quit [Ping timeout: 248 seconds]
rippa has joined #ruby
xen0fon has quit [Ping timeout: 260 seconds]
teclator has quit [Ping timeout: 252 seconds]
e1z0 has joined #ruby
teclator has joined #ruby
SpiffTR has quit [Quit: Leaving.]
montanonic has quit [Ping timeout: 258 seconds]
jenrzzz has joined #ruby
andikr has joined #ruby
jshjsh has joined #ruby
mschuett has joined #ruby
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
wugy has quit [Excess Flood]
<mschuett> hello, driving me crazy and not sure what to search for. in ruby 2.3 how come this is valid class.method {some_string} but this is an error class.method({some_string})?
<mschuett> at a loss for what to search
JoshS has quit [Ping timeout: 258 seconds]
<mschuett> syntax error, unexpected '}', expecting => is the error it throws
pawnbox has quit [Remote host closed the connection]
tvw has quit [Read error: Connection reset by peer]
blackbom1 has joined #ruby
tvw has joined #ruby
aufi has joined #ruby
<mschuett> o
hotpancakes has joined #ruby
<mschuett> i'm too used to php magic hash/array objects
Mortomes|Work has joined #ruby
blaxter has joined #ruby
<blackbom1> getting use to php sounds like a bad idea
mistym has joined #ruby
e1z0 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tvw has quit [Ping timeout: 256 seconds]
hotpancakes has quit [Ping timeout: 258 seconds]
mschuett has quit [Ping timeout: 260 seconds]
pawnbox has joined #ruby
saneax-_-|AFK is now known as saneax
norkle has quit [Ping timeout: 268 seconds]
last_staff has joined #ruby
yardenbar has joined #ruby
catenthusiast has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tvw has joined #ruby
jaruga___ has joined #ruby
jaruga___ is now known as jaruga
enyo has joined #ruby
carterdea has joined #ruby
mark_66 has joined #ruby
enyo has quit [Ping timeout: 248 seconds]
LoneHermit has joined #ruby
leonthemisfit is now known as leonthedrunkfit
LoneHermit has quit [Remote host closed the connection]
montanonic has joined #ruby
byte512 has joined #ruby
e1z0 has joined #ruby
SpiffTR has joined #ruby
tvw has quit [Read error: Connection reset by peer]
tvon has quit [Remote host closed the connection]
ur5us has joined #ruby
ur5us has quit [Remote host closed the connection]
ur5us has joined #ruby
e1z0 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
astrobunny has quit [Remote host closed the connection]
nankyokusei has joined #ruby
enyo has joined #ruby
enilsen16 has quit [Quit: enilsen16]
the_drow_ has joined #ruby
Echohn has joined #ruby
enilsen16 has joined #ruby
jenrzzz has quit [Ping timeout: 272 seconds]
astrobunny has joined #ruby
nankyokusei has quit [Ping timeout: 272 seconds]
Echohn has quit [Remote host closed the connection]
ryzokuken has quit [Quit: Konversation terminated!]
elh9 has joined #ruby
Echohn has joined #ruby
Macaveli has joined #ruby
Echohn has quit [Remote host closed the connection]
andikr has quit [Ping timeout: 265 seconds]
enilsen16 has quit [Quit: enilsen16]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
Dobler has joined #ruby
dionysus69 has joined #ruby
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
banisterfiend has joined #ruby
pawnbox has quit [Ping timeout: 248 seconds]
hotpancakes has joined #ruby
Silthias has joined #ruby
jsrn has joined #ruby
ishe_ua has joined #ruby
nowhereman has quit [Ping timeout: 248 seconds]
Echohn has joined #ruby
Echohn has quit [Remote host closed the connection]
astrobunny has quit [Remote host closed the connection]
Echohn has joined #ruby
SpiffTR has quit [Quit: Leaving.]
harfangk has quit [Quit: Textual IRC Client: www.textualapp.com]
mim1k|wo1k has quit [Quit: Reconnecting]
mim1k|work has joined #ruby
unshadow has quit [Ping timeout: 256 seconds]
montanonic has quit [Ping timeout: 265 seconds]
andikr has joined #ruby
unshadow has joined #ruby
al2o3-cr has joined #ruby
Echohn has quit [Remote host closed the connection]
Echohn has joined #ruby
symm- has quit [Ping timeout: 256 seconds]
dionysus70 has joined #ruby
pawnbox has joined #ruby
dionysus69 has quit [Ping timeout: 258 seconds]
dionysus70 is now known as dionysus69
frozengeek__ has joined #ruby
hotpancakes has quit [Ping timeout: 258 seconds]
ddffg has joined #ruby
tvon has joined #ruby
jenrzzz has joined #ruby
pawnbox has quit [Ping timeout: 246 seconds]
SpiffTR has joined #ruby
doublemalt__ has joined #ruby
anisha has joined #ruby
StoneCypher has quit [Ping timeout: 258 seconds]
jottr has joined #ruby
jottr has quit [Client Quit]
mim1k|wo1k has joined #ruby
koooge has joined #ruby
milardovich has joined #ruby
mshirdel_ has joined #ruby
mim1k|work has quit [Ping timeout: 265 seconds]
djbkd2 has joined #ruby
Beams has joined #ruby
mshirdel_ has quit [Quit: Leaving]
UserJosh has joined #ruby
jshjsh has quit [Disconnected by services]
UserJosh is now known as JoshS
koooge has quit [Ping timeout: 272 seconds]
koooge has joined #ruby
gregf_ has joined #ruby
Fernando-Basso has joined #ruby
Echohn has quit [Remote host closed the connection]
Echohn has joined #ruby
xall has joined #ruby
djbkd2 has quit [Quit: node-irc says goodbye]
mim1k|work has joined #ruby
lxsameer has quit [Ping timeout: 272 seconds]
nyuszika7h has quit [Ping timeout: 250 seconds]
milardovich has quit [Remote host closed the connection]
mim1k|wo1k has quit [Ping timeout: 246 seconds]
pawnbox has joined #ruby
rodfersou has joined #ruby
rodfersou is now known as rodfersou|coffee
anisha_ has joined #ruby
<kke> has anyone added their ruby app to homebrew? can you just depend on ruby 2.3 or some other version and how does it play with rbenv/rvm?
nyuszika7h has joined #ruby
teclator has quit [Remote host closed the connection]
nowhereman has joined #ruby
quiqua has joined #ruby
TomyWork has joined #ruby
anisha has quit [Ping timeout: 265 seconds]
pawnbox has quit [Ping timeout: 246 seconds]
mim1k|work has quit [Ping timeout: 264 seconds]
foption has quit [Remote host closed the connection]
foption has joined #ruby
anisha__ has joined #ruby
anisha_ has quit [Ping timeout: 246 seconds]
mim1k|work has joined #ruby
Macaveli has quit [Remote host closed the connection]
Dreamer3 has quit [Quit: Leaving...]
<kke> actually maybe i'll go ask on brew channel instead
LambdaSi1 is now known as LambdaSix
pawnbox has joined #ruby
Echohn has quit [Remote host closed the connection]
milardovich has joined #ruby
Echohn has joined #ruby
anisha_ has joined #ruby
anisha__ has quit [Ping timeout: 246 seconds]
dionysus69 has quit [Ping timeout: 246 seconds]
pawnbox has quit [Ping timeout: 246 seconds]
milardovich has quit [Ping timeout: 256 seconds]
pawnbox has joined #ruby
rodfersou|coffee is now known as rodfersou
astrobunny has joined #ruby
teclator has joined #ruby
jenrzzz has quit [Ping timeout: 248 seconds]
blackbom1 has quit [Ping timeout: 256 seconds]
pawnbox has quit [Ping timeout: 246 seconds]
Mon_Ouie has quit [Read error: Connection reset by peer]
LoneHerm_ has joined #ruby
Yxhuvud has quit [Ping timeout: 256 seconds]
pandaant has joined #ruby
ghostlight has quit [Ping timeout: 246 seconds]
xen0fon has joined #ruby
ghostlight has joined #ruby
astrobunny has quit [Ping timeout: 265 seconds]
hotpancakes has joined #ruby
Echohn has quit [Ping timeout: 256 seconds]
xall has quit [Quit: WeeChat 1.5]
Kug3lis_off is now known as Kug3lis
evie_hammond has joined #ruby
Mon_Ouie has joined #ruby
LoneHerm_ has quit [Ping timeout: 264 seconds]
Kug3lis is now known as Kug3lis_off
xall has joined #ruby
milardovich has joined #ruby
hightower2 has joined #ruby
<zenspider> kke: not really sure what you're asking... homebrew installs packages like ruby... of course you can depend on it.
modin has quit [Quit: ZNC - 1.6.0 - http://znc.in]
modin has joined #ruby
nankyokusei has joined #ruby
carterdea has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jcao219 has quit [Ping timeout: 248 seconds]
hightower3 has quit [Ping timeout: 245 seconds]
SeepingN has quit [Quit: The system is going down for reboot NOW!]
hightower3 has joined #ruby
milardovich has quit [Ping timeout: 265 seconds]
nankyokusei has quit [Ping timeout: 246 seconds]
xall_ has joined #ruby
hightower2 has quit [Ping timeout: 260 seconds]
doublemalt__ has quit [Ping timeout: 258 seconds]
xall has quit [Ping timeout: 272 seconds]
al2o3-cr has quit [Ping timeout: 246 seconds]
hotpancakes has quit [Ping timeout: 258 seconds]
marr has joined #ruby
pawnbox has joined #ruby
Yxhuvud has joined #ruby
djbkd_ has joined #ruby
lel has quit [Ping timeout: 265 seconds]
milardovich has joined #ruby
pawnbox has quit [Ping timeout: 272 seconds]
dionysus69 has joined #ruby
aidalgol has quit [Quit: zZzZzzz]
lenwood has joined #ruby
lel has joined #ruby
lenwood has quit [Client Quit]
lenwood has joined #ruby
lxsameer has joined #ruby
Dobler has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ledestin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jespada has joined #ruby
neanderslob has quit [Read error: Connection reset by peer]
polysics has joined #ruby
djbkd_ has quit [Remote host closed the connection]
cibs has quit [Ping timeout: 268 seconds]
cibs has joined #ruby
sdothum has joined #ruby
pawnbox has joined #ruby
jaruga has quit [Ping timeout: 260 seconds]
xall_ has quit [Ping timeout: 248 seconds]
dionysus69 has quit [Ping timeout: 246 seconds]
Kug3lis has joined #ruby
canteen4 has quit [Ping timeout: 252 seconds]
canteen4 has joined #ruby
astrobunny has joined #ruby
Kug3lis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
existensil has quit [Quit: WeeChat 0.4.2]
m_antis has joined #ruby
existensil has joined #ruby
CloCkWeRX has joined #ruby
astrobunny has quit [Ping timeout: 272 seconds]
ur5us has quit [Remote host closed the connection]
d0nn1e has quit [Ping timeout: 246 seconds]
Kug3lis has joined #ruby
d0nn1e has joined #ruby
lenwood has quit [Ping timeout: 260 seconds]
StoneCypher has joined #ruby
StoneCypher has quit [Ping timeout: 264 seconds]
ptx0 has quit [Ping timeout: 256 seconds]
enyo has quit [Ping timeout: 256 seconds]
hotpancakes has joined #ruby
DaveTaboola has joined #ruby
jmignault has joined #ruby
doublemalt__ has joined #ruby
hotpancakes has quit [Ping timeout: 258 seconds]
lenwood has joined #ruby
SpiffTR has quit [Quit: Leaving.]
nettoweb has joined #ruby
xen0fon has quit [Ping timeout: 260 seconds]
nettoweb1 has joined #ruby
nankyokusei has joined #ruby
astrobunny has joined #ruby
LoneHermit has joined #ruby
nettoweb has quit [Ping timeout: 246 seconds]
nettoweb1 has quit [Max SendQ exceeded]
sepp2k has joined #ruby
nankyokusei has quit [Ping timeout: 256 seconds]
nettoweb has joined #ruby
LoneHermit has quit [Ping timeout: 248 seconds]
astrobunny has quit [Ping timeout: 258 seconds]
enyo has joined #ruby
mark_66 has quit [Quit: Leaving.]
mark_66 has joined #ruby
lxsameer has quit [Ping timeout: 248 seconds]
nettoweb1 has joined #ruby
jmignault has quit [Remote host closed the connection]
milardovich has quit []
Rodya_ has joined #ruby
dviola has joined #ruby
nettoweb has quit [Ping timeout: 246 seconds]
astrobunny has joined #ruby
astrobunny has quit [Remote host closed the connection]
_whitelogger_ has joined #ruby
Aria has joined #ruby
Subfusc has joined #ruby
sspreitz has joined #ruby
creat has joined #ruby
JoL1hAHN has joined #ruby
snapcase has joined #ruby
alexandernst has joined #ruby
alexandernst has quit [Changing host]
alexandernst has joined #ruby
bastelfreak has joined #ruby
hayden___ has joined #ruby
mavenik[m] has joined #ruby
coreyja[m] has joined #ruby
blackjid has joined #ruby
M-travis has joined #ruby
bweston92 has joined #ruby
andersh has joined #ruby
guanjian[m] has joined #ruby
pmarreck has joined #ruby
alem0lars has joined #ruby
Lloyd has joined #ruby
rflot has joined #ruby
MrBloo has joined #ruby
unshadow has quit [Ping timeout: 248 seconds]
ELLIOTTCABLE has joined #ruby
mitsuhiko has joined #ruby
workmad3 has joined #ruby
ghostlight has quit [Ping timeout: 248 seconds]
dviola has quit [Quit: WeeChat 1.6]
diego1 has joined #ruby
SpiffTR has joined #ruby
postmodern has quit [Remote host closed the connection]
diego1 has quit [Changing host]
diego1 has joined #ruby
diego1 is now known as dviola
skmp has joined #ruby
dviola has quit [Client Quit]
pandaant has quit [Remote host closed the connection]
polysics has quit [Remote host closed the connection]
ghostlight has joined #ruby
nowhereman has quit [Ping timeout: 272 seconds]
alan_w has quit [Ping timeout: 248 seconds]
Kug3lis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
e1z0 has joined #ruby
Kug3lis has joined #ruby
e1z0 has quit [Client Quit]
unshadow has joined #ruby
Rodya_ has quit [Remote host closed the connection]
Rodya_ has joined #ruby
hotpancakes has joined #ruby
m_antis has quit [Ping timeout: 256 seconds]
troulouliou_div2 has joined #ruby
anisha_ has quit [Ping timeout: 256 seconds]
polysics has joined #ruby
lenwood has quit [Ping timeout: 246 seconds]
gajus has joined #ruby
saneax is now known as saneax-_-|AFK
anisha_ has joined #ruby
cibs has quit [Ping timeout: 268 seconds]
koooge_ has joined #ruby
polysics has quit [Remote host closed the connection]
cibs has joined #ruby
koooge has quit [Ping timeout: 248 seconds]
toretore has joined #ruby
Silthias1 has joined #ruby
polysics has joined #ruby
Silthias has quit [Ping timeout: 260 seconds]
polysics has quit [Remote host closed the connection]
blaxter has quit [Quit: foo]
unshadow has quit [Ping timeout: 248 seconds]
ddffg has quit [Quit: Leaving]
troulouliou_div2 has quit [Quit: Leaving]
unshadow has joined #ruby
dviola has joined #ruby
workmad3 has quit [Ping timeout: 272 seconds]
Guest59325 has quit [Quit: Guest59325]
xen0fon has joined #ruby
hotpancakes has quit [Ping timeout: 258 seconds]
quiqua has quit [Read error: Connection reset by peer]
quiqua has joined #ruby
elh9 has quit [Ping timeout: 245 seconds]
rwb has quit [Ping timeout: 248 seconds]
GinoManWorks has joined #ruby
zzak has quit [Ping timeout: 260 seconds]
Echohn has joined #ruby
zzak has joined #ruby
elh9 has joined #ruby
chiasmata has joined #ruby
lenwood has joined #ruby
StoneCypher has joined #ruby
aupadhye has quit [Ping timeout: 256 seconds]
jallen123 has joined #ruby
StoneCypher has quit [Ping timeout: 248 seconds]
Echohn has quit [Remote host closed the connection]
Echohn has joined #ruby
aries_liuxueyang has quit [Ping timeout: 245 seconds]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
workmad3 has joined #ruby
dc1 has joined #ruby
xit has joined #ruby
d0nn1e has quit [Ping timeout: 246 seconds]
Echohn has quit [Client Quit]
xit has left #ruby ["Killed buffer"]
dcunit3d has quit [Ping timeout: 272 seconds]
conta has quit [Ping timeout: 268 seconds]
conta1 is now known as conta
xit has joined #ruby
adrianS_ has joined #ruby
<adrianS_> moin :)
dc1 has quit [Ping timeout: 248 seconds]
* adrianS_ fails to update to ruby 2.4.0 since the test suite complains about missing operator "<<" for nil class in /usr/lib64/ruby/2.4.0/net/protocol.rb ....
<adrianS_> @debug_output << '<- ' if @debug_output
<adrianS_> that comes with with ruby and seems to have worker with ruby 2.3 ..
<adrianS_> @debug_output is nil, so it was skipped before, but ruby seems to complain now about invalid operator
<adrianS_> or is it my problem? ;)
GinoManWorks has quit [Quit: Leaving]
nankyokusei has joined #ruby
banisterfiend has quit [Read error: Connection reset by peer]
Mortomes|Work has quit [Ping timeout: 260 seconds]
<matthewd> adrianS_: I just pasted that line into irb and it didn't complain
<adrianS_> hm ...
foption has quit [Remote host closed the connection]
xit has left #ruby ["ERC (IRC client for Emacs 25.1.1)"]
Nicmavr has quit [Ping timeout: 246 seconds]
<adrianS_> matthewd: same here indeed, I need to look deeper then ...
<adrianS_> thanks!
Kug3lis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<adrianS_> and sorry for the noise then ...
aries_liuxueyang has joined #ruby
nankyokusei has quit [Ping timeout: 246 seconds]
<apeiros> only case I could imagine that erroring out is with multiple threads and one thread nil-ing a previously non-nil @debug_output. but that's rather unlikely to be what's happening.
<adrianS_> yes, I doubt that also ...
darix has quit [Quit: Changing server]
<apeiros> @debug_output might reference an object which delegates <<
<apeiros> sadly rubys own delegator is one of the perpetrators wrt
<apeiros> assuming you got the right line
<apeiros> and some delegators "sanitize" the backtrace
<adrianS_> that is my trace
adaedra has quit [*.net *.split]
bounb has quit [*.net *.split]
cevett has quit [*.net *.split]
bhaak has quit [*.net *.split]
wopi has quit [*.net *.split]
xsdg has quit [*.net *.split]
scorphus has quit [*.net *.split]
watersoul has quit [*.net *.split]
dagelf has quit [*.net *.split]
heinrich5991 has quit [*.net *.split]
jidar has quit [*.net *.split]
CalimeroTeknik has quit [*.net *.split]
cydrobolt has quit [*.net *.split]
mmasaki has quit [*.net *.split]
ricer2 has quit [*.net *.split]
Drakevr has quit [*.net *.split]
knight_ has quit [*.net *.split]
Meeh has quit [*.net *.split]
wopi has joined #ruby
xsdg has joined #ruby
headius has quit [*.net *.split]
dagelf has joined #ruby
heinrich5991 has joined #ruby
bhaak has joined #ruby
cydrobolt has joined #ruby
mmasaki has joined #ruby
cydrobolt has joined #ruby
headius has joined #ruby
adaedra has joined #ruby
watersoul_ has joined #ruby
jpinnix has quit [Ping timeout: 265 seconds]
yo61 has quit [Ping timeout: 265 seconds]
Brak__________ has quit [Ping timeout: 265 seconds]
cstrahan has quit [Ping timeout: 265 seconds]
jidar has joined #ruby
ricer2 has joined #ruby
ishe_ua` has joined #ruby
cevett has joined #ruby
cgfbee has quit [Excess Flood]
<adrianS_> hm, different line now ...
Drakevr has joined #ruby
millerti has quit [Excess Flood]
herbmillerjr has quit [Write error: Broken pipe]
knight_ has joined #ruby
Meeh has joined #ruby
Nicmavr has joined #ruby
herbmillerjr has joined #ruby
ishe_ua has quit [Write error: Broken pipe]
Nicmavr is now known as Guest42712
CalimeroTeknik has joined #ruby
Kug3lis has joined #ruby
rodfersou is now known as rodfersou|lunch
rwb has joined #ruby
ghostlight has quit [Ping timeout: 248 seconds]
Brak__________ has joined #ruby
* adrianS_ notes that it happens only sometimes ...
siddart has joined #ruby
jpinnix has joined #ruby
yo61 has joined #ruby
benlieb has joined #ruby
Fernando-Basso has quit [Quit: WeeChat 1.6]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
LoneHerm_ has joined #ruby
CloCkWeRX has quit [Quit: Leaving.]
Xiti` has joined #ruby
darix has joined #ruby
jaruga___ has joined #ruby
cgfbee has joined #ruby
jaruga___ is now known as jaruga
benlieb has quit [Client Quit]
cstrahan has joined #ruby
KramerC has quit [Ping timeout: 258 seconds]
SpiffTR has quit [Quit: Leaving.]
VladGh_ has quit [Remote host closed the connection]
sepp2k1 has joined #ruby
mikeXsh has joined #ruby
Xiti has quit [Ping timeout: 258 seconds]
LoneHerm_ has quit [Ping timeout: 248 seconds]
KramerC has joined #ruby
sepp2k has quit [Ping timeout: 248 seconds]
ghostlight has joined #ruby
sylario has joined #ruby
<adrianS_> conflict with ruby external rubygem of xmlrpc ....
nettoweb1 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Toledo has joined #ruby
hotpancakes has joined #ruby
VladGh has joined #ruby
veloutin has quit [Ping timeout: 264 seconds]
dionysus69 has joined #ruby
pawnbox has quit [Remote host closed the connection]
minimalism has joined #ruby
elh9 has quit [Ping timeout: 245 seconds]
pawnbox has joined #ruby
hotpancakes has quit [Remote host closed the connection]
hotpancakes has joined #ruby
flashbang has joined #ruby
jhack has joined #ruby
Mortomes|Train has joined #ruby
malconis has joined #ruby
bmurt has joined #ruby
psychicist__ has joined #ruby
larissa has quit [Ping timeout: 245 seconds]
Rodya_ has quit [Remote host closed the connection]
vondruch has quit [Quit: vondruch]
GGMethos has quit [Quit: WeeChat 1.1.1]
vondruch has joined #ruby
clouvet has quit [Ping timeout: 260 seconds]
lenwood has quit [Ping timeout: 248 seconds]
clouvet has joined #ruby
doubleemms has joined #ruby
doubleemms has quit [Remote host closed the connection]
doubleemms has joined #ruby
petrichorx has joined #ruby
GGMethos has joined #ruby
GGMethos has quit [Client Quit]
GGMethos has joined #ruby
aries_liuxueyang has quit [Ping timeout: 246 seconds]
<adrianS_> apeiros: JFYI, got a bit distracted by other problems, but it was a too old webmock in the end ....
<adrianS_> apeiros: thanks again!
pawnbox has quit [Remote host closed the connection]
doublemalt__ has quit [Ping timeout: 264 seconds]
saslam has joined #ruby
pawnbox has joined #ruby
Guest62217 has quit [Ping timeout: 245 seconds]
ramortegui has joined #ruby
jallen123 has quit [Read error: Connection reset by peer]
C0deMaver1ck has joined #ruby
C0deMaver1ck is now known as Guest17747
jallen123 has joined #ruby
DLSteve has joined #ruby
spiette has quit [Quit: :qa!]
Exuma has joined #ruby
millerti has joined #ruby
aries_liuxueyang has joined #ruby
nankyokusei has joined #ruby
ken_barber has quit [Ping timeout: 258 seconds]
aryaching has joined #ruby
lmc has joined #ruby
SpiffTR has joined #ruby
Exuma has quit [Quit: Textual IRC Client: www.textualapp.com]
nankyokusei has quit [Ping timeout: 272 seconds]
djbkd_ has joined #ruby
cdg has joined #ruby
hotpancakes has quit [Remote host closed the connection]
jallen123 has quit [Remote host closed the connection]
jallen123 has joined #ruby
SpiffTR1 has joined #ruby
milardovich has joined #ruby
psychicist__ has quit [Ping timeout: 248 seconds]
SpiffTR has quit [Ping timeout: 256 seconds]
jallen123 has quit [Remote host closed the connection]
jallen123 has joined #ruby
nowhereman has joined #ruby
teclator has quit [Ping timeout: 246 seconds]
jhack has quit [Quit: jhack]
nankyokusei has joined #ruby
nankyokusei has quit [Remote host closed the connection]
psychicist__ has joined #ruby
tyang has joined #ruby
mim1k|work has quit [Ping timeout: 248 seconds]
Rodya_ has joined #ruby
jespada has quit [Quit: WeeChat 1.5-dev]
lmc has quit [Remote host closed the connection]
SpiffTR1 has quit [Ping timeout: 272 seconds]
mim1k|work has joined #ruby
harfangk has joined #ruby
mschuett has joined #ruby
flashbang has quit [Ping timeout: 248 seconds]
Kug3lis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
SpiffTR has joined #ruby
Mortomes|Train has quit [Ping timeout: 260 seconds]
mschuett has quit [Ping timeout: 272 seconds]
djbkd_ has quit []
bin7me has joined #ruby
hutch34 has joined #ruby
preyalone has joined #ruby
lenwood has joined #ruby
iogf has joined #ruby
canteen4 has quit [Ping timeout: 246 seconds]
koooge has joined #ruby
lmc has joined #ruby
teclator has joined #ruby
koooge_ has quit [Ping timeout: 272 seconds]
Norm has joined #ruby
<Norm> metaprogramming question … can i alias a method on a particular object instance rather than at the class level?
__Yiota has joined #ruby
gnufied has joined #ruby
aganov has quit [Remote host closed the connection]
pawnbox has quit [Remote host closed the connection]
StoneCypher has joined #ruby
Kug3lis has joined #ruby
<Mon_Ouie> Yes, by reopening that object's singleton class
<Mon_Ouie> x.singleton_class.class_eval { alias_method(a, b) }
<Norm> ahh yes
koooge has quit [Ping timeout: 248 seconds]
Rodya_ has quit [Remote host closed the connection]
jhack has joined #ruby
bounb has joined #ruby
<Norm> Mon_Ouie: thanks
bounb has quit [Changing host]
bounb has joined #ruby
pawnbox has joined #ruby
psychicist__ has quit [Ping timeout: 248 seconds]
Rodya_ has joined #ruby
koooge has joined #ruby
hotpancakes has joined #ruby
flashbang has joined #ruby
hotpancakes has quit [Remote host closed the connection]
hotpancakes has joined #ruby
StoneCypher has quit [Ping timeout: 272 seconds]
<apeiros> or `class << x; alias_method new, old; end`
lmc has quit [Remote host closed the connection]
jrafanie has joined #ruby
larissa has joined #ruby
adrianS_ has quit [Ping timeout: 256 seconds]
juanda has joined #ruby
foption has joined #ruby
Rodya_ has quit [Remote host closed the connection]
foption has quit [Max SendQ exceeded]
LoneHermit has joined #ruby
lenwood has quit [Ping timeout: 248 seconds]
pawnbox has quit [Remote host closed the connection]
LoneHermit has quit [Ping timeout: 272 seconds]
jaruga has quit [Quit: jaruga]
ishe_ua` has quit [Remote host closed the connection]
hightower2 has joined #ruby
anisha_ has quit [Quit: This computer has gone to sleep]
hightower3 has quit [Ping timeout: 264 seconds]
Rodya_ has joined #ruby
Kug3lis has quit [Ping timeout: 246 seconds]
mschuett has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
dc1 has joined #ruby
dc1 has quit [Read error: Connection reset by peer]
aufi has quit [Ping timeout: 246 seconds]
dc1 has joined #ruby
polishdub has joined #ruby
psychicist__ has joined #ruby
mark_66 has quit [Quit: Leaving.]
xall_ has joined #ruby
TilakeTikka has joined #ruby
balazs has joined #ruby
TilakeTikka has left #ruby [#ruby]
lmc has joined #ruby
jallen123 has quit [Remote host closed the connection]
jallen123 has joined #ruby
hightower3 has joined #ruby
jallen123 has quit [Remote host closed the connection]
jallen123 has joined #ruby
hightower2 has quit [Ping timeout: 246 seconds]
travv0 has joined #ruby
m_antis has joined #ruby
pawnbox has joined #ruby
hightower3 has quit [Ping timeout: 248 seconds]
mschuett has quit [Quit: Lost terminal]
hightower3 has joined #ruby
Rodya_ has quit [Remote host closed the connection]
pawnbox has quit [Remote host closed the connection]
yardenbar has quit [Ping timeout: 258 seconds]
pawnbox has joined #ruby
the_drow_ has quit [Quit: This computer has gone to sleep]
jhack has quit [Ping timeout: 272 seconds]
elh9 has joined #ruby
unshadow has quit [Quit: leaving]
m_antis has quit [Ping timeout: 256 seconds]
rodfersou|lunch is now known as rodfersou
enyo has quit [Ping timeout: 246 seconds]
xall has joined #ruby
Kug3lis has joined #ruby
flashbang has quit [Remote host closed the connection]
flashbang has joined #ruby
Rodya_ has joined #ruby
elh9 has quit [Remote host closed the connection]
xall_ has quit [Ping timeout: 248 seconds]
elh9 has joined #ruby
dc1 has quit [Ping timeout: 248 seconds]
gajus has quit [Quit: Connection closed for inactivity]
nankyokusei has joined #ruby
SpiffTR1 has joined #ruby
Rodya_ has quit [Remote host closed the connection]
StoneCypher has joined #ruby
markholmes has quit [Ping timeout: 245 seconds]
pawnbox has quit [Read error: Connection reset by peer]
SpiffTR has quit [Read error: Connection reset by peer]
Rodya_ has joined #ruby
anisha_ has joined #ruby
nankyokusei has quit [Ping timeout: 248 seconds]
ptx0 has joined #ruby
pawnbox has joined #ruby
StoneCypher has quit [Ping timeout: 245 seconds]
last_staff has quit [Quit: last_staff]
chouhoulis has joined #ruby
username_ has joined #ruby
TomyWork has quit [Ping timeout: 256 seconds]
hightower3 has quit [Ping timeout: 256 seconds]
amclain has joined #ruby
siddart has quit [Ping timeout: 246 seconds]
markholmes has joined #ruby
enyo has joined #ruby
tercenya has quit []
a7d7p_ has joined #ruby
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
[Butch] has joined #ruby
xrlk has quit [Remote host closed the connection]
tercenya has joined #ruby
arthurl has joined #ruby
xall has quit [Ping timeout: 256 seconds]
Eiam has joined #ruby
StoneCypher has joined #ruby
howdoi has quit [Quit: Connection closed for inactivity]
TomyLobo has joined #ruby
mholmes has joined #ruby
bmurt has joined #ruby
SpiffTR1 has quit [Quit: Leaving.]
enterprisey has joined #ruby
Kug3lis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
hightower3 has joined #ruby
xall has joined #ruby
quiqua has quit [Quit: Textual IRC Client: www.textualapp.com]
meshsmith has joined #ruby
Eiam has quit [Quit: ╯°□°)╯︵ǝpouǝǝɹɟ]
SpiffTR has joined #ruby
flashbang has quit [Ping timeout: 245 seconds]
_mtr has joined #ruby
Eiam has joined #ruby
mustmodify has joined #ruby
<mustmodify> I'm trying to figure out whether this request... the one that causes the EOF... is somehow being initiated by the browser or by cucumber? https://gist.github.com/mustmodify/6599dc81ceb0bac91ec2e9f061eb61f2
hotpancakes has quit [Remote host closed the connection]
<mustmodify> the line in selenium/driver.rb:13 is `@browser = Selenium::WebDriver.for(options[:browser], options.reject { |key,val | SPECIAL_OPTIONS.include?(key) })`
<mustmodify> which doesn't seem like it would require a request.
hotpancakes has joined #ruby
juanda has quit [Ping timeout: 272 seconds]
jsrn has quit [Quit: Leaving]
SpiffTR has quit [Quit: Leaving.]
koooge_ has joined #ruby
mustmodify has left #ruby [#ruby]
Beams has quit [Quit: .]
boombox_ has joined #ruby
jackjackdripper has joined #ruby
koooge has quit [Ping timeout: 272 seconds]
SeepingN has joined #ruby
conta1 has joined #ruby
aremaref has joined #ruby
SpiffTR has joined #ruby
ledestin has joined #ruby
boombox_ has quit [Remote host closed the connection]
blackbom1 has joined #ruby
psychicist__ has quit [Ping timeout: 245 seconds]
<TomyLobo> must uhhh, useragent?
chouhoulis has quit [Remote host closed the connection]
<TomyLobo> not sure what cucumber is though :)
hotpancakes has quit [Remote host closed the connection]
enyo is now known as Guest58997
Guest58997 has quit [Killed (cherryh.freenode.net (Nickname regained by services))]
hotpancakes has joined #ruby
lmc has quit [Remote host closed the connection]
Satyajit has joined #ruby
siddart has joined #ruby
alxgsv has joined #ruby
enyo_ has joined #ruby
tercenya has quit []
blackbom1 has quit [Ping timeout: 248 seconds]
hotpancakes has quit [Ping timeout: 240 seconds]
gusrub has joined #ruby
_djbkd has joined #ruby
tercenya has joined #ruby
SpiffTR has quit [Quit: Leaving.]
hotpancakes has joined #ruby
mholmes has quit [Remote host closed the connection]
osboxes has joined #ruby
xall has quit [Ping timeout: 245 seconds]
LoneHerm_ has joined #ruby
enyo_ has quit [Ping timeout: 248 seconds]
_mtr has quit [Ping timeout: 248 seconds]
SpiffTR has joined #ruby
hotpancakes has quit [Ping timeout: 245 seconds]
xall has joined #ruby
brendan- has joined #ruby
tercenya has quit []
LoneHerm_ has quit [Ping timeout: 272 seconds]
BitWhisperer has joined #ruby
norkle has joined #ruby
montanonic has joined #ruby
unshadow has joined #ruby
hotpancakes has joined #ruby
norkle has quit [Changing host]
norkle has joined #ruby
lmc has joined #ruby
_mtr has joined #ruby
juanda has joined #ruby
SpiffTR has quit [Quit: Leaving.]
Rodya_ has quit [Remote host closed the connection]
psychicist__ has joined #ruby
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
smathy has joined #ruby
xall has quit [Ping timeout: 248 seconds]
xall has joined #ruby
SpiffTR has joined #ruby
_mtr has quit [Ping timeout: 248 seconds]
flashbang has joined #ruby
centrx has joined #ruby
centrx has quit [Changing host]
centrx has joined #ruby
smathy has quit [Ping timeout: 248 seconds]
bmurt has joined #ruby
frozengeek__ has quit [Quit: frozengeek__]
SteenJobs has joined #ruby
SteenJobs has quit [Client Quit]
symm- has joined #ruby
yardenbar has joined #ruby
psychicist__ has quit [Ping timeout: 248 seconds]
gusrub has quit []
gusrub has joined #ruby
_mtr has joined #ruby
SpiffTR has quit [Quit: Leaving.]
chouhoulis has joined #ruby
Ishido has quit [Remote host closed the connection]
SteenJobs has joined #ruby
andikr has quit [Remote host closed the connection]
moted has quit []
nankyokusei has joined #ruby
Ishido has joined #ruby
SpiffTR has joined #ruby
brendan- has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
gusrub has quit [Remote host closed the connection]
nankyokusei has quit [Ping timeout: 256 seconds]
negatifze has joined #ruby
<negatifze> Hi guys, I've searched the google for the answer to this with no luck. What is the "=~" operator in ruby?
Puffball has quit [Remote host closed the connection]
pawnbox has quit [Remote host closed the connection]
Puffball has joined #ruby
pawnbox has joined #ruby
<apeiros> negatifze: it's a method and as such depends on the receiver
<Mon_Ouie> Pattern matching, often used with Regexp and Strings
<apeiros> regex + string (either way round) it's matching
pawnbox has quit [Remote host closed the connection]
<negatifze> Ah, yes. Found it. It's not an operator, that's the problem, as aperios said. https://ruby-doc.org/core-2.2.0/Regexp.html#method-i-3D-7E
<apeiros> ?tabnick negatifze
<ruby[bot]> negatifze: pro-tip - use tab completion for nicks. avoids typos in nicks.
pawnbox has joined #ruby
SteenJobs has quit [Quit: SteenJobs]
<negatifze> apeiros Sorry ;)
doublemalt__ has joined #ruby
yardenbar has quit [Ping timeout: 248 seconds]
<Mon_Ouie> Very few things in Ruby are "operators" in that sense (I can only name logic operators &&/||/ternary)
ResidentBiscuit has joined #ruby
ResidentBiscuit has quit [Max SendQ exceeded]
ResidentBiscuit has joined #ruby
ResidentBiscuit has quit [Max SendQ exceeded]
carterdea has joined #ruby
ResidentBiscuit has joined #ruby
ResidentBiscuit has quit [Max SendQ exceeded]
pilne has joined #ruby
bocaneri has quit [Read error: Connection reset by peer]
foption has joined #ruby
dc1 has joined #ruby
ResidentBiscuit has joined #ruby
sepp2k1 has quit [Quit: Leaving.]
petrichorx has quit [Quit: Connection closed for inactivity]
marxarelli has joined #ruby
mholmes has joined #ruby
markholmes has quit [Quit: Leaving]
centrx has quit []
flashbang has quit [Ping timeout: 272 seconds]
testuser1 has joined #ruby
jhack has joined #ruby
Rodya_ has joined #ruby
foption has quit [Remote host closed the connection]
splud has joined #ruby
dc1 has quit [Quit: WeeChat 1.4]
dcunit3d has joined #ruby
moei has quit [Quit: Leaving...]
<thadtheman> http://pastebin.com/QqpJct2U This keeps giving a blank error_no.
<ruby[bot]> thadtheman: as I told you already, please use https://gist.github.com
muelleme has joined #ruby
gusrub has joined #ruby
Drakevr has quit [Changing host]
Drakevr has joined #ruby
whathappens has joined #ruby
anisha_ has quit [Quit: This computer has gone to sleep]
moei has joined #ruby
Rodya_ has quit [Remote host closed the connection]
StoneCypher has quit [Read error: Connection reset by peer]
StoneCypher has joined #ruby
Rodya_ has joined #ruby
anisha_ has joined #ruby
anisha_ has quit [Remote host closed the connection]
bin7me has quit [Quit: Leaving]
username_ has quit [Ping timeout: 256 seconds]
blackbom1 has joined #ruby
oaklndr1 has joined #ruby
enyo_ has joined #ruby
m_antis has joined #ruby
Rodya_ has quit [Remote host closed the connection]
enyo_ has quit [Ping timeout: 248 seconds]
Rodya_ has joined #ruby
Rodya_ has quit [Remote host closed the connection]
Rodya_ has joined #ruby
ResidentBiscuit has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
jackjackdripper has quit [Quit: Leaving.]
mendex133 has joined #ruby
Kug3lis_off is now known as Kug3lis
m_antis has quit [Ping timeout: 245 seconds]
mendex133 has quit [Client Quit]
__Yiota has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
hotpancakes has quit [Remote host closed the connection]
m_antis has joined #ruby
smathy has joined #ruby
muelleme has quit [Ping timeout: 256 seconds]
Rodya_ has quit [Remote host closed the connection]
muelleme has joined #ruby
Rodya_ has joined #ruby
cdg has quit [Remote host closed the connection]
Kug3lis has quit [Quit: Textual IRC Client: www.textualapp.com]
hotpancakes has joined #ruby
username_ has joined #ruby
m_antis has quit [Remote host closed the connection]
m_antis has joined #ruby
hotpancakes has quit [Remote host closed the connection]
marxarelli is now known as marxarelli|afk
exchgr has joined #ruby
jackjackdripper has joined #ruby
ResidentBiscuit has joined #ruby
smathy has quit [Quit: Textual IRC Client: www.textualapp.com]
theRoUS has quit [Changing host]
theRoUS has joined #ruby
vaxxon_ has quit [Quit: leaving]
m_antis has quit [Ping timeout: 245 seconds]
carterdea has quit [Ping timeout: 248 seconds]
Rodya_ has quit [Remote host closed the connection]
theRoUS is now known as marxarelli
marxarelli is now known as theRoUS
SpiffTR has quit [Quit: Leaving.]
Rodya_ has joined #ruby
swills has quit [Read error: Connection reset by peer]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Rodya_ has quit [Remote host closed the connection]
bmurt has joined #ruby
hotpancakes has joined #ruby
swills has joined #ruby
porfa has joined #ruby
ddffg has joined #ruby
<porfa> wow
<porfa> hello!
swills has quit [Read error: Connection reset by peer]
swills has joined #ruby
brendan- has joined #ruby
neoncortex has quit [Quit: WeeChat 1.0.1]
LoneHerm_ has joined #ruby
<thadtheman> wow?
<porfa> it’s just that my userpassword was pasted here in this chatwindow, no enter pressed though. i think its a colloquy bug
workmad3 has quit [Ping timeout: 272 seconds]
blackbom1 has quit [Ping timeout: 248 seconds]
mikeric has joined #ruby
blackbom1 has joined #ruby
_mtr has quit [Ping timeout: 256 seconds]
gnufied has quit [Ping timeout: 256 seconds]
LoneHerm_ has quit [Ping timeout: 245 seconds]
dionysus69 has quit [Ping timeout: 248 seconds]
hotpancakes has quit [Remote host closed the connection]
hotpancakes has joined #ruby
_mtr has joined #ruby
Silthias has joined #ruby
dionysus69 has joined #ruby
Silthias1 has quit [Ping timeout: 256 seconds]
sepp2k has joined #ruby
brendan- has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jenrzzz has joined #ruby
_mtr_ has joined #ruby
_mtr has quit [Read error: Connection reset by peer]
elh9 has quit [Remote host closed the connection]
<thadtheman> https://gist.github.com/anonymous/da0c5ae3092f4d41ccabdecbc8610cca This keeps telling me error_no is NilClass. What is wrong?
elh9 has joined #ruby
yasm has joined #ruby
muelleme has quit [Ping timeout: 246 seconds]
tercenya has joined #ruby
adrianS_ has joined #ruby
nankyokusei has joined #ruby
dcunit3d has quit [Ping timeout: 245 seconds]
gnufied has joined #ruby
shadeslayer has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
_whitelogger has joined #ruby
nahra has quit [Changing host]
nahra has joined #ruby
jaiks has joined #ruby
papercod1 has joined #ruby
soud has joined #ruby
bigkevmcd has joined #ruby
soud has quit [Changing host]
soud has joined #ruby
hanmac has joined #ruby
creat has joined #ruby
marsjaninzmarsa has joined #ruby
WebDawg has joined #ruby
jhass has joined #ruby
mistergibson has joined #ruby
thadtheman has joined #ruby
nankyokusei has quit [Ping timeout: 245 seconds]
linduxed has joined #ruby
alexandernst has joined #ruby
alexandernst has joined #ruby
SJr has joined #ruby
bastelfreak has joined #ruby
harai has joined #ruby
Flonk has joined #ruby
vedu has joined #ruby
dasher00 has quit [Ping timeout: 268 seconds]
swills has quit [Read error: Connection reset by peer]
blackjid has joined #ruby
swills has joined #ruby
pmarreck has joined #ruby
Donalmartin[m] has joined #ruby
velu_aon[m] has joined #ruby
coreyja[m] has joined #ruby
PaulCapestany has joined #ruby
vircung has joined #ruby
machty has quit [Ping timeout: 260 seconds]
marxarelli|afk is now known as marxarelli
cstrahan has quit [Ping timeout: 248 seconds]
fjj[m] has joined #ruby
Iacobus__ has joined #ruby
tpendragon has joined #ruby
davidmichaelkarr has quit [Ping timeout: 260 seconds]
elementaru has joined #ruby
jsanti[m] has joined #ruby
tobyn[m] has joined #ruby
ghostlight has quit [Ping timeout: 272 seconds]
bauruine has joined #ruby
JackMc has joined #ruby
montanonic has quit [Ping timeout: 248 seconds]
pizzaops has joined #ruby
aredridel has joined #ruby
cardoni has joined #ruby
Tony-St4rk has joined #ruby
uu has quit [Ping timeout: 264 seconds]
ELLIOTTCABLE has joined #ruby
shelling__ has joined #ruby
kineticrootkit[m has joined #ruby
Mon_Ouie has quit [Quit: WeeChat 1.6]
yasm has quit [Quit: Leaving]
amitchellbullard has joined #ruby
knowtheory has joined #ruby
preyalone has quit [Quit: Connection closed for inactivity]
[diecast] has joined #ruby
iogf has quit [Remote host closed the connection]
Klumben has joined #ruby
machty has joined #ruby
zzak has joined #ruby
jenrzzz has quit [Ping timeout: 246 seconds]
uu has joined #ruby
glitcherBrah has joined #ruby
davidmichaelkarr has joined #ruby
xrlk has joined #ruby
<thadtheman> https://gist.github.com/anonymous/da0c5ae3092f4d41ccabdecbc8610cca This keeps telling me error_no is NilClass. What is wrong?
milardovich has quit [Remote host closed the connection]
glitcherBrah has quit [Ping timeout: 260 seconds]
cstrahan has joined #ruby
deimos has joined #ruby
hotpancakes has quit [Remote host closed the connection]
<hanmac> thadtheman: hm maybe that $? at that place does not what you want? you might checkout popen3
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alem0lars has joined #ruby
jackjackdripper has quit [Quit: Leaving.]
oaklndr1 has quit [Ping timeout: 245 seconds]
gloscombe has joined #ruby
frozengeek__ has joined #ruby
valkyr2e has quit [Ping timeout: 246 seconds]
blackwind_123 has quit [Quit: Never underestimate the power of stupid people in large groups.]
hotpancakes has joined #ruby
_mtr has joined #ruby
_mtr_ has quit [Ping timeout: 246 seconds]
ur5us has joined #ruby
valkyr2e has joined #ruby
ur5us has quit [Remote host closed the connection]
ghostlight has joined #ruby
milardovich has joined #ruby
ur5us has joined #ruby
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
muelleme has joined #ruby
tercenya has quit [Remote host closed the connection]
Devalo has joined #ruby
tercenya has joined #ruby
milardovich has quit [Ping timeout: 248 seconds]
valkyr2e has quit [Ping timeout: 246 seconds]
matp_ has joined #ruby
koooge_ has quit [Quit: Leaving...]
matp has quit [Ping timeout: 246 seconds]
ddffg has quit [Quit: Leaving]
rodfersou has quit [Quit: leaving]
s1kx has joined #ruby
xall_ has joined #ruby
iceden has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
dionysus69 has quit [Ping timeout: 245 seconds]
xall has quit [Ping timeout: 245 seconds]
LoneHermit has joined #ruby
testuser1 has quit [Quit: Leaving.]
valkyr2e has joined #ruby
LoneHermit has quit [Ping timeout: 256 seconds]
_mtr has quit [Ping timeout: 246 seconds]
OTORelic has joined #ruby
jallen123 has quit [Remote host closed the connection]
mholmes has quit [Remote host closed the connection]
jallen123 has joined #ruby
rizenine has joined #ruby
jallen123 has quit [Remote host closed the connection]
jallen123 has joined #ruby
enyo_ has joined #ruby
milardovich has joined #ruby
marr has quit [Ping timeout: 264 seconds]
whathappens has quit [Remote host closed the connection]
<porfa> hello guys
jenrzzz has quit [Ping timeout: 246 seconds]
<porfa> im parsing a table to a csv file, but some fields of the table need to be worked on first before being passed to the csv file, but i don’t know how to do this :)
<porfa> i mean, probably do, just need some direction…
enyo_ has quit [Ping timeout: 248 seconds]
Macaveli has joined #ruby
negatifze has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Rodya_ has joined #ruby
milardovich has quit [Ping timeout: 256 seconds]
yardenbar has joined #ruby
Rodya_ has quit [Client Quit]
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jenrzzz has joined #ruby
blackpajamas has joined #ruby
jackjackdripper has joined #ruby
oaklndr1 has joined #ruby
travv0 has left #ruby ["ERC (IRC client for Emacs 25.1.1)"]
brendan- has joined #ruby
yardenbar has quit [Ping timeout: 248 seconds]
dcunit3d has joined #ruby
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
GodFather has joined #ruby
jenrzzz has quit [Ping timeout: 248 seconds]
jhack has quit [Ping timeout: 256 seconds]
flashbang has joined #ruby
jhack has joined #ruby
iogf has joined #ruby
jshjsh has joined #ruby
teoric has joined #ruby
_mtr has joined #ruby
negatifze has joined #ruby
teoric has quit [Client Quit]
oaklndr1 has quit [Ping timeout: 248 seconds]
jhack has quit [Ping timeout: 245 seconds]
brendan- has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
JoshS has quit [Ping timeout: 272 seconds]
neanderslob has joined #ruby
Fernando-Basso has joined #ruby
muelleme has quit [Ping timeout: 245 seconds]
harfangk has quit [Quit: Textual IRC Client: www.textualapp.com]
UserJosh has joined #ruby
Toledo is now known as croberts
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
lmc_ has joined #ruby
nankyokusei has joined #ruby
gajus has joined #ruby
jshjsh has quit [Ping timeout: 272 seconds]
milardovich has joined #ruby
brendan- has joined #ruby
UserJosh has quit [Ping timeout: 272 seconds]
ruid has joined #ruby
ruid has quit [Changing host]
ruid has joined #ruby
lmc has quit [Ping timeout: 246 seconds]
nankyokusei has quit [Ping timeout: 248 seconds]
byte512 has quit [Ping timeout: 256 seconds]
yardenbar has joined #ruby
milardovich has quit [Ping timeout: 248 seconds]
SpiffTR has joined #ruby
hahuang61 has quit [Ping timeout: 260 seconds]
jhack has joined #ruby
tercenya has quit [Remote host closed the connection]
tercenya has joined #ruby
StoneCyp1er has joined #ruby
marxarelli is now known as marxarelli|afk
jhack has quit [Ping timeout: 248 seconds]
StoneCypher has quit [Ping timeout: 248 seconds]
yardenbar has quit [Ping timeout: 246 seconds]
rizenine has quit [Remote host closed the connection]
_djbkd has quit [Remote host closed the connection]
_djbkd has joined #ruby
benlieb has joined #ruby
scottj has joined #ruby
mrwn has joined #ruby
frozengeek__ has quit [Quit: frozengeek__]
dminuoso has quit [Changing host]
dminuoso has joined #ruby
marxarelli|afk is now known as marxarelli
Tristan-Speccy has joined #ruby
lmc_ has quit [Remote host closed the connection]
Tristan-Speccy is now known as Guest45641
matp_ has quit [Remote host closed the connection]
_djbkd has quit [Ping timeout: 248 seconds]
gusrub has quit [Remote host closed the connection]
matp has joined #ruby
SpiffTR has quit [Quit: Leaving.]
GodFather has quit [Ping timeout: 245 seconds]
jhack has joined #ruby
doublemalt__ has quit [Ping timeout: 248 seconds]
brendan- has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
_djbkd has joined #ruby
xall_ has quit [Ping timeout: 248 seconds]
rwb has quit [Ping timeout: 248 seconds]
GodFather has joined #ruby
jhack_ has joined #ruby
jallen123 has quit [Remote host closed the connection]
cleopatra has joined #ruby
<cleopatra> hello
jenrzzz has quit [Ping timeout: 245 seconds]
jhack has quit [Ping timeout: 256 seconds]
jhack_ is now known as jhack
Macaveli has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
bmurt has joined #ruby
riceandbeans has joined #ruby
<riceandbeans> what do you guys recommend for ruby logging+
<dminuoso> riceandbeans: Logger
<dminuoso> riceandbeans: Use the plain logger interface.
<dminuoso> riceandbeans: Most loggers out there adhere to the official Logger interface so it's pluggable.
milardovich has joined #ruby
marr has joined #ruby
lmc has joined #ruby
hahuang61 has joined #ruby
Devalo has quit [Remote host closed the connection]
Dobler has joined #ruby
hightower2 has joined #ruby
elementaru has quit [Remote host closed the connection]
<riceandbeans> is it similar to log4?
hightower3 has quit [Read error: Connection reset by peer]
milardovich has quit [Ping timeout: 245 seconds]
cevett has quit [Quit: Leaving]
cevett has joined #ruby
<dminuoso> riceandbeans: How about you take a look and tell me.
cleopatra has quit [Read error: Connection reset by peer]
<riceandbeans> right
riceandbeans has left #ruby [#ruby]
jhack has quit [Ping timeout: 248 seconds]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
carterdea has joined #ruby
bmurt has joined #ruby
marxarelli is now known as marxarelli|afk
flashbang has quit [Ping timeout: 272 seconds]
Guest1001 has joined #ruby
flashbang has joined #ruby
<Guest1001> for gem server where is the web root directory is in windows ?
<thadtheman> https://gist.github.com/anonymous/da0c5ae3092f4d41ccabdecbc8610cca This keeps telling me error_no is NilClass. What is wrong?
benlieb has quit [Quit: benlieb]
gusrub has joined #ruby
<thadtheman> Sorry. Errant return. I asked this before. IO was told to use Open3.popen3, but from what I'm reading isn't Open3.capture3 better?
gheegh has joined #ruby
M-Technic has joined #ruby
tvon has quit []
nadir|mobile has quit [Quit: Connection closed for inactivity]
testuser1 has joined #ruby
negatifze has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mlehrer has quit [Ping timeout: 264 seconds]
brendan- has joined #ruby
LuckyABA has joined #ruby
braincrash has quit [Ping timeout: 246 seconds]
gheegh has quit [Ping timeout: 248 seconds]
gheegh_ has joined #ruby
jackjackdripper has quit [Quit: Leaving.]
eoion has joined #ruby
jackjackdripper has joined #ruby
dnicole has joined #ruby
oaklndr1 has joined #ruby
milardovich has joined #ruby
whathappens has joined #ruby
govg has quit [Ping timeout: 260 seconds]
govg has joined #ruby
milardovich has quit [Ping timeout: 245 seconds]
Guest1001 has quit [Quit: ChatZilla 0.9.93 [Firefox 50.1.0/20161208153507]]
ddffg has joined #ruby
jallen123 has joined #ruby
enyo_ has joined #ruby
carterdea has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
enyo_ has quit [Ping timeout: 258 seconds]
braincrash has joined #ruby
_mtr has quit [Ping timeout: 246 seconds]
adrianS_ has quit [Ping timeout: 248 seconds]
porfa has quit [Quit: porfa]
oaklndr1 has quit [Read error: Connection reset by peer]
dcunit3d has quit [Ping timeout: 256 seconds]
_djbkd has quit [Quit: My people need me...]
brendan- has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
montanonic has joined #ruby
rwb has joined #ruby
siddart has quit [Quit: WeeChat 1.4]
malconis has quit [Read error: Connection reset by peer]
negatifze has joined #ruby
nankyokusei has joined #ruby
SesMan has joined #ruby
ruid has quit [Ping timeout: 248 seconds]
lmc has quit [Remote host closed the connection]
lmc has joined #ruby
polishdub has quit [Quit: Leaving]
SesMan has quit [Client Quit]
_djbkd has joined #ruby
negatifze has quit [Client Quit]
workmad3 has joined #ruby
nankyokusei has quit [Ping timeout: 248 seconds]
flashbang has quit [Ping timeout: 256 seconds]
lmc has quit [Ping timeout: 245 seconds]
milardovich has joined #ruby
ramortegui has quit [Quit: Ex-Chat]
gheegh_ has quit [Ping timeout: 248 seconds]
milardovich has quit [Ping timeout: 246 seconds]
Devalo has joined #ruby
Devalo has quit [Ping timeout: 246 seconds]
eoion has left #ruby [#ruby]
Gasher has joined #ruby
braincrash has quit [Ping timeout: 246 seconds]
milardovich has joined #ruby
deegill has joined #ruby
deegill has quit [Client Quit]
hammwch is now known as nchambers
gloscombe has quit [Read error: Connection reset by peer]
postmodern has joined #ruby
gloscombe has joined #ruby
govg has quit [Quit: leaving]
tekeli-li has left #ruby ["Leaving"]
milardovich has quit [Ping timeout: 256 seconds]
milardovich has joined #ruby
choke has joined #ruby
_2easy has quit [Ping timeout: 256 seconds]
jallen123 has quit [Remote host closed the connection]
astrobunny has joined #ruby
jallen123 has joined #ruby
m_antis has joined #ruby
jallen123 has quit [Ping timeout: 240 seconds]
[Butch] has quit [Quit: I'm out . . .]
braincrash has joined #ruby
koldbrutality has joined #ruby
enterprisey has quit [Remote host closed the connection]
GodFather has quit [Ping timeout: 256 seconds]
anuxivm has joined #ruby
astrobunny has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 272 seconds]
workmad3 has quit [Ping timeout: 245 seconds]
Azure has joined #ruby
Devalo has joined #ruby
GodFather has joined #ruby
ResidentBiscuit has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
Fernando-Basso has quit [Quit: WeeChat 1.6]
foption has joined #ruby
zenspider has quit [Changing host]
zenspider has joined #ruby
Devalo has quit [Ping timeout: 256 seconds]
eelster has joined #ruby
<eelster> Has anyone had any problems using binding.irb in Ruby 2.4?
mikeric has quit []
mikeric has joined #ruby
hahuang61 has quit [Ping timeout: 256 seconds]
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jenrzzz has joined #ruby
OTORelic has quit [Ping timeout: 256 seconds]
<ytti> /win 20
M-Technic has quit [Quit: Changing server]
M-Technic has joined #ruby
nadir has joined #ruby
xen0fon has quit [Quit: xen0fon]
TomyLobo has quit [Ping timeout: 245 seconds]
MissionCritical has joined #ruby
choke has quit [Ping timeout: 248 seconds]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<eelster> Because, I am getting a no method #irb for binding while using ruby but it works fine in irb.
porfa has joined #ruby
saneax-_-|AFK is now known as saneax
Mon_Ouie has joined #ruby
CloCkWeRX has joined #ruby
Azure has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gloscombe has quit [Quit: gloscombe]
saslam has quit [Ping timeout: 248 seconds]
CloCkWeRX has quit [Ping timeout: 258 seconds]
a7d7p_ has quit [Quit: a7d7p_]
whathappens has quit [Remote host closed the connection]
brent__ has joined #ruby
FastJack has quit [Ping timeout: 264 seconds]
<manveru> eelster: require 'irb'
<manveru> ruby -rirb -e 'def hi; a = 1; binding; end; hi.irb'
aeontech has joined #ruby
marxarelli|afk is now known as marxarelli
marxarelli is now known as marxarelli|afk
flashbang has joined #ruby
whathappens has joined #ruby
synbit has joined #ruby
Ishido has quit [Quit: Roads? Where We're Going We Don't Need Roads.]
blackbom1 has quit [Ping timeout: 248 seconds]
marxarelli|afk has quit [Quit: Textual IRC Client: www.textualapp.com]
nedbat has left #ruby ["Textual IRC Client: www.textualapp.com"]
marxarelli has joined #ruby
chouhoul_ has joined #ruby
<synbit> hello! I am new to Ruby and I was wondering if this is the right place to ask about Ruby and AWS?
<eelster> manveru: Ah! Thank you so much. I felt like I was going mad. That's frustratingly not well documented.
<biox> hello rubyists! i'm caught up on something simple, if anyone could take a look at this code and let me know why it isn't functioning, i would appreciate it! (i'm using chef-shell in this example, but it also doesn't work in irb): https://hastebin.com/jahacuzeba.rb
<biox> i'm trying to recurse over the user list and pull items out of a hashmap based on the username
<eelster> biox: username is a string so that won't work
arthurl has quit [Ping timeout: 256 seconds]
<eelster> biox: make users = [unixbot, funacct] instead
harai has quit [Ping timeout: 245 seconds]
<biox> eelster: ahh right. so if i make users = [unixbot, funacct] will it initialize them as empty variables?
FastJack has joined #ruby
chouhoulis has quit [Ping timeout: 248 seconds]
carterdea has joined #ruby
<eelster> biox: No. If the variables are not yet defined you'll have an error. Set users to [unixbox, funacct] after creating them
<biox> eelster: ah okay, so define the hashmap first, and then put those hashmap variable-things inside of an array.
chouhoul_ has quit [Ping timeout: 272 seconds]
<eelster> biox: Yep!
<biox> okay, thank you! i knew it was something silly on my end.
<eelster> biox: No worries!
<biox> #seniordeveloper
aidalgol has joined #ruby
aidalgol is now known as Guest77670
CloCkWeRX has joined #ruby
Guest77670 is now known as aidalgol
<eelster> biox: We all have our moments. Is ruby your first language?
maloik has quit [Remote host closed the connection]
LoneHermit has joined #ruby
maloik has joined #ruby
Azure has joined #ruby
nankyokusei has joined #ruby
DLSteve has quit [Quit: All rise, the honorable DLSteve has left the channel.]
ur5us has quit [Remote host closed the connection]
ur5us has joined #ruby
<biox> eelster: it's my first real attempt - i've played with python and know a little bash, but ruby is my first 'deep dive' language.
blackbom1 has joined #ruby
<eelster> biox: Ruby was my first. I love it so dearly
nankyokusei has quit [Ping timeout: 245 seconds]
LoneHermit has quit [Ping timeout: 248 seconds]
eelster has quit [Quit: leaving]
eelster has joined #ruby