jhass[m] changed the topic of #ruby to: Rules: https://ruby-community.com | Ruby 3.1.2, 3.0.4, 2.7.6: https://www.ruby-lang.org | Paste 4+ lines to: https://gist.github.com | Books: https://goo.gl/wpGhoQ
markong has quit [Ping timeout: 240 seconds]
<adam12> comeoooon: cheers
Guest9078 has joined #ruby
hightower2 has quit [Remote host closed the connection]
arg_ has quit [Quit: Connection closed for inactivity]
jl- has quit [Ping timeout: 268 seconds]
John_Ivan has quit [Remote host closed the connection]
John_Ivan has joined #ruby
John_Ivan has quit [Client Quit]
John_Ivan has joined #ruby
dviola has quit [Ping timeout: 268 seconds]
aeris has quit [Remote host closed the connection]
Aminda has quit [Remote host closed the connection]
aeris has joined #ruby
Guest9078 has quit [Quit: Client closed]
jl- has joined #ruby
jl- has quit [Ping timeout: 240 seconds]
darkstarx has quit [Remote host closed the connection]
darkstarx has joined #ruby
Sankalp has quit [Ping timeout: 268 seconds]
Sankalp has joined #ruby
Sankalp has quit [Ping timeout: 268 seconds]
Jonopoly has quit [Quit: WeeChat 3.0]
brahmana has joined #ruby
brahmana has quit [Remote host closed the connection]
Sankalp has joined #ruby
jpn has joined #ruby
jpn has quit [Ping timeout: 268 seconds]
nirvdrum has joined #ruby
Al2O3 has quit [Ping timeout: 244 seconds]
John_Ivan has quit [Read error: Connection reset by peer]
jpn has joined #ruby
shokohsc has quit [Read error: Connection reset by peer]
Ziyan has joined #ruby
jl- has joined #ruby
shokohsc has joined #ruby
jl- has quit [Ping timeout: 240 seconds]
_root has quit [Ping timeout: 264 seconds]
darkstarx has quit [Remote host closed the connection]
darkstarx has joined #ruby
darkstarx has quit [Ping timeout: 245 seconds]
nirvdrum has quit [Quit: nirvdrum]
Al2O3 has joined #ruby
<leftylink> ah. this channel's topic lost something on the move to this network didn't it
darkstardevx has joined #ruby
darkstardevx has quit [Remote host closed the connection]
darkstardevx has joined #ruby
rvalue has quit [Remote host closed the connection]
rvalue has joined #ruby
jl- has joined #ruby
jl- has quit [Ping timeout: 268 seconds]
brahmana has joined #ruby
gr33n7007h has quit [Quit: WeeChat 3.6]
gr33n7007h has joined #ruby
protektwar has joined #ruby
protektwar has quit [Changing host]
protektwar has joined #ruby
jpn has quit [Ping timeout: 252 seconds]
<brahmana> Is this channel logged somewhere?
<brahmana> I had posted a question here yesterday and there was a good discussion about it, albeit there were some open points. Was wondering if there were more responses after I disconnected.
jpn has joined #ruby
_ht has joined #ruby
Sankalp has quit [Ping timeout: 268 seconds]
Ziyan has quit [Ping timeout: 244 seconds]
jl- has joined #ruby
Sankalp has joined #ruby
Ziyan has joined #ruby
jl- has quit [Ping timeout: 268 seconds]
jpn has quit [Ping timeout: 268 seconds]
Rounin has joined #ruby
jpn has joined #ruby
jpn has quit [Ping timeout: 245 seconds]
EternalSunshine has quit [Quit: WeeChat 3.6]
Pixi__ is now known as Pixi
factor has quit [Ping timeout: 252 seconds]
factor has joined #ruby
libsys has quit [Read error: Connection reset by peer]
libsys has joined #ruby
Ziyan_ has joined #ruby
Ziyan has quit [Ping timeout: 240 seconds]
jpn has joined #ruby
dionysus69 has joined #ruby
teclator has joined #ruby
brahmana has quit [Ping timeout: 252 seconds]
dviola has joined #ruby
Ziyan has joined #ruby
Ziyan_ has quit [Ping timeout: 255 seconds]
jl- has joined #ruby
jl- has quit [Ping timeout: 240 seconds]
some14u has joined #ruby
some14u has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
brahmana has joined #ruby
brahmana has quit [Remote host closed the connection]
markong has joined #ruby
Pixi` has joined #ruby
brahmana has joined #ruby
moldorcoder7 has quit [Ping timeout: 245 seconds]
Pixi has quit [Ping timeout: 268 seconds]
jpn has quit [Ping timeout: 268 seconds]
moldorcoder7 has joined #ruby
brahmana has quit [Remote host closed the connection]
jpn has joined #ruby
jpn has quit [Ping timeout: 252 seconds]
nirvdrum has joined #ruby
jl- has joined #ruby
jpn has joined #ruby
jpn has quit [Ping timeout: 240 seconds]
Sankalp has quit [Ping timeout: 268 seconds]
Sankalp has joined #ruby
Aminda has joined #ruby
protektwar has quit [Ping timeout: 240 seconds]
nirvdrum_ has joined #ruby
nirvdrum has quit [Read error: Connection reset by peer]
gr33n7007h has quit [Quit: WeeChat 3.6]
jpn has joined #ruby
gr33n7007h has joined #ruby
dionysus69 has quit [Ping timeout: 268 seconds]
dionysus69 has joined #ruby
jl- has quit [Ping timeout: 268 seconds]
John_Ivan has joined #ruby
protektwar has joined #ruby
protektwar has joined #ruby
protektwar has quit [Changing host]
danjo007 has quit [Quit: danjo007]
arg_ has joined #ruby
danjo007 has joined #ruby
TomyWork has joined #ruby
brahmana has joined #ruby
<brahmana> @sam113101 Thank you very much for that chat log.
giorgian has joined #ruby
protektwar has quit [Ping timeout: 240 seconds]
markong has quit [Ping timeout: 240 seconds]
brahmana has quit [Remote host closed the connection]
brahmana has joined #ruby
dionysus69 has quit [Ping timeout: 252 seconds]
teclator has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
<brahmana> That's nice. Thank you @jhass
<adam12> jhass[m]: I didn't realize there was a libera fork.
<jhass[m]> Not sure the freenode one is running still even
<jhass[m]> He did it immediately
rvalue has quit [Read error: Connection reset by peer]
rvalue has joined #ruby
brahmana has quit [Remote host closed the connection]
brahmana has joined #ruby
Ziyan_ has joined #ruby
Ziyan has quit [Ping timeout: 255 seconds]
dionysus69 has joined #ruby
protektwar has joined #ruby
protektwar has joined #ruby
protektwar has quit [Changing host]
c10l has joined #ruby
<axisys> how to say true if anyone of the strings exists? easy for one string with foo == 'FOO' .. but what if I want to say true if foo value is either 'FOO' or 'BAR' ?
<adam12> Could match with a regexp, I guess. foo.match?(/FOO|BAR/)
<adam12> You'd want to add terminal matchers for that regexp.
<adam12> Alternatively, check inclusion of Array. ["FOO", "BAR"].include?(foo)
<adam12> Rails/ActiveSupport has a helper for that, in the inverse form (asking the String). I don't remember its name.
<axisys> ah.. that include will work. thank you!
John_Ivan has quit [Quit: Leaving]
arg_ has quit [Quit: Connection closed for inactivity]
dionysus69 has quit [Ping timeout: 240 seconds]
Ziyan has joined #ruby
dionysus69 has joined #ruby
Ziyan_ has quit [Ping timeout: 244 seconds]
arg_ has joined #ruby
jpn has quit [Ping timeout: 268 seconds]
brahmana has quit [Ping timeout: 252 seconds]
pgib has quit [Ping timeout: 252 seconds]
jpn has joined #ruby
protektwar has quit [Ping timeout: 240 seconds]
desnudopenguino has quit [Ping timeout: 244 seconds]
desnudopenguino has joined #ruby
dionysus70 has joined #ruby
dionysus69 has quit [Ping timeout: 240 seconds]
dionysus70 is now known as dionysus69
Ziyan has quit [Ping timeout: 244 seconds]
Ziyan has joined #ruby
jpn has quit [Ping timeout: 268 seconds]
jpn has joined #ruby
TomyWork has quit [Remote host closed the connection]
dionysus69 has quit [Quit: dionysus69]
dionysus69 has joined #ruby
jpn has quit [Ping timeout: 252 seconds]
jpn has joined #ruby
Ziyan has quit [Ping timeout: 240 seconds]
Ziyan has joined #ruby
Ziyan has quit [Quit: Textual IRC Client: www.textualapp.com]
hightower2 has joined #ruby
polishdub has quit [Remote host closed the connection]
jpn has quit [Ping timeout: 268 seconds]
rvalue has quit [Quit: ZNC - https://znc.in]
jpn has joined #ruby
rvalue has joined #ruby
jpn has quit [Ping timeout: 268 seconds]
_ht has quit [Remote host closed the connection]
jmcgnh has quit [Quit: ZNC 1.7.5 - https://znc.in]
jpn has joined #ruby
jmcgnh has joined #ruby
jpn has quit [Ping timeout: 268 seconds]
spuz has joined #ruby
John_Ivan has joined #ruby
dionysus69 has quit [Ping timeout: 252 seconds]
jpn has joined #ruby
Al2O3 has quit [Quit: I'm quitting, thanks for all the sharks.]
jpn has quit [Ping timeout: 252 seconds]
_root has joined #ruby
reset has quit [Ping timeout: 240 seconds]
jpn has joined #ruby
jpn has quit [Ping timeout: 268 seconds]
jpn has joined #ruby
jpn has quit [Ping timeout: 240 seconds]
reset has joined #ruby
jpn has joined #ruby
jpn has quit [Ping timeout: 252 seconds]
spuz has quit [Ping timeout: 252 seconds]
jpn has joined #ruby
jpn has quit [Ping timeout: 252 seconds]
<comeoooon> Would be really nice having inside ruby-faker!
jpn has joined #ruby
Starfoxxes has quit [Ping timeout: 255 seconds]
jpn has quit [Ping timeout: 252 seconds]