havenwood changed the topic of #ruby to: Rules & more: https://ruby-community.com || Ruby 2.4.1, 2.3.4 & 2.2.7: 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 || Books: https://goo.gl/wpGhoQ
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mim1k has quit [Ping timeout: 252 seconds]
aduabu has quit [Ping timeout: 248 seconds]
aduabu has joined #ruby
ramfjord_ has quit [Ping timeout: 252 seconds]
ramfjord has quit [Ping timeout: 252 seconds]
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
ramfjord has joined #ruby
ramfjord_ has joined #ruby
Trynemjoel has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
aduabu has joined #ruby
cdg has joined #ruby
ramfjord_ has quit [Ping timeout: 252 seconds]
ramfjord has quit [Ping timeout: 260 seconds]
marxarelli is now known as marxarelli|afk
ramfjord has joined #ruby
ramfjord_ has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
cdg has quit [Ping timeout: 252 seconds]
slayman has quit [Quit: Leaving]
aduabu has quit [Ping timeout: 240 seconds]
ramfjord has quit [Ping timeout: 248 seconds]
ramfjord has joined #ruby
aduabu has joined #ruby
Rodya_ has joined #ruby
dviola has quit [Quit: WeeChat 1.9]
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
dviola has joined #ruby
aduabu has quit [Ping timeout: 246 seconds]
marr has quit [Ping timeout: 255 seconds]
kapil___ has quit [Quit: Connection closed for inactivity]
orbyt_ has joined #ruby
orbyt_ has quit [Client Quit]
orbyt_ has joined #ruby
KaitoDaumoto has quit [Ping timeout: 255 seconds]
orbyt_ has quit [Client Quit]
ramfjord has quit [Ping timeout: 248 seconds]
milardovich has joined #ruby
gusrub has quit [Remote host closed the connection]
ramfjord_ has quit [Ping timeout: 260 seconds]
aduabu has joined #ruby
ramfjord has joined #ruby
ramfjord_ has joined #ruby
orbyt_ has joined #ruby
milardovich has quit [Ping timeout: 252 seconds]
canteen4 has quit [Ping timeout: 240 seconds]
enterprisey has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
brent__ has joined #ruby
aduabu has joined #ruby
brent__ has quit [Ping timeout: 240 seconds]
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
scatterp has quit [Ping timeout: 240 seconds]
aduabu has joined #ruby
__Yiota has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
Trynemjoel has quit [Quit: Quitting]
Trynemjoel has joined #ruby
balazs has joined #ruby
enterprisey has joined #ruby
nobitanobi has quit [Remote host closed the connection]
bmurt has joined #ruby
nobitanobi has joined #ruby
ramfjord_ has quit [Ping timeout: 248 seconds]
ramfjord has quit [Ping timeout: 248 seconds]
Trynemjoel has quit [Ping timeout: 264 seconds]
SeepingN has quit [Quit: The system is going down for reboot NOW!]
nobitano_ has joined #ruby
Cohedrin_ has quit [Quit: Textual IRC Client: www.textualapp.com]
nobitanobi has quit [Ping timeout: 246 seconds]
Trynemjoel has joined #ruby
enterprisey has quit [Ping timeout: 240 seconds]
gizmore|2 has joined #ruby
aduabu has joined #ruby
enterprisey has joined #ruby
d^sh has quit [Ping timeout: 240 seconds]
gizmore has quit [Ping timeout: 240 seconds]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
canteen4 has quit [Ping timeout: 248 seconds]
justicefries has joined #ruby
d^sh has joined #ruby
zachk has quit [Quit: Leaving]
mjolnird has quit [Ping timeout: 255 seconds]
sylario has quit [Quit: Connection closed for inactivity]
canteen4 has joined #ruby
Trynemjoel has quit [Ping timeout: 264 seconds]
enterprisey has quit [Remote host closed the connection]
aduabu has quit [Ping timeout: 248 seconds]
aduabu has joined #ruby
phinxy has joined #ruby
canteen4 has quit [Ping timeout: 240 seconds]
canteen4 has joined #ruby
juggler has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
aduabu has joined #ruby
bronson has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
riskish has joined #ruby
__Yiota has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
Xeago has quit [Ping timeout: 255 seconds]
ResidentBiscuit has joined #ruby
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 240 seconds]
pharma_joe has quit [Quit: Textual IRC Client: www.textualapp.com]
bronson has quit [Ping timeout: 240 seconds]
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
cdg has joined #ruby
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
cdg has quit [Ping timeout: 248 seconds]
dar123 has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
riskish has quit [Quit: Computer has gone to sleep.]
enterprisey has joined #ruby
<dar123> hey guyz, i have a multiline output which is in a variable. I need to extract a line begining with a specific word
milardovich has joined #ruby
<adam12> dar123: seems simple enough.
<adam12> dar123: what have you tried so far?
<dar123> arr = result.split("\r\n")
<dar123> and then maybe search the array
<adam12> dar123: Probably get away with `find` or `detect` on it
<adam12> Which are the same methods just alias of eachother
<adam12> Are you familiar with those methods?
<dar123> yes
<adam12> So I'd switch out the split for each_line
<adam12> and then pair it with find that calls starts_with?
<adam12> start_with? rather
<dar123> but is converting to array the best option
milardovich has quit [Ping timeout: 240 seconds]
<adam12> Depends on how big it is
<adam12> each_line will return an enumerable, and I can't remember exactly but might lazy split, instead of creating a large array of lines.
<adam12> dar123: you might be able to regex it I guess? if you were looking for an alternative.
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 240 seconds]
<dar123> arr.grep(/^ desc/)
canteen4 has joined #ruby
<dar123> that works well :)
<adam12> nice :)
Rodya_ has quit [Remote host closed the connection]
aduabu has quit [Ping timeout: 248 seconds]
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 240 seconds]
RedNifre has quit [Read error: Connection reset by peer]
RedNifre has joined #ruby
canteen4 has joined #ruby
RedNifre is now known as Guest1383
gothicsouth has joined #ruby
mim1k has joined #ruby
skweek has quit [Ping timeout: 248 seconds]
aduabu has quit [Ping timeout: 240 seconds]
laphoraig92 has joined #ruby
aduabu has joined #ruby
gizmore has joined #ruby
mim1k has quit [Ping timeout: 248 seconds]
canteen4 has quit [Ping timeout: 240 seconds]
AX31_A13X has joined #ruby
gizmore|2 has quit [Ping timeout: 240 seconds]
juggler has quit [Ping timeout: 240 seconds]
AxelAlex has quit [Ping timeout: 240 seconds]
gothicsouth has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
Rodya_ has joined #ruby
runescape07rsps has quit [Ping timeout: 240 seconds]
imode has joined #ruby
ResidentBiscuit has quit []
canteen4 has joined #ruby
milardovich has joined #ruby
korzybski has quit [Quit: korzybski]
aduabu has quit [Ping timeout: 248 seconds]
skweek has joined #ruby
aduabu has joined #ruby
mjolnird has joined #ruby
mjolnird has quit [Max SendQ exceeded]
mjolnird has joined #ruby
kapil___ has joined #ruby
canteen4 has quit [Ping timeout: 240 seconds]
milardovich has quit [Ping timeout: 260 seconds]
alibby has quit [Quit: Leaving.]
mson has joined #ruby
dar123 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
canteen4 has joined #ruby
milardov_ has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
minimalism has quit [Quit: minimalism]
aduabu has joined #ruby
bronson has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
ornerymoose has joined #ruby
canteen4 has joined #ruby
gothicsouth has joined #ruby
bronson has quit [Ping timeout: 240 seconds]
ltd has quit [Remote host closed the connection]
aduabu has quit [Ping timeout: 248 seconds]
eightlimbed has joined #ruby
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
__Yiota has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
aduabu has joined #ruby
cdg has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
jamiejackson has joined #ruby
eightlimbed has quit [Remote host closed the connection]
cdg has quit [Ping timeout: 252 seconds]
aduabu has quit [Ping timeout: 248 seconds]
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 240 seconds]
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
uZiel has joined #ruby
aduabu has joined #ruby
shiranuidong has quit [Ping timeout: 240 seconds]
canteen4 has quit [Ping timeout: 248 seconds]
shiranuidong has joined #ruby
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
cadillac_ has quit [Quit: I quit]
cadillac_ has joined #ruby
robouk has quit [Quit: Konversation terminated!]
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 240 seconds]
gothicsouth has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
milardovich has joined #ruby
phinxy has quit [Quit: Leaving]
aduabu has joined #ruby
uZiel has quit [Ping timeout: 268 seconds]
milardov_ has quit [Ping timeout: 248 seconds]
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
kies has quit [Ping timeout: 252 seconds]
aduabu has quit [Ping timeout: 248 seconds]
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
oleo has quit [Ping timeout: 246 seconds]
cadillac_ has quit [Ping timeout: 240 seconds]
DrYucatan has joined #ruby
hutch34 has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
cadillac_ has joined #ruby
uZiel has joined #ruby
bronson has joined #ruby
jamiejackson has quit [Ping timeout: 252 seconds]
gothicsouth has joined #ruby
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
bronson has quit [Ping timeout: 260 seconds]
canteen4 has joined #ruby
DrYucatan has quit [Quit: leaving]
aduabu has quit [Ping timeout: 248 seconds]
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 246 seconds]
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 246 seconds]
aduabu has joined #ruby
cagomez has joined #ruby
cagomez has quit [Remote host closed the connection]
canteen4 has quit [Ping timeout: 248 seconds]
cagomez has joined #ruby
gothicsouth has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
canteen4 has joined #ruby
claw has quit [Ping timeout: 246 seconds]
aduabu has quit [Ping timeout: 248 seconds]
nobitano_ has quit [Remote host closed the connection]
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 240 seconds]
skweek has quit [Ping timeout: 248 seconds]
Trynemjoel has joined #ruby
milardov_ has joined #ruby
claw has joined #ruby
MyMind has joined #ruby
milardovich has quit [Ping timeout: 240 seconds]
Xiti has quit [Quit: Xiti]
Xiti has joined #ruby
canteen4 has joined #ruby
mim1k has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
ornerymoose has quit [Ping timeout: 248 seconds]
aduabu has joined #ruby
tenderlo_ has joined #ruby
canteen4 has quit [Ping timeout: 240 seconds]
canteen4 has joined #ruby
mim1k has quit [Ping timeout: 248 seconds]
tenderlove has quit [Ping timeout: 248 seconds]
skweek has joined #ruby
ornerymoose has joined #ruby
cadillac_ has quit [Ping timeout: 252 seconds]
aduabu has quit [Ping timeout: 240 seconds]
uZiel has quit [Ping timeout: 268 seconds]
goyox86 has joined #ruby
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
dar123 has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
Rodya_ has quit [Remote host closed the connection]
aduabu has joined #ruby
ltd has joined #ruby
dar123 has quit [Ping timeout: 246 seconds]
canteen4 has quit [Ping timeout: 246 seconds]
harai has quit [Read error: Connection reset by peer]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cagomez has quit [Remote host closed the connection]
canteen4 has joined #ruby
uZiel has joined #ruby
aduabu has quit [Ping timeout: 246 seconds]
aduabu has joined #ruby
bronson has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 246 seconds]
aduabu has joined #ruby
bronson has quit [Ping timeout: 240 seconds]
canteen4 has quit [Ping timeout: 248 seconds]
milardovich has joined #ruby
canteen4 has joined #ruby
Rodya_ has joined #ruby
milardov_ has quit [Ping timeout: 248 seconds]
nobitanobi has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
harfangk has quit [Ping timeout: 240 seconds]
aduabu has joined #ruby
gothicsouth has joined #ruby
dviola has quit [Quit: WeeChat 1.9]
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
phinxy has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
aduabu has joined #ruby
tenderlo_ has quit [Ping timeout: 240 seconds]
Rodya_ has quit [Remote host closed the connection]
oleo has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
tenderlove has joined #ruby
canteen4 has joined #ruby
gothicsouth has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
aduabu has quit [Ping timeout: 240 seconds]
uZiel has quit [Remote host closed the connection]
uZiel has joined #ruby
phinxy has quit [Ping timeout: 240 seconds]
aduabu has joined #ruby
enterprisey has quit [Read error: Connection reset by peer]
canteen4 has quit [Ping timeout: 240 seconds]
milardovich has quit [Remote host closed the connection]
milardovich has joined #ruby
milardovich has quit [Remote host closed the connection]
mim1k has joined #ruby
cdg has joined #ruby
canteen4 has joined #ruby
mim1k has quit [Ping timeout: 252 seconds]
biox has quit [Quit: brb servers are ded]
aduabu has quit [Ping timeout: 240 seconds]
cdg has quit [Ping timeout: 240 seconds]
biox has joined #ruby
ornerymoose has quit [Quit: ornerymoose]
aduabu has joined #ruby
Bock has joined #ruby
oleo has quit [Quit: irc client terminated!]
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 246 seconds]
aduabu has joined #ruby
milardovich has joined #ruby
balazs has quit [Ping timeout: 248 seconds]
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
milardovich has quit [Ping timeout: 248 seconds]
goyox86 has quit [Quit: goyox86]
mson has quit [Quit: Connection closed for inactivity]
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
karmayogi23 has quit [Quit: karmayogi23]
canteen4 has joined #ruby
kies has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
joelroa has joined #ruby
bronson has joined #ruby
hutch34 has quit [Ping timeout: 248 seconds]
aduabu has joined #ruby
ta_ has quit [Remote host closed the connection]
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
bronson has quit [Ping timeout: 246 seconds]
aduabu has quit [Ping timeout: 240 seconds]
aduabu has joined #ruby
andrzejku has joined #ruby
<andrzejku> hey
hanmac has left #ruby [#ruby]
canteen4 has quit [Ping timeout: 246 seconds]
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 246 seconds]
Rodya_ has joined #ruby
tenderlove has quit [Ping timeout: 240 seconds]
conta has joined #ruby
tenderlove has joined #ruby
conta has quit [Client Quit]
anisha has joined #ruby
Rodya_ has quit [Ping timeout: 246 seconds]
howdoi has joined #ruby
aupadhye has joined #ruby
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 240 seconds]
canteen4 has joined #ruby
joelroa has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
aduabu has quit [Ping timeout: 248 seconds]
KeyJoo has quit [Ping timeout: 240 seconds]
laphoraig92 has quit [Ping timeout: 248 seconds]
gothicsouth has joined #ruby
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
tenderlo_ has joined #ruby
nobitanobi has quit [Remote host closed the connection]
nobitanobi has joined #ruby
tenderl__ has joined #ruby
tenderlove has quit [Ping timeout: 248 seconds]
uZiel has quit [Ping timeout: 268 seconds]
aduabu has joined #ruby
tenderlo_ has quit [Ping timeout: 240 seconds]
uZiel has joined #ruby
nobitanobi has quit [Ping timeout: 264 seconds]
milardovich has joined #ruby
ur5us has quit [Remote host closed the connection]
canteen4 has quit [Ping timeout: 240 seconds]
djbkd has joined #ruby
harfangk has joined #ruby
canteen4 has joined #ruby
scatterp has joined #ruby
milardovich has quit [Ping timeout: 240 seconds]
milardovich has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
mkali has joined #ruby
canteen4 has joined #ruby
milardovich has quit [Ping timeout: 260 seconds]
norc_ has joined #ruby
aduabu has quit [Ping timeout: 246 seconds]
norc_ has left #ruby [#ruby]
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
thmzz has joined #ruby
ged has quit [Read error: Connection reset by peer]
alex`` has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
ged has joined #ruby
aduabu has joined #ruby
Ishido has quit [Ping timeout: 240 seconds]
canteen4 has quit [Ping timeout: 246 seconds]
canteen4 has joined #ruby
rafadc has joined #ruby
aduabu has quit [Ping timeout: 246 seconds]
rafadc has quit [Client Quit]
uZiel has quit [Ping timeout: 268 seconds]
andikr has joined #ruby
jamesaxl has joined #ruby
ruby-lang923 has joined #ruby
aduabu has joined #ruby
ruby-lang923 has quit [Ping timeout: 260 seconds]
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
<andrzejku> hi
aduabu has quit [Ping timeout: 248 seconds]
rafadc has joined #ruby
uZiel has joined #ruby
Rodya_ has joined #ruby
conta has joined #ruby
Guest40 has joined #ruby
djbkd has quit [Remote host closed the connection]
djbkd has joined #ruby
Ishido has joined #ruby
Rodya_ has quit [Ping timeout: 240 seconds]
<al2o3-cr> o/
Guest40 has quit [Client Quit]
djbkd has quit [Ping timeout: 240 seconds]
high_fiver has joined #ruby
aduabu has joined #ruby
high_fiver has quit [Remote host closed the connection]
high_fiver has joined #ruby
canteen4 has quit [Ping timeout: 246 seconds]
migge has joined #ruby
canteen4 has joined #ruby
rabajaj has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
<bathtub_shark> >> puts 1 if Dir.exist? './a' && Dir.exist? './b' # Why does this not work? https://ideone.com/fwVblt
<ruby[bot]> bathtub_shark: # => /tmp/execpad-853babf34d3c/source-853babf34d3c:2: syntax error, unexpected tSTRING_BEG, expecting key ...check link for more (https://eval.in/853604)
<bathtub_shark> I'm probably missing something obvious, but a single if statement as well as wrapping it in braces does work
d5sx43 has joined #ruby
<bathtub_shark> it seems to only take one argument, so my assumption is that it's interpreting Dir.exist? a && b
Ishido has quit [Ping timeout: 240 seconds]
aduabu has joined #ruby
<andrzejku> have ruby a free support to autocomplete syntax?
<andrzejku> and linter?
<matthewd> bathtub_shark: Use parens
<al2o3-cr> bathtub_shark: yeah use parentheses there around method names
<al2o3-cr> or use `and`
canteen4 has quit [Ping timeout: 240 seconds]
<matthewd> andrzejku: There's `ruby -c` and rubocop for linting. Autocomplete is hard.
<Pateros> +1 for and
canteen4 has joined #ruby
d5sx43 has quit [Quit: Leaving...]
<matthewd> `and` is a bad habit, especially in complex expressions
aduabu has quit [Ping timeout: 240 seconds]
<al2o3-cr> true, but for that it's ok
<matthewd> I had to check it was more associative than the if
<Pateros> matthewd: that's subjective. if you know its quirks, it's nice.
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
aduabu has joined #ruby
milardovich has joined #ruby
ta_ has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
nowhere_man has quit [Ping timeout: 240 seconds]
<Pateros> i generally only force myself to use && in case of assignment, and prefer 'and' for everything else. haven't noticed any problems.
milardovich has quit [Ping timeout: 260 seconds]
aduabu has quit [Ping timeout: 240 seconds]
d5sx43 has joined #ruby
imode has quit [Ping timeout: 252 seconds]
aduabu has joined #ruby
d5sx43 has quit [Client Quit]
canteen4 has quit [Ping timeout: 246 seconds]
canteen4 has joined #ruby
sysvalve has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
bronson has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
aduabu has joined #ruby
nowhere_man has joined #ruby
GorillaApe is now known as Terens
canteen4 has quit [Ping timeout: 248 seconds]
biberu has joined #ruby
<al2o3-cr> so people prefer if/unless against and/or for control flow?
ikbenhet has joined #ruby
high_fiver has quit [Ping timeout: 252 seconds]
bronson has quit [Ping timeout: 248 seconds]
mark_66 has joined #ruby
chussenot has joined #ruby
chussenot has quit [Client Quit]
<al2o3-cr> i just use what i feel happy with :P
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
Rodya_ has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
guille-moe has joined #ruby
aduabu has joined #ruby
uZiel has quit [Ping timeout: 268 seconds]
canteen4 has quit [Ping timeout: 248 seconds]
<Pateros> i prefer how 'and' reads, so i give it preference when it doesn't make the syntax ugly, like here: foo = (bar and bar.baz), but: bar and bar.baz ? 1 : 0 i prefer. anyway yeah, any of them is fine, i just don't agree 'and' is a bad habit if you invest time to learn when it can introduce subtle bugs.
aufi has joined #ruby
uZiel has joined #ruby
harai has joined #ruby
Rodya_ has quit [Ping timeout: 240 seconds]
migge has quit [Quit: migge]
canteen4 has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
milardovich has joined #ruby
aduabu has joined #ruby
ChoiKyuSang has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
<dminuoso> al2o3-cr: I prefer neither actually.
psychicist__ has quit [Ping timeout: 248 seconds]
raynold has quit [Quit: Connection closed for inactivity]
milardovich has quit [Ping timeout: 240 seconds]
tvw has joined #ruby
frozengeek_ has joined #ruby
canteen4 has joined #ruby
<al2o3-cr> Pateros: i wouldn't use and with assignment
<al2o3-cr> dminuoso: ugh?
fabio_ros has joined #ruby
mikecmpbll has joined #ruby
fabio_ros has quit [Client Quit]
frozengeek_ has quit [Client Quit]
frozengeek_ has joined #ruby
fabio_ros has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
frozengeek_ is now known as frozengeek
<dminuoso> al2o3-cr: pattern matching for the win!
frozengeek has quit [Read error: Connection reset by peer]
Burgestrand has joined #ruby
<al2o3-cr> like how Elixir does it?
<dminuoso> al2o3-cr: Yeah.
<al2o3-cr> yeah, i've been learning elixir for a few weeks now and think it's great :)
<dminuoso> al2o3-cr: Been learning Haskell for a few weeks :)
<dminuoso> Elixir I haven't quite found to like yet
<al2o3-cr> yeah, haskell is another i dabbled at
milardovich has joined #ruby
aduabu has joined #ruby
milardovich has quit [Ping timeout: 248 seconds]
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
DTZUZO has quit [Ping timeout: 240 seconds]
aduabu has quit [Ping timeout: 248 seconds]
DTZUZO has joined #ruby
mim1k has joined #ruby
nowhere_man has quit [Remote host closed the connection]
nowhere_man has joined #ruby
aduabu has joined #ruby
djbkd has joined #ruby
cdg has joined #ruby
mim1k has quit [Ping timeout: 260 seconds]
canteen4 has quit [Ping timeout: 240 seconds]
cdg has quit [Read error: Connection reset by peer]
cdg has joined #ruby
dionysus69 has joined #ruby
Pumukel has joined #ruby
cdg has quit [Ping timeout: 255 seconds]
canteen4 has joined #ruby
KeyJoo has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
aduabu has joined #ruby
Beams has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
voloyev has joined #ruby
nowhere_man has quit [Remote host closed the connection]
voloyev has quit [Client Quit]
mikecmpbll has quit [Quit: inabit. zz.]
vondruch has quit [Quit: vondruch]
voloyev has joined #ruby
vondruch has joined #ruby
afisher is now known as merged
merged is now known as afisher
Dimik has quit [Ping timeout: 240 seconds]
canteen4 has joined #ruby
mim1k has joined #ruby
nowhere_man has joined #ruby
brunto has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
vondruch has quit [Quit: vondruch]
vondruch has joined #ruby
brunto has quit [Client Quit]
mikecmpbll has joined #ruby
Ltem has joined #ruby
milardovich has joined #ruby
tomphp has joined #ruby
fusta has joined #ruby
nofxxx has quit [Ping timeout: 240 seconds]
Rodya_ has joined #ruby
aduabu has joined #ruby
ferr has joined #ruby
milardovich has quit [Ping timeout: 248 seconds]
Rodya_ has quit [Ping timeout: 240 seconds]
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
ramfjord_ has joined #ruby
ramfjord has joined #ruby
lxsameer has joined #ruby
aduabu has quit [Ping timeout: 248 seconds]
mim1k has quit [Disconnected by services]
mim1k_ has joined #ruby
aduabu has joined #ruby
ramfjord_ has quit [Ping timeout: 240 seconds]
ramfjord has quit [Ping timeout: 240 seconds]
canteen4 has quit [Ping timeout: 248 seconds]
DTZUZO has quit [Quit: WeeChat 1.9]
Mon_Ouie has joined #ruby
cats has quit [Ping timeout: 246 seconds]
jameser has joined #ruby
djbkd has quit [Remote host closed the connection]
minimalism has joined #ruby
djbkd has joined #ruby
canteen4 has joined #ruby
arquebus has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
djbkd has quit [Ping timeout: 246 seconds]
tomphp has joined #ruby
aduabu has quit [Ping timeout: 246 seconds]
Miron has quit [Ping timeout: 255 seconds]
fabio_ros has quit [Quit: Leaving.]
aduabu has joined #ruby
tvw has quit [Ping timeout: 248 seconds]
arquebus has quit [Quit: Konversation disconnected]
cdg has joined #ruby
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
vondruch has quit [Quit: vondruch]
aduabu has quit [Ping timeout: 240 seconds]
vondruch has joined #ruby
tomphp has joined #ruby
aduabu has joined #ruby
cdg has quit [Ping timeout: 240 seconds]
canteen4 has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
tomphp has quit [Client Quit]
aduabu has quit [Ping timeout: 248 seconds]
vondruch has quit [Quit: vondruch]
vondruch has joined #ruby
aduabu has joined #ruby
tomphp has joined #ruby
canteen4 has quit [Ping timeout: 240 seconds]
fabio_ros has joined #ruby
tomphp has quit [Client Quit]
canteen4 has joined #ruby
tomphp has joined #ruby
marr has joined #ruby
tomphp has quit [Client Quit]
tomphp has joined #ruby
bronson has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
milardovich has joined #ruby
aduabu has joined #ruby
tomphp has quit [Client Quit]
canteen4 has quit [Ping timeout: 240 seconds]
bronson has quit [Ping timeout: 248 seconds]
Beams_ has joined #ruby
Beams has quit [Ping timeout: 248 seconds]
roshanavand has quit [Ping timeout: 240 seconds]
tvw has joined #ruby
milardovich has quit [Ping timeout: 264 seconds]
TomyWork has joined #ruby
tomphp has joined #ruby
pandaant has joined #ruby
uZiel has quit [Remote host closed the connection]
Rodya_ has joined #ruby
jinie has quit [Ping timeout: 240 seconds]
jinie has joined #ruby
Rodya_ has quit [Ping timeout: 246 seconds]
cdg has joined #ruby
roshanavand has joined #ruby
cdg has quit [Ping timeout: 246 seconds]
cdg has joined #ruby
Yxhuvud has quit [Read error: Connection reset by peer]
charliesome has joined #ruby
cdg has quit [Ping timeout: 246 seconds]
gix has quit [Ping timeout: 240 seconds]
sekmo has joined #ruby
uZiel has joined #ruby
gix has joined #ruby
vondruch has quit [Quit: vondruch]
vondruch has joined #ruby
pandaant has quit [Remote host closed the connection]
mkali has quit [Read error: Connection reset by peer]
mkali has joined #ruby
uZiel has quit [Remote host closed the connection]
fusta has quit [Read error: Connection reset by peer]
fusta has joined #ruby
jaruga has joined #ruby
Siyfion has joined #ruby
vondruch has quit [Quit: vondruch]
<Cork> is there a clean way to make (1..1).each_cons(2) {|a,b| p [a,b] } print "[1, nil]" in stead of nothing at all?
vondruch has joined #ruby
Mon_Ouie has quit [Ping timeout: 260 seconds]
alibby has joined #ruby
milardovich has joined #ruby
fusta has quit [Ping timeout: 248 seconds]
jameser has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cdg has joined #ruby
milardovich has quit [Ping timeout: 260 seconds]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cdg has quit [Ping timeout: 255 seconds]
ShalokShalom_ has joined #ruby
graingert has quit []
graingert has joined #ruby
jamesaxl has quit [Read error: Connection reset by peer]
ShalokShalom has quit [Ping timeout: 240 seconds]
jamesaxl has joined #ruby
tomphp has joined #ruby
anisha_ has joined #ruby
jamesaxl has quit [Read error: Connection reset by peer]
uZiel has joined #ruby
jamesaxl has joined #ruby
anisha has quit [Ping timeout: 248 seconds]
jamesaxl has quit [Read error: Connection reset by peer]
milardovich has joined #ruby
jamesaxl has joined #ruby
migge has joined #ruby
migge has quit [Client Quit]
jamesaxl has quit [Read error: Connection reset by peer]
harfangk has quit [Ping timeout: 248 seconds]
milardovich has quit [Ping timeout: 252 seconds]
bruno- has joined #ruby
jamesaxl has joined #ruby
ShalokShalom_ is now known as ShalokShalom
Rodya_ has joined #ruby
zacts has quit [Ping timeout: 264 seconds]
mniip has quit [Ping timeout: 600 seconds]
jamesaxl has quit [Read error: Connection reset by peer]
jamesaxl has joined #ruby
jamesaxl has quit [Read error: Connection reset by peer]
ramfjord has joined #ruby
ramfjord_ has joined #ruby
jamesaxl has joined #ruby
Rodya_ has quit [Ping timeout: 246 seconds]
Ltem has quit [Quit: Leaving]
ramfjord has quit [Ping timeout: 240 seconds]
ramfjord_ has quit [Ping timeout: 248 seconds]
fusta has joined #ruby
futilegames has joined #ruby
shakahl has joined #ruby
shiranuidong has quit [Remote host closed the connection]
jamesaxl has quit [Read error: Connection reset by peer]
harai has quit [Ping timeout: 252 seconds]
jamesaxl has joined #ruby
jamesaxl has quit [Read error: Connection reset by peer]
bruno- has quit [Quit: Lost terminal]
jamesaxl has joined #ruby
zacts has joined #ruby
bruno- has joined #ruby
milardovich has joined #ruby
Terens has quit [Ping timeout: 246 seconds]
apparition47 has joined #ruby
balo has quit [Quit: leaving]
milardovich has quit [Ping timeout: 255 seconds]
fabio_ros has quit [Quit: Leaving.]
hinbody_ has joined #ruby
hinbody has quit [Disconnected by services]
hinbody_ has quit [Client Quit]
hinbody has joined #ruby
mim1k_ is now known as mim1k
ChoiKyuSang has quit [Quit: Going offline, see ya! (www.adiirc.com)]
Tempesta has quit [Quit: See ya!]
migge has joined #ruby
bkxd has joined #ruby
fusta has quit [Quit: AndroIRC - Android IRC Client ( http://www.androirc.com )]
bkxd_ has quit [Ping timeout: 248 seconds]
milardovich has joined #ruby
ramfjord has joined #ruby
ramfjord_ has joined #ruby
gregf_ has quit [Ping timeout: 260 seconds]
user____2 has joined #ruby
Tempesta has joined #ruby
user____2 has left #ruby [#ruby]
bkxd_ has joined #ruby
voloyev has quit [Quit: Leaving]
voloyev_ has joined #ruby
bkxd has quit [Ping timeout: 240 seconds]
Tempesta has quit [Client Quit]
Tempesta has joined #ruby
milardovich has quit [Ping timeout: 240 seconds]
ramfjord_ has quit [Ping timeout: 240 seconds]
ramfjord has quit [Ping timeout: 240 seconds]
rgr has joined #ruby
frozengeek has joined #ruby
bronson has joined #ruby
rgr has quit [Client Quit]
hutch34 has joined #ruby
kriskropd has quit [Quit: WeeChat 1.9]
kriskropd has joined #ruby
kriskropd has joined #ruby
kriskropd has quit [Changing host]
bronson has quit [Ping timeout: 240 seconds]
gregf_ has joined #ruby
jamesaxl has quit [Read error: Connection reset by peer]
hutch34 has quit [Ping timeout: 252 seconds]
jamesaxl has joined #ruby
ramfjord has joined #ruby
hutch34 has joined #ruby
jamesaxl has quit [Read error: Connection reset by peer]
jamesaxl has joined #ruby
brent__ has joined #ruby
ldnunes has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
jamesaxl has quit [Read error: Connection reset by peer]
jamesaxl has joined #ruby
Rodya_ has joined #ruby
Azure has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
brent__ has quit [Ping timeout: 252 seconds]
jottr has joined #ruby
Rodya_ has quit [Ping timeout: 246 seconds]
jottr_ has joined #ruby
clouts has joined #ruby
c__ has quit [Remote host closed the connection]
jottr has quit [Ping timeout: 260 seconds]
cloutz has quit [Ping timeout: 260 seconds]
ornerymoose has joined #ruby
ornerymoose has quit [Client Quit]
milardovich has joined #ruby
migge has quit [Quit: migge]
milardovich has quit [Ping timeout: 240 seconds]
matti has quit [Quit: Reconnecting]
matti has joined #ruby
matti has joined #ruby
matti has quit [Changing host]
Ishido has joined #ruby
jottr_ has quit [Ping timeout: 246 seconds]
TvL2386 has quit [Ping timeout: 240 seconds]
laphoraig92 has joined #ruby
milardovich has joined #ruby
samosa has joined #ruby
milardovich has quit [Ping timeout: 252 seconds]
karmayogi23 has joined #ruby
karmayogi23 is now known as Guest52811
Guest52811 has quit [Client Quit]
samosa has left #ruby [#ruby]
uZiel has quit [Ping timeout: 268 seconds]
uZiel has joined #ruby
def_jam has joined #ruby
eblip has quit [Ping timeout: 255 seconds]
ramfjord has joined #ruby
ramfjord_ has joined #ruby
eb0t has quit [Ping timeout: 248 seconds]
def_jam is now known as eb0t
eblip has joined #ruby
balazs has joined #ruby
ramfjord_ has quit [Ping timeout: 240 seconds]
ramfjord has quit [Ping timeout: 240 seconds]
ornerymoose has joined #ruby
def_jam has joined #ruby
eb0t_ has joined #ruby
<dminuoso> Cork: you could work with take(2)
ornerymoose_ has joined #ruby
eb0t has quit [Ping timeout: 240 seconds]
ornerymoose has quit [Ping timeout: 260 seconds]
ornerymoose_ is now known as ornerymoose
eblip has quit [Ping timeout: 260 seconds]
<Cork> dminuoso: and so a while loop around it you mean?
<dminuoso> Cork: Perhaps yeah
<dminuoso> Although mm, that's a better fit for each_slice
m27frogy has quit [Ping timeout: 248 seconds]
<Cork> but then it skips the next element in the loop
<dminuoso> Cork: let me show you
milardovich has joined #ruby
Rodya_ has joined #ruby
rgr has joined #ruby
m27frogy has joined #ruby
fabio_ros has joined #ruby
ramfjord has joined #ruby
ramfjord_ has joined #ruby
anisha_ has quit [Quit: This computer has gone to sleep]
milardovich has quit [Ping timeout: 240 seconds]
Rodya_ has quit [Ping timeout: 246 seconds]
mson has joined #ruby
ramfjord has quit [Ping timeout: 255 seconds]
ramfjord_ has quit [Ping timeout: 252 seconds]
rgr has quit [Quit: rgr]
hanmac has joined #ruby
govg has quit [Ping timeout: 248 seconds]
rabajaj has quit [Quit: Leaving]
<dminuoso> Cork: https://eval.in/853749
t-recx has joined #ruby
govg has joined #ruby
<dminuoso> actually that break condition is silly, should just test for x2.nil
<dminuoso> (So it works better in a lazy setting with large things)
* Cork nods
<Cork> dminuoso: thx
<dminuoso> Cork: and refactored for less sillyness: https://eval.in/853755
<Cork> nice thx
oleo has joined #ruby
mostlybadfly has quit [Quit: Connection closed for inactivity]
m27frogy has quit [Ping timeout: 260 seconds]
_sfiguser has joined #ruby
Mon_Ouie has joined #ruby
m27frogy has joined #ruby
mkali has quit [Quit: mkali]
AX31_A13X has quit [Quit: AX31_A13X]
uZiel has quit [Quit: leaving]
uZiel has joined #ruby
ta_ has quit [Remote host closed the connection]
uZiel has quit [Ping timeout: 268 seconds]
Rodya_ has joined #ruby
jordanm has joined #ruby
grymmjack has joined #ruby
grymmjack has quit [Client Quit]
bkxd_ has quit [Ping timeout: 255 seconds]
TvL2386 has joined #ruby
bronson has joined #ruby
uZiel has joined #ruby
jottr_ has joined #ruby
__Yiota has joined #ruby
rafadc has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bronson has quit [Ping timeout: 240 seconds]
phaul has joined #ruby
jottr_ has quit [Ping timeout: 240 seconds]
howdoi has quit [Quit: Connection closed for inactivity]
gregf_ has quit [Ping timeout: 260 seconds]
ledestin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Mon_Ouie has quit [Ping timeout: 248 seconds]
aupadhye has quit [Ping timeout: 248 seconds]
Rodya_ has quit [Remote host closed the connection]
TvL2386_ has joined #ruby
TvL2386 has quit [Ping timeout: 248 seconds]
balo has joined #ruby
ferr has quit [Quit: WeeChat 1.9]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
uZiel has quit [Ping timeout: 268 seconds]
milardovich has joined #ruby
ams__ has joined #ruby
milardovich has quit [Ping timeout: 240 seconds]
Rodya_ has joined #ruby
futilegames has left #ruby [#ruby]
andrzejku has quit [Quit: Leaving]
anisha has joined #ruby
harfangk has joined #ruby
Puffball has quit [Remote host closed the connection]
cdg has joined #ruby
Puffball has joined #ruby
bruno- has quit [Ping timeout: 248 seconds]
c__ has joined #ruby
canteen4 has joined #ruby
Rodya_ has quit [Remote host closed the connection]
aduabu has quit [Ping timeout: 240 seconds]
pi4 has joined #ruby
Rapture has joined #ruby
ur5us has joined #ruby
uZiel has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
Guest1383 has quit [Ping timeout: 240 seconds]
balo has quit [Quit: leaving]
ur5us has quit [Ping timeout: 240 seconds]
balo has joined #ruby
canteen4 has quit [Remote host closed the connection]
ResidentBiscuit has joined #ruby
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
LBRapid has quit [Remote host closed the connection]
KeyJoo has quit [Remote host closed the connection]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
bruno- has joined #ruby
LBRapid has joined #ruby
canteen4 has quit [Remote host closed the connection]
milardovich has joined #ruby
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
FrostCandy has joined #ruby
milardovich has quit [Ping timeout: 240 seconds]
charliesome has joined #ruby
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
theunraveler has joined #ruby
canteen4 has joined #ruby
Pumukel has quit [Remote host closed the connection]
Pumukel has joined #ruby
LBRapid has quit [Remote host closed the connection]
jottr_ has joined #ruby
canteen4 has quit [Remote host closed the connection]
Rodya_ has joined #ruby
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
Guest80353 has quit [Read error: Connection reset by peer]
Pumukel has quit [Ping timeout: 255 seconds]
jottr_ has quit [Ping timeout: 246 seconds]
canteen4 has joined #ruby
stan has joined #ruby
milardovich has joined #ruby
canteen4 has quit [Remote host closed the connection]
bkxd has joined #ruby
drcode has quit [Ping timeout: 248 seconds]
milardovich has quit [Ping timeout: 248 seconds]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
bkxd has quit [Ping timeout: 260 seconds]
canteen4 has joined #ruby
orbyt_ has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
LBRapid has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
ikbenhet has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
LBRapid has quit [Remote host closed the connection]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
LBRapid has joined #ruby
milardovich has joined #ruby
rafadc has joined #ruby
pi___ has joined #ruby
canteen4 has quit [Remote host closed the connection]
Rodya_ has quit [Remote host closed the connection]
cdg has quit [Remote host closed the connection]
canteen4 has joined #ruby
pi4 has quit [Ping timeout: 248 seconds]
m27frogy has quit [Ping timeout: 248 seconds]
milardovich has quit [Ping timeout: 252 seconds]
ozcanesen has joined #ruby
pi4 has joined #ruby
tlaxkit has joined #ruby
npgm has joined #ruby
selim_ has quit [Ping timeout: 240 seconds]
m27frogy has joined #ruby
FastJack_ has joined #ruby
yehowyada has joined #ruby
FastJack has quit [Read error: Connection reset by peer]
samlisl_ has quit [Ping timeout: 240 seconds]
pi___ has quit [Ping timeout: 240 seconds]
selim has joined #ruby
conta has quit [Remote host closed the connection]
bmurt has joined #ruby
Rodya_ has joined #ruby
jottr_ has joined #ruby
ivanskie has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
polishdub has joined #ruby
ozcanesen has quit [Quit: ozcanesen]
Ishido has quit [Remote host closed the connection]
__Yiota has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Ishido has joined #ruby
Burgestrand has quit [Quit: Closing time!]
jottr_ has quit [Ping timeout: 240 seconds]
canteen4 has quit [Remote host closed the connection]
_main_ has joined #ruby
canteen4 has joined #ruby
_main_ has quit [Read error: Connection reset by peer]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
__main__ has quit [Ping timeout: 240 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
_main_ has joined #ruby
frozengeek has quit [Quit: frozengeek]
frozengeek has joined #ruby
milardovich has joined #ruby
bronson has joined #ruby
_main_ is now known as __main__
aufi has quit [Quit: Leaving]
nobitanobi has joined #ruby
brent__ has joined #ruby
milardovich has quit [Remote host closed the connection]
bronson has quit [Ping timeout: 252 seconds]
milardovich has joined #ruby
Yxhuvud has joined #ruby
jackjackdripper has joined #ruby
canteen4 has quit [Remote host closed the connection]
dionysus69 has quit [Ping timeout: 240 seconds]
canteen4 has joined #ruby
raynold has joined #ruby
runescape07rsps has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
TomyWork has quit [Remote host closed the connection]
mark_66 has quit [Remote host closed the connection]
kriskropd has quit [Quit: WeeChat 1.9]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kriskropd has joined #ruby
kriskropd has quit [Client Quit]
kriskropd has joined #ruby
catbusters has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 246 seconds]
canteen4 has quit [Remote host closed the connection]
tvw has quit [Remote host closed the connection]
canteen4 has joined #ruby
kriskropd has quit [Client Quit]
kriskropd has joined #ruby
chromis has left #ruby [#ruby]
tlaxkit has quit [Quit: Saliendo...]
yokel has quit [Remote host closed the connection]
houhoulis has joined #ruby
Siyfion has quit [Quit: Textual IRC Client: www.textualapp.com]
milardov_ has joined #ruby
canteen4 has quit [Remote host closed the connection]
yokel has joined #ruby
canteen4 has joined #ruby
milardovich has quit [Ping timeout: 240 seconds]
mikecmpbll has quit [Quit: inabit. zz.]
ozcanesen has joined #ruby
canteen4 has quit [Remote host closed the connection]
DTZUZO has joined #ruby
canteen4 has joined #ruby
FastJack_ has quit [Read error: Connection reset by peer]
voloyev_ has quit [Quit: WeeChat 1.4]
FastJack has joined #ruby
pi___ has joined #ruby
andikr has quit [Remote host closed the connection]
TomyLobo has joined #ruby
nopolitica has quit [Ping timeout: 248 seconds]
pi4 has quit [Ping timeout: 240 seconds]
canteen4 has quit [Remote host closed the connection]
gusrub has joined #ruby
canteen4 has joined #ruby
frozengeek has quit [Ping timeout: 252 seconds]
Beams_ has quit [Quit: .]
eckhardt has joined #ruby
gusrub_ has joined #ruby
gusrub has quit [Ping timeout: 240 seconds]
Mon_Ouie has joined #ruby
orbyt_ has joined #ruby
canteen4 has quit [Remote host closed the connection]
sysvalve has quit [Quit: Leaving]
Miron has joined #ruby
canteen4 has joined #ruby
conta1 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
phaul has quit [Ping timeout: 260 seconds]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
alibby has quit [Ping timeout: 248 seconds]
howdoi has joined #ruby
bkxd has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
brent__ has quit [Remote host closed the connection]
rafadc has quit [Ping timeout: 264 seconds]
dionysus69 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
migge has joined #ruby
pi___ has quit [Read error: Connection reset by peer]
bkxd has quit [Ping timeout: 240 seconds]
pi___ has joined #ruby
lxsameer has quit [Ping timeout: 240 seconds]
migge has quit [Client Quit]
eckhardt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Pateros is now known as RedKingCrab
bigkevmcd has quit [Quit: Outta here...]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
ocn has joined #ruby
__Yiota has joined #ruby
ocn has left #ruby [#ruby]
cdg has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
Rodya_ has quit [Remote host closed the connection]
tomphp has joined #ruby
dionysus69 has quit [Ping timeout: 255 seconds]
milardovich has joined #ruby
dionysus69 has joined #ruby
cdg has quit [Ping timeout: 248 seconds]
bruno-_ has joined #ruby
eckhardt has joined #ruby
milardov_ has quit [Ping timeout: 240 seconds]
anisha has quit [Quit: This computer has gone to sleep]
bruno- has quit [Ping timeout: 248 seconds]
nrdb has quit [Ping timeout: 248 seconds]
hutch34 has quit [Ping timeout: 248 seconds]
Mon_Ouie has quit [Quit: WeeChat 1.9]
milardovich has quit [Remote host closed the connection]
brent__ has joined #ruby
brent__ has quit [Remote host closed the connection]
brent__ has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
charliesome has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
brendan- has joined #ruby
jackjackdripper has quit [Quit: Leaving.]
fabio_ros has quit [Quit: Leaving.]
brendan- has quit [Client Quit]
canteen4 has quit [Remote host closed the connection]
brendan- has joined #ruby
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
cdg_ has joined #ruby
frozengeek has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
brent__ has quit []
brent__ has joined #ruby
sekmo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gusrub_ has quit [Remote host closed the connection]
Ltem has joined #ruby
quobo has joined #ruby
hutch34 has joined #ruby
phaul has joined #ruby
brent__ has quit [Ping timeout: 240 seconds]
tomphp has quit [Read error: Connection reset by peer]
runescape07rsps has quit [Quit: Leaving]
AndBobsYourUncle has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
ta_ has joined #ruby
canteen4 has quit [Remote host closed the connection]
nowhere_man has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
nowhere_man has joined #ruby
canteen4 has joined #ruby
sekmo has joined #ruby
canteen4 has quit [Remote host closed the connection]
sekmo has quit [Read error: Connection reset by peer]
canteen4 has joined #ruby
nobitanobi has quit [Remote host closed the connection]
bkxd has joined #ruby
nobitanobi has joined #ruby
nobitano_ has joined #ruby
apparition47 has quit [Quit: Bye]
canteen4 has quit [Remote host closed the connection]
baroquebobcat has quit [Quit: baroquebobcat]
canteen4 has joined #ruby
nobitanobi has quit [Ping timeout: 246 seconds]
bkxd has quit [Ping timeout: 240 seconds]
hutch34 has quit [Ping timeout: 246 seconds]
canteen4 has quit [Remote host closed the connection]
zacts has quit [Ping timeout: 252 seconds]
funkytwig has joined #ruby
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
bronson has joined #ruby
canteen4 has joined #ruby
jaruga has quit [Quit: jaruga]
zacts has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
bronson has quit [Ping timeout: 240 seconds]
<funkytwig> Years ago I learned ruby from a cartoon book, seem to remember cats and chunky bacon. Think this is it. http://www.rubyinside.com/media/poignant-guide.pdf. Even thought I was a veterinarian at the time I really liked it. Wondering it is still a good think to start a friend with who wants to learn ruby?
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
jottr_ has joined #ruby
gusrub has joined #ruby
cadillac_ has joined #ruby
claudiuinberlin has joined #ruby
Rodya_ has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
robotmay_ has quit [Remote host closed the connection]
canteen4 has joined #ruby
Rodya_ has quit [Ping timeout: 240 seconds]
tomphp has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
tomphp has quit [Read error: No route to host]
eckhardt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mostlybadfly has joined #ruby
eckhardt has joined #ruby
vondruch has quit [Quit: vondruch]
vondruch has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
brent__ has joined #ruby
orbyt_ has joined #ruby
opekktar has joined #ruby
canteen4 has joined #ruby
roshanavand has quit [Ping timeout: 252 seconds]
imode has joined #ruby
vondruch has quit [Quit: vondruch]
vondruch has joined #ruby
canteen4 has quit [Remote host closed the connection]
tomphp has joined #ruby
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
baroquebobcat has joined #ruby
canteen4 has joined #ruby
houhoulis has quit [Remote host closed the connection]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
tomphp has quit [Read error: Connection reset by peer]
canteen4 has joined #ruby
centrx has joined #ruby
centrx has joined #ruby
centrx has quit [Changing host]
baroquebobcat has quit [Quit: baroquebobcat]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
catbusters has quit [Quit: Connection closed for inactivity]
harfangk has quit [Ping timeout: 252 seconds]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
chromis has joined #ruby
mim1k has quit [Ping timeout: 240 seconds]
FrostCandy has quit []
ramfjord has joined #ruby
ramfjord_ has joined #ruby
jnollette has quit [Quit: All your IRC are belong to ZNC]
jnollette has joined #ruby
ta_ has quit [Remote host closed the connection]
clayreed has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
Rodya_ has joined #ruby
lxsameer has joined #ruby
baroquebobcat has joined #ruby
vondruch has quit [Quit: vondruch]
vondruch has joined #ruby
MrBusiness3 has joined #ruby
modin has quit [Ping timeout: 246 seconds]
uZiel has quit [Remote host closed the connection]
MrBismuth has quit [Ping timeout: 240 seconds]
Bock has quit [Ping timeout: 252 seconds]
vondruch has quit [Quit: vondruch]
vondruch has joined #ruby
kapil___ has quit [Quit: Connection closed for inactivity]
uZiel has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
scatterp has quit []
canteen4 has joined #ruby
mniip has joined #ruby
balazs has quit [Ping timeout: 260 seconds]
imode has quit [Ping timeout: 264 seconds]
xelkarin has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
jackjackdripper has joined #ruby
cre8 has joined #ruby
canteen4 has quit [Remote host closed the connection]
modin has joined #ruby
canteen4 has joined #ruby
phaul has quit [Ping timeout: 248 seconds]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
phaul has joined #ruby
clayreed has quit []
jamesaxl has quit [Quit: WeeChat 1.8]
cdg_ has quit [Remote host closed the connection]
mim1k has joined #ruby
skweek has quit [Ping timeout: 248 seconds]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
mim1k has quit [Ping timeout: 240 seconds]
yeticry_ has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nacsurte_ has joined #ruby
canteen4 has quit [Remote host closed the connection]
cats has joined #ruby
canteen4 has joined #ruby
yeticry has quit [Ping timeout: 264 seconds]
<ivanskie> poignant guide i think is quite outdated now
nacsurte has quit [Ping timeout: 240 seconds]
<ivanskie> but you could maybe point them to codeschool if they like the funky goofy experience
phaul has quit [Ping timeout: 240 seconds]
uZiel has quit [Ping timeout: 268 seconds]
<ivanskie> if they are more serious then send to codecademy or teamtreehouse. or learnenough.com/ruby-tutorial when its ready
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
svankmajer has joined #ruby
<ivanskie> funkytwig https://poignant.guide/ is still around. i don't know if its being maintaned with up-to-date ruby stuff
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
phaul has joined #ruby
<funkytwig> ivanskie, thanks, I may try contacting the anther, and will look at codeschool. I loved poignant guide.
uZiel has joined #ruby
<ivanskie> author?
<ivanskie> author is long gone
<ivanskie> why the lucky stiff has uhm gone to persue his own personal life
orbyt_ has joined #ruby
skweek has joined #ruby
AndBobsYourUncle has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kies has quit [Ping timeout: 255 seconds]
<ivanskie> yeah i came across it years ago too. and tryruby.org
jottr_ has quit [Ping timeout: 240 seconds]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
phaul has quit [Ping timeout: 248 seconds]
opekktar has quit []
_sfiguser has quit [Quit: Leaving]
opekktar has joined #ruby
quobo has quit [Quit: Connection closed for inactivity]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
baroquebobcat has quit [Quit: baroquebobcat]
conta1 has quit [Ping timeout: 260 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ta_ has joined #ruby
howdoi has quit [Quit: Connection closed for inactivity]
gusrub has quit [Remote host closed the connection]
cdg has joined #ruby
cdg has quit [Remote host closed the connection]
Dimik has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
bronson has joined #ruby
canteen4 has quit [Remote host closed the connection]
ams__ has quit [Quit: Connection closed for inactivity]
canteen4 has joined #ruby
cagomez has joined #ruby
claudiuinberlin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cdg has joined #ruby
bronson has quit [Ping timeout: 240 seconds]
oleo has quit [Read error: Connection reset by peer]
mson has quit [Quit: Connection closed for inactivity]
Rapture has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
phaul has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
baroquebobcat has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
Qommand0r has quit [Quit: WeeChat 1.9]
SCHAPiE has quit [Read error: Connection reset by peer]
gothicsouth has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
claudiuinberlin has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
SCHAPiE has joined #ruby
dviola has joined #ruby
baroquebobcat has quit [Quit: baroquebobcat]
harai has joined #ruby
mim1k has joined #ruby
guille-moe has quit [Ping timeout: 260 seconds]
baroquebobcat has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
oleo has joined #ruby
runescape07rsps has joined #ruby
svankmajer has quit [Read error: Connection reset by peer]
pi4 has joined #ruby
segy has quit [Quit: ZNC - http://znc.in]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
gusrub has joined #ruby
TomyLobo has quit [Ping timeout: 255 seconds]
pi___ has quit [Ping timeout: 248 seconds]
canteen4 has quit [Remote host closed the connection]
segy has joined #ruby
canteen4 has joined #ruby
svankmajer has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
yehowyada has quit [Quit: Textual IRC Client: www.textualapp.com]
Rapture has joined #ruby
zachk has joined #ruby
kreantos has joined #ruby
Rapture has quit [Client Quit]
svankmajer has quit [Ping timeout: 248 seconds]
svankmajer has joined #ruby
Rapture has joined #ruby
jackjackdripper has quit [Quit: Leaving.]
canteen4 has quit [Remote host closed the connection]
gusrub has quit [Remote host closed the connection]
canteen4 has joined #ruby
jinie has quit [Ping timeout: 240 seconds]
nadir has quit [Quit: Connection closed for inactivity]
jinie has joined #ruby
bougyman has quit [Ping timeout: 240 seconds]
nadir has joined #ruby
bougyman has joined #ruby
cagomez has quit [Remote host closed the connection]
cagomez has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
eckhardt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
canteen4 has joined #ruby
mikeiniowa has joined #ruby
kies has joined #ruby
ta_ has quit [Remote host closed the connection]
cagomez has quit [Remote host closed the connection]
cagomez has joined #ruby
gigetoo has quit [Ping timeout: 248 seconds]
gigetoo has joined #ruby
mkali has joined #ruby
cre8 has left #ruby ["WeeChat 1.9"]
kreantos has quit [Remote host closed the connection]
kreantos has joined #ruby
kreantos has quit [Remote host closed the connection]
cagomez has quit [Remote host closed the connection]
kreantos has joined #ruby
Xeago has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
DTZUZO has quit [Read error: Connection reset by peer]
bronson has joined #ruby
Rodya_ has quit [Remote host closed the connection]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
enterprisey has joined #ruby
orbyt_ has joined #ruby
jottr_ has joined #ruby
ta_ has joined #ruby
gothicsouth has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
Ltem has quit [Quit: Leaving]
jottr_ has quit [Ping timeout: 246 seconds]
cagomez has joined #ruby
ta_ has quit [Ping timeout: 252 seconds]
ur5us has joined #ruby
ivanskie has quit [Quit: Leaving]
jottr_ has joined #ruby
eckhardt has joined #ruby
AndBobsYourUncle has joined #ruby
Rapture has quit [Quit: Textual IRC Client: www.textualapp.com]
AndBobsY_ has joined #ruby
cagomez has quit [Ping timeout: 246 seconds]
Paraxial has quit [Remote host closed the connection]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 246 seconds]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
imperator has quit [Quit: This computer has gone to sleep]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
Dry_Lips has quit [Ping timeout: 240 seconds]
canteen4 has quit [Remote host closed the connection]
pi2 has joined #ruby
canteen4 has joined #ruby
mim1k has quit [Ping timeout: 240 seconds]
Ishido has quit [Quit: Roads? Where We're Going We Don't Need Roads.]
ta_ has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
DTZUZO has joined #ruby
pi4 has quit [Ping timeout: 240 seconds]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
alex`` has quit [Quit: WeeChat 1.9]
pi4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
pi2 has quit [Ping timeout: 255 seconds]
canteen4 has quit [Remote host closed the connection]
AndBobsY_ has quit [Quit: Textual IRC Client: www.textualapp.com]
claudiuinberlin has quit [Quit: Textual IRC Client: www.textualapp.com]
canteen4 has joined #ruby
AndBobsYourUncle has joined #ruby
DTZUZO has quit [Read error: Connection timed out]
DTZUZO has joined #ruby
pi2 has joined #ruby
Dry_Lips has joined #ruby
Dry_Lips has joined #ruby
Dry_Lips has quit [Changing host]
canteen4 has quit [Remote host closed the connection]
jordanm has quit [Remote host closed the connection]
canteen4 has joined #ruby
ldnunes has quit [Quit: Leaving]
AndBobsYourUncle has quit [Client Quit]
pi4 has quit [Ping timeout: 255 seconds]
twillkens has joined #ruby
AndBobsYourUncle has joined #ruby
AndBobsYourUncle has quit [Client Quit]
AndBobsYourUncle has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
Rodya_ has joined #ruby
theunraveler has quit []
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
jottr_ has quit [Ping timeout: 248 seconds]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
phaul has quit [Ping timeout: 255 seconds]
aduabu has joined #ruby
canteen4 has quit [Ping timeout: 240 seconds]
svankmajer has quit [Ping timeout: 240 seconds]
enterprisey has quit [Quit: Leaving]
canteen4 has joined #ruby
nobitano_ has quit [Read error: Connection reset by peer]
nobitanobi has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
lxsameer has quit [Ping timeout: 240 seconds]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
jottr_ has joined #ruby
canteen4 has joined #ruby
__Yiota has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
imode has joined #ruby
AgentVenom has quit [Quit: Textual IRC Client: www.textualapp.com]
eckhardt has quit [Quit: Textual IRC Client: www.textualapp.com]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
ResidentBiscuit has quit [Quit: outtie]
aduabu has joined #ruby
canteen4 has quit [Remote host closed the connection]
gusrub has joined #ruby
ramfjord_ has quit [Ping timeout: 248 seconds]
ramfjord has quit [Ping timeout: 248 seconds]
workmad3 has quit [Ping timeout: 240 seconds]
enterprisey has joined #ruby
aduabu has quit [Ping timeout: 240 seconds]
ramfjord has joined #ruby
canteen4 has joined #ruby
ramfjord_ has joined #ruby
nobitano_ has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
nobitano_ has quit [Client Quit]
canteen4 has joined #ruby
nobitanobi has quit [Ping timeout: 255 seconds]
ramfjord has quit [Ping timeout: 240 seconds]
ramfjord_ has quit [Ping timeout: 240 seconds]
<imode> is "require_relative" really the way to go when it comes to requiring other code in other files?
enterprisey has quit [Ping timeout: 240 seconds]
<imode> rather, when you're working on a project and you have code split across multiple files. I can't just 'require' them?
<Zarthus> if it's not in your include path, nope
ramfjord has joined #ruby
ramfjord_ has joined #ruby
<imode> k.
<Zarthus> I suppose "autoload" is a thing, but i've yet to see it be popular in ruby
brent__ has quit [Remote host closed the connection]
gothicsouth has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<imode> is it customary to have relative requires before global ones?
<imode> or vice versa.
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
shakahl has quit [Read error: Connection reset by peer]
gusrub has quit [Remote host closed the connection]
ramfjord_ has quit [Ping timeout: 260 seconds]
ramfjord has quit [Ping timeout: 260 seconds]
rafadc has joined #ruby
ramfjord has joined #ruby
ramfjord_ has joined #ruby
weaksauce has joined #ruby
biberu has quit []
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
Rodya_ has quit [Remote host closed the connection]
canteen4 has joined #ruby
enterprisey has joined #ruby
opekktar has quit []
c__ has quit [Remote host closed the connection]
ur5us has quit [Remote host closed the connection]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
Antiarc has quit [Read error: Connection reset by peer]
Antiarc has joined #ruby
gusrub has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
pi4 has joined #ruby
enterprisey has quit [Remote host closed the connection]
pi2 has quit [Ping timeout: 240 seconds]
gusrub has quit [Remote host closed the connection]
pi2 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
pi4 has quit [Ping timeout: 240 seconds]
brent__ has joined #ruby
cdg_ has joined #ruby
pi2 has quit [Read error: Connection reset by peer]
orbyt_ has quit [Read error: Connection reset by peer]
canteen4 has quit [Remote host closed the connection]
cdg has quit [Ping timeout: 252 seconds]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
cdg_ has quit [Ping timeout: 240 seconds]
Dry_Lips has quit [Ping timeout: 248 seconds]
brent__ has quit [Remote host closed the connection]
polishdub has quit [Quit: leaving]
brent__ has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
brent__ has quit [Ping timeout: 240 seconds]
huyderman has quit [Remote host closed the connection]
canteen4 has joined #ruby
Dry_Lips has joined #ruby
Dry_Lips has joined #ruby
Dry_Lips has quit [Changing host]
canteen4 has quit [Remote host closed the connection]
gothicsouth has joined #ruby
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
rafadc has quit [Quit: Bye!]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
ozcanesen has quit [Quit: ozcanesen]
xelkarin has quit [Quit: WeeChat 1.4]
_sfiguser has joined #ruby
tenderl__ has quit [Ping timeout: 240 seconds]
__Yiota has joined #ruby
canteen4 has quit [Remote host closed the connection]
centrx has quit []
gusrub has joined #ruby
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
__Yiota has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
ledestin has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
nacsurte_ has quit [Ping timeout: 240 seconds]
__Yiota has joined #ruby
tenderlove has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
orbyt_ has joined #ruby
ramfjord has quit [Ping timeout: 260 seconds]
ramfjord_ has quit [Ping timeout: 240 seconds]
__Yiota has quit [Client Quit]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
bruno-_ has quit [Ping timeout: 248 seconds]
alveric4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
gothicsouth has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
ramfjord has joined #ruby
ramfjord_ has joined #ruby
kies has quit [Ping timeout: 248 seconds]
alveric3 has quit [Ping timeout: 248 seconds]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
hutch34 has joined #ruby
ramfjord_ has quit [Ping timeout: 248 seconds]
ramfjord has quit [Ping timeout: 252 seconds]
ramfjord has joined #ruby
ramfjord_ has joined #ruby
BTRE has quit [Read error: Connection reset by peer]
bruno- has joined #ruby
RedNifre has joined #ruby
BTRE has joined #ruby
<RedNifre> Hi there. How do I flatMap a String, e.g. "hello".flatMap { |character| "_#{character}_" }
<RedNifre> or map the chars in the string
dionysus69 has quit [Ping timeout: 240 seconds]
<RedNifre> Hm, guess I need .chars and then use the array methods, huh?
ResidentBiscuit has joined #ruby
ramfjord_ has quit [Ping timeout: 240 seconds]
ramfjord has quit [Ping timeout: 260 seconds]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
cdg has joined #ruby
canteen4 has quit [Remote host closed the connection]
ramfjord has joined #ruby
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
hutch34 has quit [Ping timeout: 252 seconds]
cdg has quit [Ping timeout: 240 seconds]
jackjackdripper has joined #ruby
ramfjord has quit [Ping timeout: 248 seconds]
ramfjord has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
npgm has quit [Quit: Connection closed for inactivity]
canteen4 has joined #ruby
bronson has quit [Remote host closed the connection]
gothicsouth has joined #ruby
ramfjord has quit [Ping timeout: 252 seconds]
raynold has quit [Quit: Connection closed for inactivity]
canteen4 has quit [Remote host closed the connection]
ramfjord has joined #ruby
canteen4 has joined #ruby
cdg has joined #ruby
canteen4 has quit [Remote host closed the connection]
jdarius has joined #ruby
canteen4 has joined #ruby
jottr_ has quit [Ping timeout: 248 seconds]
baroquebobcat has quit [Quit: baroquebobcat]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
ramfjord has quit [Ping timeout: 248 seconds]
cdg has quit [Ping timeout: 240 seconds]
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
ramfjord has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
pi1 has joined #ruby
canteen4 has quit [Remote host closed the connection]
canteen4 has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
RedNifre has quit [Ping timeout: 240 seconds]
ramfjord has joined #ruby
canteen4 has quit [Remote host closed the connection]
aribas has joined #ruby
canteen4 has joined #ruby
<aribas> hi, i have a basic question
<aribas> i have a Gemfile that does not have the 'sources' line
<aribas> and so bundler complains "Your Gemfile has no gem server sources. If you need gems that are not already on your machine,"
bkxd has joined #ruby
<aribas> rightly so, i guess. but why is that many Gemfiles are missing sources in the first place?
<aribas> for context, i am trying to install some redmine plugins