<Dala>
Thank you very much, that is an interesting idea
workmad3 has quit [Ping timeout: 244 seconds]
<jhass>
Dala: if you know some implementation details of the method you call, passing the default for the key or nil can work too
<jhass>
though it's a less resilient approach I guess
<Dala>
True, one example is, saving a mysql field as a hash. say I have 3 params in that hash, two are optional but I do not want to store it in the db as nil.
tkuchiki has quit [Ping timeout: 250 seconds]
<Dala>
when ever a param is nil, I just only want to store the ones that have non nil values
lele has quit [Ping timeout: 272 seconds]
<jhass>
yeah, it's more interesting for option hashes than data hashes, since often implementations do stuff like if opts[:do_thing]
<Dala>
Thought of something, creating a method that accepts a hash, it loops through it and removes the key of any element that has a value of nil, then returns a hash that has no nil's Rick Fernandez [7:06 PM] then I can reuse that same method when ever I come across this.
<Dala>
Thought of something, creating a method that accepts a hash, it loops through it and removes the key of any element that has a value of nil, then returns a hash that has no nil's then I can reuse that same method when ever I come across this.
<jhass>
it's quite a gotcha for a later reader of your code though
<jhass>
especially not to use it when nil is a significant value
Zionmaster has quit [Remote host closed the connection]
djbkd has quit [Remote host closed the connection]
nux443 has joined #ruby-lang
lele has joined #ruby-lang
yatish27 has quit []
bruno- has quit [Ping timeout: 265 seconds]
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
b_hoffman has quit [Quit: b_hoffman]
jo__ has quit [Quit: Connection closed for inactivity]
taylorrf has quit [Remote host closed the connection]
ghostpl_ has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
ghostpl_ has quit [Ping timeout: 252 seconds]
tunaCanBruh has quit [Ping timeout: 256 seconds]
MXfive has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
djbkd has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
djbkd has quit [Ping timeout: 255 seconds]
MXfive has joined #ruby-lang
MXfive has quit [Read error: Connection reset by peer]
MXfive has joined #ruby-lang
stardiviner has joined #ruby-lang
charliesome has joined #ruby-lang
momomomomo has quit [Quit: momomomomo]
slawrence00 has quit [Ping timeout: 240 seconds]
roamingdog has joined #ruby-lang
womble has quit [Quit: Coyote finally caught me]
djbkd has joined #ruby-lang
lytol has quit [Remote host closed the connection]
marr has quit []
Asher has quit [Quit: Leaving.]
jezzy has joined #ruby-lang
Dala has quit [Ping timeout: 246 seconds]
djbkd has quit [Remote host closed the connection]
Zionmaster has joined #ruby-lang
aadam21 has joined #ruby-lang
setanta_ has quit [Quit: Leaving]
wallerdev has quit [Quit: wallerdev]
taylorrf has joined #ruby-lang
hendranata_ has joined #ruby-lang
houhoulis has joined #ruby-lang
hendranata_ has quit [Remote host closed the connection]
taylorrf has quit [Ping timeout: 244 seconds]
hahuang61 has quit [Ping timeout: 246 seconds]
MXfive has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
wallerdev has joined #ruby-lang
<headius>
yorickpeterse: was thinking about doing some benchmarking and profiling of oga...good a good benchmarking howto for me?
MXfive has joined #ruby-lang
tkuchiki has joined #ruby-lang
womble has joined #ruby-lang
hendranata_ has joined #ruby-lang
tkuchiki has quit [Remote host closed the connection]
wallerdev has quit [Quit: wallerdev]
Sgeo has quit [Read error: Connection reset by peer]
Sgeo has joined #ruby-lang
qiffp has joined #ruby-lang
rbowlby has quit [Remote host closed the connection]
matp_ has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
shinnya has quit [Ping timeout: 245 seconds]
tkuchiki has joined #ruby-lang
matp has quit [Ping timeout: 245 seconds]
kgst has joined #ruby-lang
<kgst>
Does anyone know why a gem might install correctly, but then when I try to require it, it would say "cannot load such file -- " and the gem name?
<womble>
kgst: Because where you installed it isn't where rubygems is looking for it at runtime.
<kgst>
Do you know of a way I could change or fix this? I am running it on cloud 9, all I've done is say 'gem install signer' etc.
<womble>
No idea. Best to talk to cloud 9.
b_hoffman has joined #ruby-lang
amclain has joined #ruby-lang
nedp has joined #ruby-lang
ledestin_ has joined #ruby-lang
eval-in_ has joined #ruby-lang
<kgst>
Are Ruby gems the same as Ruby on Rails gems?
futilegames_ has joined #ruby-lang
agarie has joined #ruby-lang
cryo28 has quit [Quit: leaving]
spuk_ has joined #ruby-lang
PaulePan1er has joined #ruby-lang
ledestin has quit [Ping timeout: 250 seconds]
JaReAx has quit [Ping timeout: 250 seconds]
futilegames has quit [Ping timeout: 250 seconds]
JaReAx has joined #ruby-lang
eval-in has quit [Ping timeout: 250 seconds]
spuk has quit [Ping timeout: 250 seconds]
jhass has quit [Ping timeout: 250 seconds]
PaulePanter has quit [Ping timeout: 250 seconds]
ledestin_ is now known as ledestin
futilegames_ is now known as futilegames
jhass has joined #ruby-lang
ghostpl_ has joined #ruby-lang
mberk has quit []
JaRe_Ax has joined #ruby-lang
nedp has quit [Remote host closed the connection]
tunaCanBruh has joined #ruby-lang
nedp has joined #ruby-lang
yfeldblum has quit [Ping timeout: 256 seconds]
JaReAx has quit [Ping timeout: 250 seconds]
JaRe_Ax is now known as JaReAx
b_hoffman has quit [Quit: b_hoffman]
ghostpl_ has quit [Ping timeout: 245 seconds]
tunaCanBruh has quit [Ping timeout: 272 seconds]
JamesDH has joined #ruby-lang
yfeldblum has joined #ruby-lang
MXfive_ has joined #ruby-lang
MXfive has quit [Read error: Connection reset by peer]
jezzy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
agarie has quit [Remote host closed the connection]
taylorrf has joined #ruby-lang
ascarter has joined #ruby-lang
bruno- has joined #ruby-lang
taylorrf has quit [Ping timeout: 252 seconds]
<JamesDH>
If I wanted to inerpolate a string into a range like puts *1..10 but have the answer a1 a2 a3 how would I do that?
<weaksauce>
well codeacademynoob you aren't here but if you are out there thinking hard you might feel the answer... they are looking for one line answers
kyb3r_ has quit [Read error: Connection reset by peer]
<weaksauce>
the two returns should be one liners
SuMo_D has joined #ruby-lang
nofxx has quit [Remote host closed the connection]
slawrence00 has joined #ruby-lang
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
kyb3r_ has joined #ruby-lang
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
LMity has joined #ruby-lang
ninedragon has joined #ruby-lang
ninedragon has quit [Changing host]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has joined #ruby-lang
ninedragon has quit [Changing host]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
LMity has quit [Ping timeout: 264 seconds]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
symm- has joined #ruby-lang
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
sc00t has joined #ruby-lang
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
dellavg_ has quit [Ping timeout: 264 seconds]
Czj has joined #ruby-lang
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
Czj has left #ruby-lang [#ruby-lang]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
arooni-mobile has quit [Ping timeout: 245 seconds]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
hahuang65 has joined #ruby-lang
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
charliesome has quit [Quit: zzz]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ur5us has joined #ruby-lang
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
Missphoenix has quit [Quit: Leaving]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
nofxx has joined #ruby-lang
jo__ has quit [Quit: Connection closed for inactivity]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ur5us has quit [Ping timeout: 264 seconds]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
Asher has joined #ruby-lang
Czj has joined #ruby-lang
Czj has left #ruby-lang [#ruby-lang]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
skade has joined #ruby-lang
pwnz0r has joined #ruby-lang
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ghostpl_ has joined #ruby-lang
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
tunaCanBruh has joined #ruby-lang
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
ghostpl_ has quit [Ping timeout: 255 seconds]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
djbkd has quit [Remote host closed the connection]
ninedragon has joined #ruby-lang
ninedragon has quit [Excess Flood]
tunaCanBruh has quit [Ping timeout: 264 seconds]
ascarter has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
Musashi007 has joined #ruby-lang
Musashi007 has quit [Client Quit]
arBmind has joined #ruby-lang
slawrence00 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bruno- has joined #ruby-lang
bruno- is now known as Guest91013
Guest91013 has quit [Ping timeout: 240 seconds]
djbkd has joined #ruby-lang
allomov has joined #ruby-lang
apeiros_ has quit [Read error: Connection reset by peer]
apeiros_ has joined #ruby-lang
rbowlby has joined #ruby-lang
rbowlby has quit [Ping timeout: 256 seconds]
Mon_Ouie has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
rbowlby has joined #ruby-lang
sc00t has quit [Ping timeout: 246 seconds]
jmrepetti has joined #ruby-lang
charliesome has joined #ruby-lang
apeiros_ has quit [Remote host closed the connection]
apeiros_ has joined #ruby-lang
jmrepetti has quit [Remote host closed the connection]
pwnz0r has quit [Remote host closed the connection]
apeiros_ has quit [Ping timeout: 256 seconds]
cHarNe2 has left #ruby-lang [#ruby-lang]
arBmind1 has joined #ruby-lang
arBmind has quit [Ping timeout: 252 seconds]
Averna has quit [Quit: Leaving.]
deg has quit [Ping timeout: 245 seconds]
deg has joined #ruby-lang
fusillicode has joined #ruby-lang
w0mTea has joined #ruby-lang
JohnBat26 has joined #ruby-lang
allomov has quit [Remote host closed the connection]
ghostpl_ has joined #ruby-lang
pwnz0r has joined #ruby-lang
wallerdev has joined #ruby-lang
w0mTea has quit [Ping timeout: 252 seconds]
Mon_Ouie has quit [Ping timeout: 272 seconds]
ghostpl_ has quit [Ping timeout: 246 seconds]
arBmind1 has quit [Quit: Leaving.]
PaulePan1er is now known as PaulePanter
ta has joined #ruby-lang
fusillicode has quit [Ping timeout: 245 seconds]
ur5us has joined #ruby-lang
solars has joined #ruby-lang
allomov has joined #ruby-lang
ledestin has quit [Ping timeout: 256 seconds]
ledestin has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
crdpink has joined #ruby-lang
amclain has quit [Quit: Leaving]
cdan has joined #ruby-lang
fusillicode has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 246 seconds]
<cdan>
hello everybody
ur5us has quit [Remote host closed the connection]
djbkd has quit [Remote host closed the connection]
strixd has joined #ruby-lang
stan has joined #ruby-lang
ur5us has joined #ruby-lang
sc00t has joined #ruby-lang
Iskarlar has joined #ruby-lang
pwnz0r has quit [Remote host closed the connection]
ghostpl_ has joined #ruby-lang
pwnz0r has joined #ruby-lang
fujimura has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
hendranata_ has quit [Ping timeout: 240 seconds]
ghostpl_ has quit [Ping timeout: 264 seconds]
pwnz0r has quit [Ping timeout: 256 seconds]
AlexAltea has quit [Ping timeout: 256 seconds]
houhoulis has quit [Remote host closed the connection]
smoitra has joined #ruby-lang
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
piotrj has joined #ruby-lang
<maloik>
morning
ascarter has joined #ruby-lang
kyb3r_ has quit [Quit: Leaving]
<womble>
LIES!
marr has joined #ruby-lang
<maloik>
no, honest
piotrj has quit [Remote host closed the connection]
Voker57 has joined #ruby-lang
jmrepetti has joined #ruby-lang
jmrepett_ has joined #ruby-lang
jmrepetti has quit [Read error: Connection reset by peer]
hendranata_ has joined #ruby-lang
jmrepett_ has quit [Remote host closed the connection]
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
fujimura has quit [Remote host closed the connection]
jmrepetti has joined #ruby-lang
yfeldblum has quit [Ping timeout: 265 seconds]
w0mTea has joined #ruby-lang
mikecmpb_ has quit [Quit: i've nodded off.]
nofxx has quit [Ping timeout: 240 seconds]
w0mTea has left #ruby-lang [#ruby-lang]
mikecmpbll has joined #ruby-lang
gaoyuehua1119 has joined #ruby-lang
stardiviner has quit [Quit: Weird in coding now, or make love, only two things push me away from IRC.]
stardiviner has joined #ruby-lang
djbkd has joined #ruby-lang
stamina has joined #ruby-lang
gaoyuehua1119 has quit [Quit: ERC Version 5.3 (IRC client for Emacs)]
caseydriscoll has quit [Ping timeout: 256 seconds]
<yorickpeterse>
headius: assuming you have it cloned, run `rake fixtures` followed by `ruby benchmark/xml/.../...`
matp_ has quit [Ping timeout: 272 seconds]
<yorickpeterse>
headius: benchmarks are broken up in lexer/parser benchmarks, so it depends on what you want to look at
<yorickpeterse>
the parsers are being replaced, so their numbers would change soon-ish
Musashi007 has joined #ruby-lang
Miphix has joined #ruby-lang
benlovell has joined #ruby-lang
Musashi007 has quit [Client Quit]
rbowlby has quit [Remote host closed the connection]
caseydriscoll has joined #ruby-lang
jmrepetti has quit [Remote host closed the connection]
ghostpl_ has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
futilegames has quit [Ping timeout: 240 seconds]
tunaCanBruh has joined #ruby-lang
djbkd has quit [Remote host closed the connection]
futilegames has joined #ruby-lang
SuMo_D has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 264 seconds]
stan has quit [Read error: Connection reset by peer]
ghostpl_ has quit [Remote host closed the connection]
SuMo_D has quit [Ping timeout: 255 seconds]
red_horned_rihno has quit [Ping timeout: 245 seconds]
stan has joined #ruby-lang
aviator7 has joined #ruby-lang
cdan has quit [Ping timeout: 264 seconds]
mikecmpb_ has joined #ruby-lang
gaoyuehua225 has joined #ruby-lang
gaoyuehua225 has left #ruby-lang ["ERC Version 5.3 (IRC client for Emacs)"]
fujimura has joined #ruby-lang
mikecmpbll has quit [Ping timeout: 250 seconds]
ur5us has quit [Remote host closed the connection]
red_horned_rihno has joined #ruby-lang
bruno- has joined #ruby-lang
red_horned_rihno has quit [Max SendQ exceeded]
bruno- is now known as Guest59450
fujimura has quit [Ping timeout: 245 seconds]
red_horned_rihno has joined #ruby-lang
red_horned_rihno has quit [Max SendQ exceeded]
red_horned_rihno has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 256 seconds]
hendranata_ has quit [Ping timeout: 252 seconds]
red_horned_rihno has quit [Max SendQ exceeded]
piotrj has joined #ruby-lang
Guest59450 has quit [Ping timeout: 245 seconds]
red_horned_rihno has joined #ruby-lang
ghostpl_ has joined #ruby-lang
sc00t has quit [Ping timeout: 240 seconds]
taylorrf has joined #ruby-lang
Zionmaster has quit [Remote host closed the connection]
Zionmaster has joined #ruby-lang
Zionmaster has quit [Remote host closed the connection]
stamina has quit [Remote host closed the connection]
jgpawletko_ has quit [Read error: Connection reset by peer]
mikecmpbll has joined #ruby-lang
jgpawletko has quit [Ping timeout: 264 seconds]
centrx has quit [Remote host closed the connection]
jgpawletko has joined #ruby-lang
fusillicode has quit [Quit: Leaving.]
nathanstitt has joined #ruby-lang
fusillicode has joined #ruby-lang
b_hoffman has joined #ruby-lang
GBrawl has joined #ruby-lang
marr has joined #ruby-lang
MXfive has joined #ruby-lang
ghostpl_ has quit [Remote host closed the connection]
Zionmaster has joined #ruby-lang
centrx has joined #ruby-lang
tohsig has joined #ruby-lang
smoitra has quit [Remote host closed the connection]
ghostpl_ has joined #ruby-lang
whippythellama has joined #ruby-lang
Guest67784 has quit [Ping timeout: 256 seconds]
qiffp has joined #ruby-lang
houhoulis has quit [Remote host closed the connection]
GBrawl has quit [Quit: (null)]
shinnya has quit [Ping timeout: 246 seconds]
benlovell has quit [Quit: Lost terminal]
arBmind has quit [Read error: Connection reset by peer]
wm3|away is now known as workmad3
symm- has joined #ruby-lang
arBmind has joined #ruby-lang
jdecuirm has quit [Ping timeout: 252 seconds]
jdecuirm has joined #ruby-lang
rkowalick has joined #ruby-lang
arooni-mobile has joined #ruby-lang
havenwood has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 244 seconds]
tunaCanBruh has joined #ruby-lang
bruno-_ has joined #ruby-lang
fujimura has joined #ruby-lang
slawrence00 has joined #ruby-lang
MXfive has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
agarie has quit [Remote host closed the connection]
fujimura has quit [Remote host closed the connection]
timanema has quit [Ping timeout: 272 seconds]
JohnBat26 has quit [Ping timeout: 272 seconds]
SuMo_D has quit [Remote host closed the connection]
ghostpl_ has quit [Remote host closed the connection]
rippa has joined #ruby-lang
lele|w has joined #ruby-lang
ascarter has joined #ruby-lang
mkaesz has joined #ruby-lang
ghostpl_ has joined #ruby-lang
timanema has joined #ruby-lang
<ljarvis>
\o/
apt-get__ has quit [Quit: Quit]
tkuchiki has quit [Remote host closed the connection]
tkuchiki has joined #ruby-lang
rikkipitt has joined #ruby-lang
red_horned_rihno has quit [Ping timeout: 256 seconds]
apeiros_ has quit [Remote host closed the connection]
<centrx>
ljarvis, Would it be welcome in Mechanize to be able to change the actual user agent string rather than needing to use one of the pre-made AGENT_ALIASES (as they tend to get old)
<ljarvis>
centrx: Mechanize::Agent#user_agent=
tkuchiki has quit [Ping timeout: 272 seconds]
<ljarvis>
Mechanize::HTTP::Agent rather
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<ljarvis>
it's also on Mechanize too, do `m = Mechanize.new; m.user_agent = "something"`
<centrx>
ah!!
<ljarvis>
it's so welcome it's already there! :)
<centrx>
why didn't I see that before, is this a new feature?
<ljarvis>
it was added in 2011
<ljarvis>
there's a lot of stuff there, it's easy to miss things
<darix>
centrx: so in some worlds, 2011 is actually recent. ;)
<centrx>
the best of all possible worlds
<centrx>
ljarvis, Thank you!
<ljarvis>
pleasure
mskaesz has joined #ruby-lang
fujimura has joined #ruby-lang
mskaesz has quit [Remote host closed the connection]
taylorrf has quit [Remote host closed the connection]
mkaesz has quit [Ping timeout: 245 seconds]
arooni-mobile has joined #ruby-lang
red_horned_rihno has joined #ruby-lang
agarie has joined #ruby-lang
replay has joined #ruby-lang
wallerdev has joined #ruby-lang
|jemc| has joined #ruby-lang
Shazaum has joined #ruby-lang
piotrj_ has quit [Remote host closed the connection]
Shazaum has quit [Changing host]
Shazaum has joined #ruby-lang
jmrepetti has joined #ruby-lang
tkuchiki has joined #ruby-lang
jmrepetti has quit [Remote host closed the connection]
rkowalick has quit [Ping timeout: 264 seconds]
<yorickpeterse>
Right, almost end of the day, time to commit lord knows what
<yorickpeterse>
El Big Refactor
<maloik>
oh just deploy it already
<maloik>
:D
<maloik>
Y U NO AGILE
AlxAltea has joined #ruby-lang
<yorickpeterse>
because my sprint doesn't allow me to
taylorrf has joined #ruby-lang
<yorickpeterse>
see, I didn't plan a deploy, nor did we do any planning poker
tkuchiki has quit [Ping timeout: 256 seconds]
<yorickpeterse>
therefor I have to wait 3 weeks before I am allowed to continue
<yorickpeterse>
(this is a joke btw)
<maloik>
oh that makes perfect sense
<yorickpeterse>
(in case that wasn't obvious)
<maloik>
(I know)
hhatch has joined #ruby-lang
AlexAltea has quit [Ping timeout: 245 seconds]
apeiros_ has joined #ruby-lang
futilegames has quit [Quit: futilegames]
<yorickpeterse>
17:40: last one in the office
bruno-_ has quit [Ping timeout: 265 seconds]
<yorickpeterse>
time to get out my secret stash of strong alcohol
<tunaCanBruh>
(you won't)
<yorickpeterse>
(I know)
<yorickpeterse>
Sometimes the idea of just wrecking the place is very tempting though
<yorickpeterse>
as in, I wonder what would happen (besides me getting fired)
sc00t has joined #ruby-lang
stan has quit [Ping timeout: 256 seconds]
MXfive_ has joined #ruby-lang
ascarter has joined #ruby-lang
agarie has quit [Remote host closed the connection]
bruno- has joined #ruby-lang
bruno- is now known as Guest56642
joast has quit [Quit: Leaving.]
agarie has joined #ruby-lang
ascarter has quit [Ping timeout: 256 seconds]
wallerdev has quit [Quit: wallerdev]
Guest56642 has quit [Ping timeout: 240 seconds]
<workmad3>
yorickpeterse: you'd also feel a profound sense of pleasure from the destruction and chaos around you
j4cknewt has quit []
<yorickpeterse>
Yeah, it would feel very similar to how I approach messy codebases
* yorickpeterse
loves going through codebases with a sledgehammer
djbkd has joined #ruby-lang
<yorickpeterse>
Ah well, enough hammering for the day
whippythellama has quit [Quit: whippythellama]
MXfive_ has quit [Max SendQ exceeded]
<yorickpeterse>
Time to go home and continue hammering on my own stuff
momomomomo has joined #ruby-lang
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
b_hoffman has quit [Quit: b_hoffman]
stef204 has joined #ruby-lang
MXfive has joined #ruby-lang
strixd has quit [Quit: 500]
momomomomo has quit [Ping timeout: 256 seconds]
qiffp has quit [Ping timeout: 264 seconds]
ascarter has joined #ruby-lang
taylorrf has quit [Remote host closed the connection]
ascarter has quit [Client Quit]
rkowalick has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
fusillicode has quit [Ping timeout: 264 seconds]
LMity has joined #ruby-lang
apeiros_ has quit [Remote host closed the connection]
rikkipitt has quit [Quit: Leaving...]
LMity has quit [Ping timeout: 245 seconds]
mikecmpbll has quit [Ping timeout: 250 seconds]
havenwood has joined #ruby-lang
allomov has quit [Remote host closed the connection]
ascarter has joined #ruby-lang
ghostpl_ has quit [Remote host closed the connection]
joast has joined #ruby-lang
joast has quit [Remote host closed the connection]
taylorrf has joined #ruby-lang
joast has joined #ruby-lang
joast has quit [Remote host closed the connection]
mikecmpbll has joined #ruby-lang
Voker57 has quit [Ping timeout: 252 seconds]
tunaCanBruh has quit [Ping timeout: 250 seconds]
ckib16 has joined #ruby-lang
jo__ has joined #ruby-lang
victo has joined #ruby-lang
b_hoffman has joined #ruby-lang
joast has joined #ruby-lang
victo has quit [Quit: Page closed]
fusillicode1 has joined #ruby-lang
joast has quit [Client Quit]
arBmind has quit [Quit: Leaving.]
henrikhodne1 is now known as henrikhodne
agarie has quit [Remote host closed the connection]
wallerdev has joined #ruby-lang
djbkd has quit [Remote host closed the connection]
bruno- has joined #ruby-lang
bruno- is now known as Guest42392
allomov has joined #ruby-lang
rbowlby has joined #ruby-lang
Guest42392 has quit [Ping timeout: 246 seconds]
bruno-_ has joined #ruby-lang
agarie has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
tkuchiki has joined #ruby-lang
workmad3 is now known as wm3|away
tohsig has quit [Read error: Connection reset by peer]
MXfive has quit [Read error: Connection reset by peer]
tohsig has joined #ruby-lang
tkuchiki has quit [Ping timeout: 256 seconds]
MXfive has joined #ruby-lang
bruno-_ has quit [Read error: No route to host]
arooni-mobile has quit [Ping timeout: 252 seconds]
mkaesz has quit [Remote host closed the connection]
moogumbo_ is now known as moogumbo
mkaesz has joined #ruby-lang
<moogumbo>
Where in the docs is the "&&" method defined?
<moogumbo>
I looked on Object, TrueClass, FalseClass... no luck.
<apeiros_>
moogumbo: && is not a method
<moogumbo>
Oh, that's... unfortunate
<moogumbo>
Well, what I really want is to take an array and reduce it using the && operator... I was trying to be clever and pass it in like my_array.reduce(&"&&".to_sym) but I guess I have to write a block?
<|jemc|>
moogumbo: it's not a method because it has no conditionally evaluate the right hand
<centrx>
moogumbo, that's usually any? or all?
<|jemc|>
*it has to
<moogumbo>
|jemc|: Oh I see
<moogumbo>
centrx: Good point. Totally forgot about those for some reason.
lytol has quit [Remote host closed the connection]
<|jemc|>
moogumbo: also, FYI, if you're going for concise:
Musashi007 has quit [Quit: Musashi007]
mkaesz has quit [Ping timeout: 245 seconds]
<|jemc|>
:"&&" == "&&".to_sym
<moogumbo>
Oh, that's handy. Thanks.
rkowalick has joined #ruby-lang
allomov has quit [Read error: Connection reset by peer]
wallerdev has joined #ruby-lang
allomov has joined #ruby-lang
mberk has quit [Remote host closed the connection]
tvon has quit [Quit: leaving]
tvon has joined #ruby-lang
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tvon has quit [Client Quit]
tvon has joined #ruby-lang
tvon has quit [Client Quit]
tvon has joined #ruby-lang
mberk has joined #ruby-lang
jgpawletko has quit [Quit: jgpawletko]
piotrj has quit [Remote host closed the connection]
piotrj has joined #ruby-lang
Asher has quit [Quit: Leaving.]
riotjon__ has joined #ruby-lang
apt-get_ has joined #ruby-lang
tkuchiki has joined #ruby-lang
riotjone_ has quit [Ping timeout: 246 seconds]
piotrj has quit [Ping timeout: 252 seconds]
sarkyniin has quit [Ping timeout: 246 seconds]
tkuchiki has quit [Ping timeout: 256 seconds]
tkuchiki has joined #ruby-lang
lytol has joined #ruby-lang
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
tkuchiki has quit [Ping timeout: 256 seconds]
Guest30239 has quit [Read error: Connection reset by peer]
bruno- has joined #ruby-lang
ascarter has joined #ruby-lang
bruno- is now known as Guest38722
parenjitsu has joined #ruby-lang
jmrepetti has joined #ruby-lang
Asher has joined #ruby-lang
rkowalick has quit [Ping timeout: 246 seconds]
mberk has quit [Ping timeout: 250 seconds]
nathanst_ has joined #ruby-lang
nathanstitt has quit [Read error: Connection reset by peer]
setanta_ has quit [Quit: Leaving]
hahuang61 has quit [Ping timeout: 246 seconds]
hahuang61 has joined #ruby-lang
allomov has quit [Remote host closed the connection]
_djbkd has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 264 seconds]
workmad3 has quit [Ping timeout: 252 seconds]
mberk has joined #ruby-lang
_djbkd has quit [Remote host closed the connection]
godzillaenlacasa has quit [Quit: Computer has gone to sleep.]
_djbkd has joined #ruby-lang
_djbkd has quit [Remote host closed the connection]
ghostpl__ has quit [Remote host closed the connection]
symm- has quit [Ping timeout: 245 seconds]
replay has joined #ruby-lang
_djbkd has joined #ruby-lang
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rikkipitt has quit [Remote host closed the connection]
aadam21_ has joined #ruby-lang
centrx has quit [Remote host closed the connection]