havenwood changed the topic of #ruby to: Rules & more: https://ruby-community.com || Ruby 2.5.0, 2.4.3, 2.3.6: https://www.ruby-lang.org || Paste >3 lines of text to: https://gist.github.com || Rails questions? Ask in: #RubyOnRails || Logs: https://irclog.whitequark.org/ruby || Books: https://goo.gl/wpGhoQ
sanscoeur has quit [Ping timeout: 252 seconds]
ericx2x has joined #ruby
ericx2x_ has joined #ruby
ecuanaso has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bkxd_ has joined #ruby
workmad3 has joined #ruby
ta_ has joined #ruby
bkxd has quit [Ping timeout: 248 seconds]
alfiemax has joined #ruby
cremes has quit [Quit: cremes]
cdg has joined #ruby
workmad3 has quit [Ping timeout: 260 seconds]
beanish has joined #ruby
ledestin has joined #ruby
alfiemax has quit [Ping timeout: 256 seconds]
Mia has quit [Read error: Connection reset by peer]
cdg has quit [Ping timeout: 240 seconds]
Mia has joined #ruby
drewmcmillan has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
zwliew has joined #ruby
Azure has joined #ruby
justicefries has joined #ruby
ericx2x has quit [Remote host closed the connection]
ericx2x_ has quit [Remote host closed the connection]
bronson has joined #ruby
cdg has joined #ruby
s3nd1v0g1us has joined #ruby
oetjenj has joined #ruby
bronson has quit [Ping timeout: 252 seconds]
cdg has quit [Ping timeout: 256 seconds]
biberu has quit []
SeepingN has quit [Quit: The system is going down for reboot NOW!]
troys_ is now known as troys
lroca has joined #ruby
nowhere_man has quit [Remote host closed the connection]
nowhere_man has joined #ruby
beanish has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bkxd has joined #ruby
Sammitch has joined #ruby
<Sammitch> hello, I'm having trouble finding a way to reduce an array of booleans to a simple OR of their contents
<Sammitch> eg: `[true, false].something{...} == true` and `[false, false].something{...} == false`
Kilobyte22 has joined #ruby
ta_ has quit [Ping timeout: 260 seconds]
bkxd_ has quit [Ping timeout: 260 seconds]
bkxd__ has joined #ruby
mikecmpbll has quit [Quit: inabit. zz.]
<havenwood> Sammitch: Are you looking for #all? and #none? or something else? Give some psudocode examples of input and desired output
justicefries has quit [Quit: Textual IRC Client: www.textualapp.com]
bkxd has quit [Ping timeout: 240 seconds]
<Sammitch> I did just give an example
Beams_ has quit [Remote host closed the connection]
<Sammitch> `[true, false].reduce('|')` seems to do the trick, but I don't like that that's the bitwise operator and `||` give an error :/
<havenwood> >> [true, false].all? { |bool| bool.to_s.size == 4 }
<ruby[bot]> havenwood: # => false (https://eval.in/931332)
<havenwood> Sammitch: I can't tell what you want from those two examples. Can you give a few more or is that the only input expected?
<havenwood> Sammitch: ah, seems like you want #any?
<havenwood> >> [true, false].any?
<ruby[bot]> havenwood: # => true (https://eval.in/931334)
<havenwood> >> [false, false].any?
ta_ has joined #ruby
<ruby[bot]> havenwood: I'm terribly sorry, I could not evaluate your code because of an error: NoMethodError:undefined method `[]' for nil:NilClass
<havenwood> # => false
<havenwood> Sammitch: is that ^ what you're looking for?
<Sammitch> the literal code I'm starting with is `http_hosts.map{|item|item.key?('ssl')}` which returns an array of booleans, and I need to reduce that to a single value representative of if there's one or more `true` values in the array
<havenwood> Sammitch: replace "map" with "any?"
<havenwood> Sammitch: Ruby's Enumerable module has #any?, #all?, #none?, #one?, etc - a bunch of handy stuff.
<havenwood> Sammitch: http_hosts.any? { |item| item.key?('ssl') }
<Sammitch> havenwood: that looks like the ticket. `http_hosts.any?{|item|item.key?('ssl')}` :D
<havenwood> Sammitch: I usually use the singular form of the plural reciever for the block argument, like: http_hosts.any? { |http_host| http_host.key?('ssl') }
<havenwood> Sammitch: I think that's a really nice convention.
PaulCape_ has quit [Remote host closed the connection]
oetjenj has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
oetjenj has joined #ruby
PaulCapestany has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
ecuanaso has joined #ruby
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
Pierreb|home has quit []
jenrzzz has quit [Ping timeout: 256 seconds]
jenrzzz has joined #ruby
daemonwrangler has quit [Quit: ZNC 1.6.5 - http://znc.in]
shinnya has quit [Ping timeout: 265 seconds]
ghormoon has quit [Remote host closed the connection]
daemonwrangler has joined #ruby
TomyLobo has quit [Ping timeout: 255 seconds]
milardovich has quit [Remote host closed the connection]
milardovich has joined #ruby
milardovich has quit [Remote host closed the connection]
eb0t2 has quit [Quit: WeeChat 1.9.1]
alfiemax has joined #ruby
eightlimbed has quit [Ping timeout: 260 seconds]
cagomez has quit [Remote host closed the connection]
jottr has quit [Ping timeout: 256 seconds]
marr has quit [Ping timeout: 250 seconds]
s3nd1v0g1us has quit [Ping timeout: 265 seconds]
amatas has quit [Quit: amatas]
cremes has joined #ruby
bronson has joined #ruby
eblip has joined #ruby
cremes has quit [Client Quit]
duderonomy has quit [Ping timeout: 260 seconds]
mjolnird has joined #ruby
<Sammitch> havenwood: thanks, btw :D
<havenwood> you're welcome!
jtdoncas has joined #ruby
nadir has quit [Quit: Connection closed for inactivity]
Azure has quit [Read error: Connection reset by peer]
ghormoon has joined #ruby
Azure has joined #ruby
bkxd has joined #ruby
r3kz has quit [Quit: Connection closed for inactivity]
bronson has quit [Ping timeout: 264 seconds]
jottr has joined #ruby
bkxd__ has quit [Ping timeout: 268 seconds]
bkxd_ has joined #ruby
jottr has quit [Ping timeout: 240 seconds]
bkxd has quit [Ping timeout: 260 seconds]
abraham has joined #ruby
abraham has quit [Client Quit]
eckhardt has joined #ruby
Guest61 has joined #ruby
kculpis has joined #ruby
cschneid_ has quit [Remote host closed the connection]
colby_ has joined #ruby
Guest61 has quit [Remote host closed the connection]
sameerynho has quit [Ping timeout: 264 seconds]
alfiemax has quit [Ping timeout: 248 seconds]
Vapez has quit [Remote host closed the connection]
mtkd has quit [Ping timeout: 252 seconds]
jottr has joined #ruby
mtkd has joined #ruby
jackjackdripper has quit [Quit: Leaving.]
cschneid_ has joined #ruby
Azure has quit [Read error: Connection reset by peer]
nwm has joined #ruby
Azure has joined #ruby
colby_ has quit []
jtdoncas has quit [Ping timeout: 240 seconds]
jottr has quit [Ping timeout: 256 seconds]
darkhanb has joined #ruby
workmad3 has joined #ruby
d^sh has quit [Ping timeout: 248 seconds]
jottr has joined #ruby
KeyJoo has quit [Ping timeout: 265 seconds]
jenrzzz_ has joined #ruby
d^sh has joined #ruby
twe4ked has quit [Read error: Connection reset by peer]
hfp_work has quit [Quit: bye]
workmad3 has quit [Ping timeout: 248 seconds]
twe4ked has joined #ruby
jenrzzz has quit [Ping timeout: 252 seconds]
jottr has quit [Ping timeout: 240 seconds]
cschneid_ has quit [Ping timeout: 260 seconds]
ta_ has quit [Ping timeout: 256 seconds]
jenrzzz_ has quit [Ping timeout: 265 seconds]
hfp_work has joined #ruby
theRealGent has joined #ruby
nwm has quit [Ping timeout: 240 seconds]
chocoelho has quit [Quit: chocoelho]
troys is now known as troys_
_whitelogger_ has joined #ruby
shortdudey123_ has joined #ruby
zwliew has quit [Quit: Connection closed for inactivity]
eightlimbed has joined #ruby
ujjain- has joined #ruby
Flonk_ has joined #ruby
theRealGent has quit [*.net *.split]
twe4ked has quit [*.net *.split]
mjolnird has quit [*.net *.split]
nofxx_ has quit [*.net *.split]
selim has quit [*.net *.split]
MrBismuth has quit [*.net *.split]
darix has quit [*.net *.split]
jrp93 has quit [*.net *.split]
PaulePanter has quit [*.net *.split]
valkyr2e has quit [*.net *.split]
teej has quit [*.net *.split]
sspreitz has quit [*.net *.split]
Flonk has quit [*.net *.split]
sammi`_ has quit [*.net *.split]
codepete has quit [*.net *.split]
marxarelli|afk has quit [*.net *.split]
nicoulaj has quit [*.net *.split]
_whitelogger has quit [*.net *.split]
coderphive has quit [*.net *.split]
cjohnson has quit [*.net *.split]
kenichi has quit [*.net *.split]
rideh has quit [*.net *.split]
x0f has quit [*.net *.split]
gil_ has quit [*.net *.split]
hurricanehrndz has quit [*.net *.split]
sparr has quit [*.net *.split]
aesthetikx has quit [*.net *.split]
skawa has quit [*.net *.split]
leah2 has quit [*.net *.split]
kapowaz has quit [*.net *.split]
yo61 has quit [*.net *.split]
mitsuhiko has quit [*.net *.split]
incomprehensibly has quit [*.net *.split]
Bosma has quit [*.net *.split]
BuildTheRobots has quit [*.net *.split]
justache has quit [*.net *.split]
avdi has quit [*.net *.split]
nOgAnOo has quit [*.net *.split]
hayden___ has quit [*.net *.split]
adambeynon has quit [*.net *.split]
shoogz has quit [*.net *.split]
tpendragon has quit [*.net *.split]
Klumben has quit [*.net *.split]
kent\n has quit [*.net *.split]
ablackack has quit [*.net *.split]
ujjain has quit [*.net *.split]
ryotarai has quit [*.net *.split]
mahlon has quit [*.net *.split]
spk has quit [*.net *.split]
tjbp has quit [*.net *.split]
jp has quit [*.net *.split]
heinrich5991 has quit [*.net *.split]
jordanm has quit [*.net *.split]
spider-mario has quit [*.net *.split]
creat has quit [*.net *.split]
shortdudey123 has quit [*.net *.split]
znz_jp has quit [*.net *.split]
endemic has quit [*.net *.split]
Antiarc has quit [*.net *.split]
FastJack has quit [*.net *.split]
spk_ is now known as spk
darix- is now known as darix
codepete_ is now known as codepete
ryotarai_ is now known as ryotarai
hayden____ is now known as hayden___
kapowaz_ is now known as kapowaz
adambeynon_ is now known as adambeynon
hurricanehrndz_ has joined #ruby
mitsuhiko_ is now known as mitsuhiko
nOgAnOo_ is now known as nOgAnOo
avdi_ is now known as avdi
yo61_ is now known as yo61
skawa_ is now known as skawa
Bosma_ is now known as Bosma
justache_ is now known as justache
BuildTheRobots_ is now known as BuildTheRobots
shoogz has joined #ruby
shortdudey123_ is now known as shortdudey123
shoogz has quit [Max SendQ exceeded]
coderphive has joined #ruby
chocoelho has joined #ruby
incomprehensibly has joined #ruby
valkyr2e_ has joined #ruby
twe4ked has joined #ruby
creat has joined #ruby
heinrich5991_ is now known as heinrich5991
nicoulaj has joined #ruby
jp| is now known as jp
mvfc has joined #ruby
endemic has joined #ruby
chocoelho has quit [Client Quit]
shoogz has joined #ruby
shoogz has quit [Max SendQ exceeded]
chocoelho has joined #ruby
mtkd has quit [Ping timeout: 260 seconds]
A124 has quit [Ping timeout: 260 seconds]
x0f_ has quit [Ping timeout: 260 seconds]
dinfuehr has quit [Ping timeout: 260 seconds]
gf3 has quit [Ping timeout: 260 seconds]
mvfc has quit [Client Quit]
shoogz has joined #ruby
d^sh has quit [Ping timeout: 240 seconds]
bronson has quit [Ping timeout: 268 seconds]
sspreitzer has quit [Ping timeout: 260 seconds]
gil_ has joined #ruby
gil_ has quit [Changing host]
gil_ has joined #ruby
sspreitz has joined #ruby
ahrs_ has joined #ruby
x0f has joined #ruby
dinfuehr has joined #ruby
d^sh has joined #ruby
ahrs has quit [Ping timeout: 260 seconds]
gf3 has joined #ruby
A124 has joined #ruby
mtkd has joined #ruby
PaulCape_ has joined #ruby
PaulCapestany has quit [Ping timeout: 248 seconds]
theRealGent has joined #ruby
sparr has joined #ruby
spider-mario has joined #ruby
mjolnird has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jenrzzz has joined #ruby
tpendragon has joined #ruby
leah2 has joined #ruby
s3nd1v0g1us has joined #ruby
teej has joined #ruby
cschneid_ has joined #ruby
bkxd has quit []
jottr has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
lroca has quit [Quit: lroca]
jottr has quit [Ping timeout: 240 seconds]
kapil___ has joined #ruby
chocoelho has quit [Quit: chocoelho]
jrafanie_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
idefine has joined #ruby
FastJack has joined #ruby
nwm has joined #ruby
ledestin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cschneid_ has quit [Remote host closed the connection]
gizmore|2 has joined #ruby
ta_ has quit [Ping timeout: 268 seconds]
gizmore has quit [Ping timeout: 248 seconds]
jnyw has joined #ruby
Puffball has quit [Ping timeout: 248 seconds]
jottr has joined #ruby
ta_ has joined #ruby
r3kz has joined #ruby
jottr has quit [Ping timeout: 265 seconds]
Klumben has joined #ruby
cremes has joined #ruby
cremes has quit [Client Quit]
cdg has joined #ruby
troys_ is now known as troys
cdg_ has joined #ruby
cdg has quit [Ping timeout: 252 seconds]
cdg_ has quit [Ping timeout: 252 seconds]
ta_ has quit [Remote host closed the connection]
ta_ has joined #ruby
bronson has joined #ruby
dddf has quit [Ping timeout: 264 seconds]
cremes has joined #ruby
daemonwrangler has quit [Quit: ZNC 1.6.5 - http://znc.in]
gizmore|2 has quit [Remote host closed the connection]
gizmore|2 has joined #ruby
bronson has quit [Ping timeout: 260 seconds]
dddf has joined #ruby
eckhardt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cremes has quit [Client Quit]
theRealGent has quit [Ping timeout: 276 seconds]
jtdoncas has joined #ruby
shinnya has joined #ruby
<mrush> if i call self from within a function, it prints main. is there a reflective way to print the name of the current method
<mrush> by function i mean method i have defined
lytol_ has quit [Remote host closed the connection]
<mrush> __method__ is what i was looking for
<mrush> thx
daemonwrangler has joined #ruby
cjohnson_ is now known as cjohnson
znz_jp has joined #ruby
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ecuanaso has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
raul782 has joined #ruby
dddf has quit [Ping timeout: 240 seconds]
dddf has joined #ruby
jottr has joined #ruby
cschneid_ has joined #ruby
ecuanaso has joined #ruby
jdawgaz has joined #ruby
workmad3 has joined #ruby
AJA4350 has quit [Quit: AJA4350]
segy has quit [Quit: ZNC - http://znc.in]
workmad3 has quit [Ping timeout: 240 seconds]
jottr has quit [Ping timeout: 248 seconds]
Fire-Dragon-DoL has quit [Quit: Quit]
govg has joined #ruby
segy has joined #ruby
<nofxx__> 2.5!!! reverse stacktrace, so cool!!!!!!!!
darkhanb has joined #ruby
Fire-Dragon-DoL has joined #ruby
beanish has joined #ruby
beanish has quit [Client Quit]
ecuanaso has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alfiemax has joined #ruby
bronson has joined #ruby
mjuszczak has joined #ruby
mjuszczak has quit [Client Quit]
bronson has quit [Ping timeout: 260 seconds]
mtkd has quit [Ping timeout: 240 seconds]
bkxd has joined #ruby
mtkd has joined #ruby
nadir has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bkxd has quit [Ping timeout: 248 seconds]
pilne has quit [Quit: Quitting!]
idefine has quit [Remote host closed the connection]
jottr has joined #ruby
gix has joined #ruby
rrichardsr3 has joined #ruby
idefine has joined #ruby
gix- has quit [Ping timeout: 260 seconds]
jottr has quit [Ping timeout: 240 seconds]
dionysus69 has joined #ruby
dviola has joined #ruby
idefine has quit [Ping timeout: 248 seconds]
vondruch has quit [Ping timeout: 248 seconds]
idefine has joined #ruby
idefine has quit [Remote host closed the connection]
idefine has joined #ruby
idefine has quit [Ping timeout: 240 seconds]
bkxd has joined #ruby
jdawgaz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jdawgaz has joined #ruby
rrichardsr3 has quit [Quit: Apparantly my attempt to stay awake has failed...]
jdawgaz has quit [Client Quit]
jdawgaz has joined #ruby
jdawgaz has quit [Client Quit]
jdawgaz has joined #ruby
jdawgaz has quit [Client Quit]
bkxd has quit [Ping timeout: 265 seconds]
jdawgaz has joined #ruby
jdawgaz has quit [Client Quit]
ur5us has quit [Remote host closed the connection]
jdawgaz has joined #ruby
jdawgaz has quit [Client Quit]
ur5us has joined #ruby
cschneid_ has quit [Remote host closed the connection]
ledestin has joined #ruby
prometheus_falli has quit [Remote host closed the connection]
ur5us has quit [Ping timeout: 260 seconds]
theo_ has joined #ruby
prometheus_falli has joined #ruby
eightlimbed has quit [Ping timeout: 240 seconds]
alfiemax_ has joined #ruby
bronson has joined #ruby
alfiemax has quit [Ping timeout: 264 seconds]
hanmac has quit [Ping timeout: 240 seconds]
bronson has quit [Ping timeout: 264 seconds]
dionysus69 has quit [Quit: dionysus69]
lupine has quit [Remote host closed the connection]
lupine has joined #ruby
idefine has joined #ruby
howdoi has joined #ruby
troys is now known as troys_
nogic has quit [Ping timeout: 240 seconds]
s3nd1v0g1us has quit [Ping timeout: 255 seconds]
hanmac has joined #ruby
jottr has joined #ruby
jottr has quit [Ping timeout: 240 seconds]
workmad3 has joined #ruby
rippa has joined #ruby
abraham has joined #ruby
workmad3 has quit [Ping timeout: 265 seconds]
abraham has quit [Client Quit]
abraham has joined #ruby
abraham has left #ruby [#ruby]
alfiemax_ has quit [Remote host closed the connection]
troys_ is now known as troys
alfiemax has joined #ruby
Seich has quit [Quit: Gone fishing.]
KeyJoo has joined #ruby
abra_ham has joined #ruby
dviola has quit [Quit: WeeChat 2.0.1]
zwliew has joined #ruby
abra_ham has quit [Client Quit]
abra_ham has joined #ruby
LocaMocha has joined #ruby
naprimer3 has joined #ruby
abra_ham has quit [Client Quit]
troys has quit [Quit: Bye]
naprimer2 has quit [Ping timeout: 252 seconds]
bronson has joined #ruby
theo__ has joined #ruby
rrichardsr3 has joined #ruby
theo_ has quit [Ping timeout: 240 seconds]
bronson has quit [Ping timeout: 265 seconds]
mtkd has quit [Ping timeout: 248 seconds]
Seich has joined #ruby
mtkd has joined #ruby
alfiemax has quit [Remote host closed the connection]
rrichardsr3 has quit [Quit: Apparantly my attempt to stay awake has failed...]
KeyJoo has quit [Ping timeout: 256 seconds]
jottr has joined #ruby
alfiemax_ has joined #ruby
jottr has quit [Ping timeout: 256 seconds]
jtdoncas_ has joined #ruby
jtdoncas has quit [Ping timeout: 264 seconds]
jtdoncas has joined #ruby
jottr has joined #ruby
jtdoncas_ has quit [Ping timeout: 248 seconds]
jottr has quit [Ping timeout: 268 seconds]
uZiel has joined #ruby
mikhael_k33hl has quit [Quit: Page closed]
bronson has joined #ruby
_whitelogger has joined #ruby
bronson has quit [Ping timeout: 264 seconds]
cdg has joined #ruby
nofxx__ has quit [Remote host closed the connection]
cdg has quit [Ping timeout: 246 seconds]
iMadper has quit [Ping timeout: 248 seconds]
nwm has quit [Ping timeout: 246 seconds]
zautomata has joined #ruby
alfiemax has joined #ruby
alex`` has joined #ruby
jottr has joined #ruby
alfiemax_ has quit [Ping timeout: 264 seconds]
prometheus_falli has quit [Ping timeout: 272 seconds]
DoubleMalt has joined #ruby
jottr has quit [Ping timeout: 265 seconds]
rrichardsr3 has joined #ruby
alfiemax has quit [Remote host closed the connection]
cschneid_ has joined #ruby
Dimik has quit [Ping timeout: 240 seconds]
vondruch has joined #ruby
cschneid_ has quit [Ping timeout: 240 seconds]
bronson has joined #ruby
<mrush> anyone used Net::SSH much?
jtdoncas has quit [Ping timeout: 248 seconds]
randomstrangerb has quit [Ping timeout: 240 seconds]
<mrush> and rush?
randomstrangerb has joined #ruby
ahrs_ is now known as ahrs
kculpis has quit [Ping timeout: 260 seconds]
theo__ has quit [Ping timeout: 260 seconds]
bronson has quit [Ping timeout: 264 seconds]
prometheus_falli has joined #ruby
zwliew has quit [Quit: Connection closed for inactivity]
uZiel has quit [Ping timeout: 272 seconds]
jenrzzz has joined #ruby
justinfaler has joined #ruby
justinfaler is now known as immune
jtdoncas has joined #ruby
BTRE has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 264 seconds]
jottr has joined #ruby
jtdoncas has quit [Ping timeout: 240 seconds]
raul782 has quit [Remote host closed the connection]
jtdoncas has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jenrzzz has joined #ruby
rippa has quit [Read error: Connection reset by peer]
Mia has quit [Read error: Connection reset by peer]
jottr has quit [Ping timeout: 264 seconds]
rippa has joined #ruby
apeiros has quit [Read error: Connection reset by peer]
Azure has quit [Read error: Connection reset by peer]
Mia has joined #ruby
Mia has quit [Changing host]
Mia has joined #ruby
idefine has quit [Remote host closed the connection]
alex`` has quit [Ping timeout: 265 seconds]
apeiros has joined #ruby
rwb has quit [Remote host closed the connection]
rwb has joined #ruby
Azure has joined #ruby
rrichardsr3 has quit [Quit: He who dares .... wins.]
jtdoncas has quit [Ping timeout: 265 seconds]
jenrzzz has quit [Ping timeout: 260 seconds]
brodul has quit [Ping timeout: 248 seconds]
d^sh has quit [Ping timeout: 248 seconds]
tbuehlmann has quit [Ping timeout: 248 seconds]
Guest96386 has quit [Ping timeout: 248 seconds]
ski7777 has quit [Remote host closed the connection]
ski7777 has joined #ruby
linduxed has quit [Ping timeout: 248 seconds]
d^sh has joined #ruby
brodul has joined #ruby
tbuehlmann has joined #ruby
jdawgaz has joined #ruby
ldepandis has joined #ruby
linduxed has joined #ruby
bronson has joined #ruby
zapata has quit [Read error: Connection reset by peer]
zapata has joined #ruby
cdg has joined #ruby
cdg_ has joined #ruby
jtdoncas has joined #ruby
bronson has quit [Ping timeout: 264 seconds]
nadir has quit [Quit: Connection closed for inactivity]
cdg has quit [Ping timeout: 252 seconds]
apparition has joined #ruby
cdg_ has quit [Ping timeout: 265 seconds]
zautomata has quit [Ping timeout: 265 seconds]
jtdoncas has quit [Ping timeout: 265 seconds]
apparition has quit [Quit: Bye]
jamesaxl has joined #ruby
nofxx has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jenrzzz has joined #ruby
marr has joined #ruby
jottr has joined #ruby
jenrzzz has quit [Ping timeout: 265 seconds]
jottr has quit [Ping timeout: 256 seconds]
workmad3 has joined #ruby
my123 has quit [Read error: Connection reset by peer]
claudiuinberlin has joined #ruby
my123 has joined #ruby
my123 has joined #ruby
jtdoncas has joined #ruby
sameerynho has joined #ruby
workmad3 has quit [Ping timeout: 248 seconds]
Guest90 has joined #ruby
cdg has joined #ruby
jtdoncas has quit [Ping timeout: 248 seconds]
cdg has quit [Ping timeout: 252 seconds]
d^sh has quit [Ping timeout: 248 seconds]
d^sh has joined #ruby
kapil___ has quit [Quit: Connection closed for inactivity]
immune has quit [Ping timeout: 264 seconds]
bronson has joined #ruby
bronson has quit [Ping timeout: 248 seconds]
uZiel has joined #ruby
bkxd has joined #ruby
bkxd_ has joined #ruby
dviola has joined #ruby
mtkd has quit [Read error: Connection reset by peer]
mtkd has joined #ruby
Guest90 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jtdoncas has joined #ruby
dddf has quit [Ping timeout: 268 seconds]
bkxd has quit [Ping timeout: 265 seconds]
bkxd_ has quit [Ping timeout: 260 seconds]
ldepandis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ldepandis has joined #ruby
jtdoncas has quit [Ping timeout: 268 seconds]
gigetoo has quit [Ping timeout: 248 seconds]
jottr has joined #ruby
biberu has joined #ruby
gigetoo has joined #ruby
jottr has quit [Ping timeout: 248 seconds]
alex`` has joined #ruby
jnyw has quit [Quit: WeeChat 2.0.1]
workmad3 has joined #ruby
jottr has joined #ruby
<mrush> i wish rye made the pid available for remote processes
my123 has quit [Read error: Connection reset by peer]
workmad3 has quit [Ping timeout: 240 seconds]
my123 has joined #ruby
my123 has joined #ruby
drewmcmillan has joined #ruby
jottr has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jenrzzz has joined #ruby
Ellusionist has joined #ruby
tomphp has joined #ruby
jtdoncas has joined #ruby
milardovich has joined #ruby
jtdoncas has quit [Ping timeout: 265 seconds]
r3kz has quit [Quit: Connection closed for inactivity]
sundhell_away is now known as sundhell
sundhell is now known as sundhell_away
mikecmpbll has joined #ruby
conta has joined #ruby
Dreamer3_ has quit [Ping timeout: 240 seconds]
bronson has joined #ruby
my123 has quit [Read error: Connection reset by peer]
my123 has joined #ruby
my123 has joined #ruby
yana[m] has quit [Quit: idle on matrix for more than 30 days]
aagdbl[m] has quit [Quit: idle on matrix for more than 30 days]
bronson has quit [Ping timeout: 265 seconds]
Dreamer3 has joined #ruby
ledestin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
marr has quit [Ping timeout: 265 seconds]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nowhere_man has quit [Ping timeout: 260 seconds]
tomphp has joined #ruby
M107262[m] has quit [Quit: idle on matrix for more than 30 days]
TomyLobo has joined #ruby
lasenna[m] has quit [Quit: idle on matrix for more than 30 days]
kua[m] has quit [Quit: idle on matrix for more than 30 days]
nowhere_man has joined #ruby
jenrzzz has quit [Ping timeout: 248 seconds]
jottr has joined #ruby
Ishido has quit [Ping timeout: 248 seconds]
jtdoncas has joined #ruby
jdawgaz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
drewmcmillan has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
plexigras has quit [Ping timeout: 252 seconds]
jottr has quit [Ping timeout: 246 seconds]
plexigras has joined #ruby
jtdoncas has quit [Ping timeout: 265 seconds]
milardovich has quit [Read error: Connection reset by peer]
milardovich has joined #ruby
astronavt[m] has quit [Quit: idle on matrix for more than 30 days]
AJA4350 has joined #ruby
watzon has quit [Quit: idle on matrix for more than 30 days]
bweston92 has joined #ruby
ecuanaso has joined #ruby
Ishido has joined #ruby
drewmcmillan has joined #ruby
dtcristo1 has left #ruby ["Kicked by @appservice-irc:matrix.org : idle on matrix for more than 30 days"]
dtcristo1 has quit [Quit: idle on matrix for more than 30 days]
apparition has joined #ruby
ecuanaso has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Ishido has quit [Ping timeout: 248 seconds]
bronson has joined #ruby
jottr has joined #ruby
jtdoncas has joined #ruby
Ishido has joined #ruby
elphe has quit [Ping timeout: 248 seconds]
Beams has joined #ruby
Beams_ has joined #ruby
bronson has quit [Ping timeout: 246 seconds]
jtdoncas has quit [Ping timeout: 255 seconds]
Beams has quit [Ping timeout: 246 seconds]
shinnya has quit [Ping timeout: 260 seconds]
vichib has quit [Remote host closed the connection]
marcux has joined #ruby
alfiemax has joined #ruby
cremes has joined #ruby
elphe has joined #ruby
marcux has quit [Ping timeout: 276 seconds]
conta has quit [Remote host closed the connection]
drewmcmillan has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
milardovich has quit [Remote host closed the connection]
milardovich has joined #ruby
HaikuUser has joined #ruby
HaikuUser has quit [Quit: Vision[0.10.2]: i've been blurred!]
jdawgaz has joined #ruby
gizmore|2 is now known as gizmore
ecuanaso has joined #ruby
workmad3 has joined #ruby
jtdoncas has joined #ruby
ldepandis has quit [Read error: Connection reset by peer]
nowhere_man has quit [Remote host closed the connection]
nowhere_man has joined #ruby
jamesaxl has quit [Read error: Connection reset by peer]
workmad3 has quit [Ping timeout: 248 seconds]
jtdoncas has quit [Ping timeout: 276 seconds]
mymtw_ has joined #ruby
<mymtw_> 1
<mymtw_> hi all
<mymtw_> 1
ecuanaso has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<mymtw_> :D
ecuanaso has joined #ruby
Ltem has joined #ruby
apparition has quit [Quit: Bye]
dviola has quit [Quit: WeeChat 2.0.1]
mymtw has joined #ruby
ecuanaso has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mymtw has left #ruby [#ruby]
<mymtw_> hi all
nowhere_man has quit [Remote host closed the connection]
nowhere_man has joined #ruby
ski7777 has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
<mymtw_> register
kapil___ has joined #ruby
bronson has joined #ruby
Gnukpd has joined #ruby
mymtw_ has quit [Quit: leaving]
jerryskye has quit [Quit: ZNC 1.6.5+deb1 - http://znc.in]
Ishido has quit [Ping timeout: 265 seconds]
jerryskye has joined #ruby
jerryskye has quit [Client Quit]
jerryskye has joined #ruby
bronson has quit [Ping timeout: 265 seconds]
canton7 has quit [Quit: ZNC - http://znc.in]
milardovich has quit []
canton7 has joined #ruby
jerryskye has quit [Client Quit]
KeyJoo has joined #ruby
jamesaxl has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nowhere_man has quit [Ping timeout: 240 seconds]
jtdoncas has joined #ruby
mtkd has quit [Ping timeout: 240 seconds]
jdawgaz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nowhere_man has joined #ruby
Beams_ has quit [Remote host closed the connection]
mtkd has joined #ruby
jtdoncas has quit [Ping timeout: 248 seconds]
jerryskye has joined #ruby
konsolebox has quit [Ping timeout: 250 seconds]
konsolebox has joined #ruby
k1ltzman has quit [Ping timeout: 240 seconds]
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
Ishido has joined #ruby
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
mtkd has quit [Read error: Connection reset by peer]
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
mtkd has joined #ruby
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
uZiel has quit [Ping timeout: 272 seconds]
ddffg has joined #ruby
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
alex`` has quit [Quit: WeeChat 1.9]
uZiel has joined #ruby
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
alex`` has joined #ruby
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
marcux has joined #ruby
<mr-robert> hey
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
tomphp has joined #ruby
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
ski7777 has joined #ruby
cremes has quit [Quit: cremes]
Gnukpd has quit [Quit: Leaving]
<apeiros> hi mr-robert
<mr-robert> hey apeiros
jtdoncas has joined #ruby
postmodern has quit [Quit: Leaving]
Vapez has joined #ruby
jtdoncas has quit [Ping timeout: 265 seconds]
<ddffg> i like ruby
<ddffg> Every year i love Ruby more and more.
nchambers has quit [Ping timeout: 240 seconds]
Inoperable has joined #ruby
<apeiros> ddffg: API_KEY, API_SECRET and DB should probably rather be instance variables and be passed into initialize
<apeiros> ddffg: get_ prefix is usually not used in ruby. we have `foo=`, `foo` and `foo?` instead of `set_foo`, `get_foo` and `is/has_foo`
<ddffg> i use 'get', 'load', 'fetch' To specify exactly what the method does
nchambers has joined #ruby
rrichardsr3 has joined #ruby
bronson has joined #ruby
beanish has joined #ruby
Ellusionist has quit [Ping timeout: 248 seconds]
bronson has quit [Ping timeout: 248 seconds]
beanish has quit [Ping timeout: 264 seconds]
Xeago has quit [Ping timeout: 252 seconds]
Xeago has joined #ruby
nertzy has quit [Read error: Connection reset by peer]
<mr-robert> don't need the is_successed local variable.
<mr-robert> don't need 'data' local variable
drewmcmillan has joined #ruby
jtdoncas has joined #ruby
jtdoncas has quit [Ping timeout: 248 seconds]
John___ has joined #ruby
Beams_ has joined #ruby
Ishido has quit [Ping timeout: 265 seconds]
<ddffg> Why no one programs in Crystal language
Inoperable has quit [Quit: WeeChat 2.0.1]
Beams_ has quit [Remote host closed the connection]
workmad3 has joined #ruby
Ishido has joined #ruby
mvfc has joined #ruby
mvfc has quit [Client Quit]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<mr-robert> people do program in crystal
<mr-robert> but this is #ruby :)
conta2 has joined #ruby
workmad3 has quit [Ping timeout: 260 seconds]
marcux has quit [Ping timeout: 255 seconds]
idefine has joined #ruby
rrichardsr3 has quit [Quit: He who dares .... wins.]
govg has quit [Ping timeout: 268 seconds]
sameerynho has quit [Ping timeout: 248 seconds]
idefine has quit [Ping timeout: 248 seconds]
govg has joined #ruby
bkxd has joined #ruby
hotdogpete has joined #ruby
cschneid_ has joined #ruby
TvL2386 has quit [Remote host closed the connection]
govg has quit [Ping timeout: 240 seconds]
bkxd has quit [Ping timeout: 264 seconds]
jtdoncas has joined #ruby
TvL2386 has joined #ruby
Guest14 has joined #ruby
cschneid_ has quit [Ping timeout: 248 seconds]
bronson has joined #ruby
govg has joined #ruby
jtdoncas has quit [Ping timeout: 276 seconds]
ResidentBiscuit has joined #ruby
bronson has quit [Ping timeout: 240 seconds]
randomstrangerb has quit [Ping timeout: 240 seconds]
pilne has joined #ruby
randomstrangerb has joined #ruby
Dreamer3_ has joined #ruby
PaulCape_ has quit [Ping timeout: 240 seconds]
Beams has joined #ruby
idefine has joined #ruby
Beams_ has joined #ruby
Dreamer3 has quit [Ping timeout: 276 seconds]
Beams_ has quit [Remote host closed the connection]
Beams has quit [Ping timeout: 248 seconds]
John___ has quit [Ping timeout: 260 seconds]
idefine has quit [Ping timeout: 256 seconds]
cremes has joined #ruby
kapil___ has quit [Quit: Connection closed for inactivity]
drewmcmillan has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
idefine has joined #ruby
Chuguniy has joined #ruby
kapil___ has joined #ruby
Chuguniy has quit [Ping timeout: 265 seconds]
cremes has quit [Quit: cremes]
idefine has quit [Ping timeout: 265 seconds]
jtdoncas has joined #ruby
fredx has joined #ruby
Guest14 has quit [Quit: Textual IRC Client: www.textualapp.com]
mtkd has quit [Ping timeout: 240 seconds]
jottr has quit [Ping timeout: 248 seconds]
cdg has joined #ruby
jtdoncas has quit [Ping timeout: 248 seconds]
mtkd has joined #ruby
PaulCapestany has joined #ruby
cremes has joined #ruby
fredx has quit [Client Quit]
mn3m has joined #ruby
tedwards has joined #ruby
doublemalt_ has joined #ruby
raul782 has joined #ruby
tedwards is now known as todd
Beams_ has joined #ruby
drewmcmillan has joined #ruby
DoubleMalt has quit [Ping timeout: 265 seconds]
raul782 has quit [Remote host closed the connection]
bronson has joined #ruby
jottr has joined #ruby
hotdogpete has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jtdoncas has joined #ruby
BTRE has joined #ruby
bronson has quit [Ping timeout: 265 seconds]
uZiel has quit [Ping timeout: 272 seconds]
jottr has quit [Ping timeout: 265 seconds]
jtdoncas has quit [Ping timeout: 265 seconds]
Beams_ has quit [Remote host closed the connection]
dinfuehr has quit [Ping timeout: 240 seconds]
dinfuehr has joined #ruby
Beams has joined #ruby
Vapez has quit [Ping timeout: 255 seconds]
DLSteve has joined #ruby
csaunders has quit [Quit: later tater]
csaunders has joined #ruby
csaunders has quit [Client Quit]
yahmds has joined #ruby
yahmds has quit [Client Quit]
ResidentBiscuit has quit []
yahmds has joined #ruby
ResidentBiscuit has joined #ruby
yahmds has quit [Client Quit]
randomstrangerb has quit [Ping timeout: 268 seconds]
randomstrangerb has joined #ruby
alfiemax has quit [Remote host closed the connection]
Akuma has joined #ruby
csaunders has joined #ruby
<Akuma> Hello, I have a question I can't seem to resolve with google: I have a variadic arg function ( def f(*args)), args being a series of strings. When I do `args.each do |i| { str += '' }` I receive a message that i is nul
<Akuma> any idea what I should be doing to access the string within the args I've passed?
<havenwood> Akuma: Is that code snippet correct?
phaul has joined #ruby
<havenwood> Akuma: Can you gist the whole method?
<havenwood> ?gist
<ruby[bot]> https://gist.github.com - Multiple files, syntax highlighting, even automatically with matching filenames, can be edited
<Akuma> I didn't paste the functional code, I can do a pastebin
alfiemax has joined #ruby
jamesaxl has quit [Read error: Connection reset by peer]
jamesaxl has joined #ruby
<Akuma> missing the last "end" on the paste
goat has joined #ruby
<Akuma> nevermind, I figured out the issue, I hat to do `q.to_s`
<Akuma> Thanks!
goat is now known as Guest28856
mn3m has quit [Ping timeout: 255 seconds]
troydm has joined #ruby
<havenwood> Akuma: Consider: sql.join
jottr has joined #ruby
<Akuma> havenwood: Thank you!
<troydm> I want to execute shell command so it's stdout and stderr would be outputed to stdout and stderr, how can I do that in Ruby?
<Akuma> I didn't think of that
spectra has quit [Quit: ZNC - http://znc.sourceforge.net]
<havenwood> troydm: system
<troydm> havenwood: system doesn't do stderr
<havenwood> &ri Kernel#system
<havenwood> troydm: open3 or popen3 do
orbyt_ has joined #ruby
<havenwood> &ri Open3#capture3
<mr-robert> howdy havenwood
<havenwood> mr-robert: g'mornin'
ResidentBiscuit has quit [Remote host closed the connection]
<mr-robert> evening :)
ResidentBiscuit has joined #ruby
jottr has quit [Ping timeout: 248 seconds]
jtdoncas has joined #ruby
jottr has joined #ruby
idefine has joined #ruby
ResidentBiscuit has quit [Ping timeout: 240 seconds]
nadir has joined #ruby
jtdoncas has quit [Ping timeout: 265 seconds]
jottr has quit [Ping timeout: 240 seconds]
TinkerTyper has quit [Quit: ZNC 1.7.x-nightly-20171215-55d993e0 - https://znc.in]
TinkerTyper has joined #ruby
beauby has joined #ruby
ResidentBiscuit has joined #ruby
ResidentBiscuit has quit [Client Quit]
Riddell has joined #ruby
mistergibson has quit [Remote host closed the connection]
Beams has quit [Quit: .]
spectra has joined #ruby
Riddell has quit [Changing host]
Riddell has joined #ruby
mistergibson has joined #ruby
vyorkin has joined #ruby
kculpis has joined #ruby
bronson has joined #ruby
r3kz has joined #ruby
bronson has quit [Ping timeout: 240 seconds]
minimalism has quit [Quit: minimalism]
jtdoncas has joined #ruby
Vapez has joined #ruby
cdg has quit [Remote host closed the connection]
cdg has joined #ruby
Guest90 has joined #ruby
theRealGent has joined #ruby
dachinat has joined #ruby
jtdoncas has quit [Ping timeout: 265 seconds]
ddffg has quit [Quit: Leaving]
cdg has quit [Ping timeout: 246 seconds]
jottr has joined #ruby
oblique has quit [Quit: WeeChat 1.7.1]
<dachinat> hi. has anybody used VCR? can I have match_requests_on: [:register_user_matcher, >>OR<<:update_user_matcher] not AND there. if not is it possible to write a single matcher and call and compare these two matchers manually with OR
ResidentBiscuit has joined #ruby
<dachinat> * is there something like #get_request_matcher for #register_request_matcher
alfiemax_ has joined #ruby
Beams has joined #ruby
alfiemax has quit [Ping timeout: 248 seconds]
theo__ has joined #ruby
Beams has quit [Client Quit]
DLSteve has quit [Quit: All rise, the honorable DLSteve has left the channel.]
mahlon_ is now known as mahlon
elphe has quit [Ping timeout: 248 seconds]
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
oblique has joined #ruby
jtdoncas has joined #ruby
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
elphe has joined #ruby
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
<dachinat> I found a way to call it: VCR.request_matchers[:register_user_matcher].callable.call(request_1, request_2) thanks.
jtdoncas has quit [Ping timeout: 260 seconds]
vyorkin has quit [Read error: Connection reset by peer]
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
yurko has quit [Quit: Connection closed for inactivity]
bronson has joined #ruby
randomstrangerb has quit [Ping timeout: 265 seconds]
Beams has joined #ruby
woodruffw has quit [Ping timeout: 248 seconds]
randomstrangerb has joined #ruby
dachinat has left #ruby [#ruby]
vyorkin has joined #ruby
kapil___ has quit [Quit: Connection closed for inactivity]
bronson has quit [Ping timeout: 265 seconds]
woodruffw has joined #ruby
woodruffw has joined #ruby
drewmcmillan has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
raul782 has joined #ruby
bweston92 has quit [Quit: Connection closed for inactivity]
ldepandis has joined #ruby
Dimik has joined #ruby
chouhoulis has joined #ruby
hanmac has quit [Ping timeout: 265 seconds]
beauby has quit [Ping timeout: 248 seconds]
jtdoncas has joined #ruby
raynold has quit [Quit: Connection closed for inactivity]
Beams has quit [Quit: .]
drewmcmillan has joined #ruby
raul782 has quit [Remote host closed the connection]
mjolnird has quit [Remote host closed the connection]
cdg has joined #ruby
jtdoncas has quit [Ping timeout: 246 seconds]
Ellusionist has joined #ruby
hahuang65 has quit [Ping timeout: 268 seconds]
Mukheem has joined #ruby
cdg has quit [Ping timeout: 246 seconds]
Mukheem has quit [Client Quit]
Mukheem has joined #ruby
hanmac has joined #ruby
Mukheem has quit [Client Quit]
chouhoulis has quit [Remote host closed the connection]
workmad3 has joined #ruby
numbdewd has joined #ruby
workmad3 has quit [Ping timeout: 248 seconds]
vyorkin has quit [Read error: Connection reset by peer]
theo_ has joined #ruby
DominatedConverg has joined #ruby
Azure has quit [Read error: Connection reset by peer]
Azure has joined #ruby
theo__ has quit [Ping timeout: 268 seconds]
Ellusionist has quit [Ping timeout: 260 seconds]
jottr_ has joined #ruby
DominatedConverg has quit [Ping timeout: 264 seconds]
jottr has quit [Ping timeout: 276 seconds]
raul782 has joined #ruby
jtdoncas has joined #ruby
ResidentBiscuit has quit [Remote host closed the connection]
marr has joined #ruby
Guest28856 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jtdoncas has quit [Ping timeout: 240 seconds]
raul782 has quit [Ping timeout: 265 seconds]
jottr_ has quit [Quit: WeeChat 2.0.1]
ResidentBiscuit has joined #ruby
Guest90 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mjolnird has joined #ruby
conta2 has quit [Remote host closed the connection]
bronson has joined #ruby
alfiemax_ has quit [Remote host closed the connection]
mweshi has joined #ruby
mweshi has quit [Client Quit]
bronson has quit [Ping timeout: 248 seconds]
DominatedConverg has joined #ruby
dviola has joined #ruby
mikeiniowa has quit [Remote host closed the connection]
mikeiniowa has joined #ruby
mtkd has quit [Ping timeout: 260 seconds]
mtkd has joined #ruby
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
roshanavand has quit [Quit: Leaving]
darix has quit [Quit: may the packets be with you...]
nofxx_ has joined #ruby
darix has joined #ruby
DominatedConverg has quit [Ping timeout: 256 seconds]
Azure has quit [Read error: Connection reset by peer]
Azure has joined #ruby
Guest90 has joined #ruby
PresidentBiscuit has joined #ruby
nofxx has quit [Ping timeout: 248 seconds]
ResidentBiscuit has quit [Ping timeout: 256 seconds]
immune has joined #ruby
vyorkin has joined #ruby
jtdoncas has joined #ruby
zack6849_ has quit [Changing host]
zack6849_ has joined #ruby
zack6849_ is now known as zack6849
zack6849 is now known as zacm6849
zacm6849 is now known as zack6849
Beams has joined #ruby
Ishido has quit [Ping timeout: 248 seconds]
brian_penguin has joined #ruby
Ishido has joined #ruby
jtdoncas has quit [Ping timeout: 265 seconds]
k0mpa has quit [Remote host closed the connection]
k0mpa has joined #ruby
Azure has quit [Read error: Connection reset by peer]
vyorkin has quit [Quit: WeeChat 2.0.1]
Azure has joined #ruby
hfp_work has quit [Quit: bye]
troulouliou_div2 has joined #ruby
jackjackdripper has joined #ruby
Azure has quit [Read error: Connection reset by peer]
jobewan has joined #ruby
Azure has joined #ruby
AndroUser2 has joined #ruby
mweshi has joined #ruby
mweshi has quit [Client Quit]
PresidentBiscuit is now known as ResidentBiscuit
Beams has quit [Quit: .]
ikopico has quit [Read error: Connection reset by peer]
dionysus69 has joined #ruby
chouhoulis has joined #ruby
ta_ has quit [Remote host closed the connection]
mostly-harmless has quit [Quit: leaving]
chouhoulis has quit [Remote host closed the connection]
Ishido has quit [Ping timeout: 240 seconds]
Ishido has joined #ruby
ta_ has joined #ruby
Guest90 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Vile` has joined #ruby
jtdoncas has joined #ruby
cdg has joined #ruby
amatas has joined #ruby
nowhere_man has quit [Ping timeout: 265 seconds]
duderonomy has joined #ruby
nowhere_man has joined #ruby
hahuang65 has joined #ruby
jtdoncas has quit [Ping timeout: 240 seconds]
jdawgaz has joined #ruby
theo_ has quit [Ping timeout: 264 seconds]
mostly-harmless has joined #ruby
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
pelegreno has quit [Remote host closed the connection]
pelegreno has joined #ruby
ta_ has quit [Remote host closed the connection]
d^sh has quit [Ping timeout: 256 seconds]
Akuma has left #ruby ["Leaving"]
d^sh has joined #ruby
Dimik has quit [Ping timeout: 260 seconds]
pelegreno has quit [Remote host closed the connection]
Dimik has joined #ruby
Ishido has quit [Ping timeout: 265 seconds]
ta_ has joined #ruby
Psybur has quit [Ping timeout: 248 seconds]
raul782 has joined #ruby
bkxd has joined #ruby
bkxd has quit [Client Quit]
raul782 has quit [Remote host closed the connection]
raul782 has joined #ruby
ta_ has quit [Remote host closed the connection]
workmad3 has joined #ruby
jtdoncas has joined #ruby
miromanyth has joined #ruby
pelegreno has joined #ruby
workmad3 has quit [Ping timeout: 248 seconds]
miromanyth has quit [Client Quit]
Guest90 has joined #ruby
marcux has joined #ruby
darkhanb has joined #ruby
dviola has quit [Quit: WeeChat 2.0.1]
alfiemax has joined #ruby
ldepandis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mrush has quit [Ping timeout: 248 seconds]
alfiemax_ has joined #ruby
marcux has quit [Quit: Lost terminal]
mrush has joined #ruby
raul782 has quit [Remote host closed the connection]
mrush is now known as Guest35375
alfiemax has quit [Ping timeout: 248 seconds]
jobewan has quit [Ping timeout: 264 seconds]
jdawgaz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<Guest35375> heroke has neglected their ssl certificates. cant access rush.heroku.com. not very funny dr jone
<Guest35375> as that seems to be the primary reference site judging by the dearth of material elsewhere
<Guest35375> lol
Ishido has joined #ruby
cdg has quit []
* Guest35375 uses RYE instead
ur5us has joined #ruby
Guest78497 has quit [Ping timeout: 248 seconds]
ur5us has quit [Remote host closed the connection]
mikecmpbll has quit [Quit: inabit. zz.]
cdg has joined #ruby
mweshi has joined #ruby
sammi`_ has joined #ruby
troulouliou_div2 has quit [Ping timeout: 240 seconds]
chat_ has joined #ruby
AndroUser2 has quit [Ping timeout: 265 seconds]
bronson has joined #ruby
jobewan has joined #ruby
Guest90 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sammi` has quit [Quit: Lost terminal]
Dimik has quit [Ping timeout: 265 seconds]
bronson has quit [Ping timeout: 265 seconds]
guille-moe has joined #ruby
lytol_ has joined #ruby
raul782 has joined #ruby
jdawgaz has joined #ruby
Guest90 has joined #ruby
jdawgaz has quit [Client Quit]
guille-moe has quit [Ping timeout: 264 seconds]
__main__ has quit [Ping timeout: 240 seconds]
jobewan has quit [Ping timeout: 265 seconds]
mtkd has quit [Ping timeout: 240 seconds]
Psybur has joined #ruby
mtkd has joined #ruby
jdawgaz has joined #ruby
jackjackdripper has quit [Quit: Leaving.]
cdg has quit [Remote host closed the connection]
mweshi has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mweshi has joined #ruby
mweshi has quit [Client Quit]
mweshi has joined #ruby
tomphp has joined #ruby
S007 has quit [Quit: Quit]
__main__ has joined #ruby
Guest90 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Andrevan has joined #ruby
brian_penguin has quit [Remote host closed the connection]
jobewan has joined #ruby
Ishido has quit [Read error: Connection reset by peer]
jordanm has joined #ruby
mweshi_ has joined #ruby
mweshi has quit [Ping timeout: 260 seconds]
jobewan has quit [Read error: Connection reset by peer]
jackjackdripper has joined #ruby
<darix> Guest35375: rush.herokuapp.com works
mweshi_ has quit [Max SendQ exceeded]
jackjackdripper has quit [Read error: Connection reset by peer]
jackjackdripper has joined #ruby
alfiemax_ has quit [Remote host closed the connection]
dviola has joined #ruby
nowhere_man has quit [Remote host closed the connection]
nowhere_man has joined #ruby
dviola has quit [Client Quit]
KeyJoo has quit [Ping timeout: 260 seconds]
phaul has quit [Ping timeout: 260 seconds]
<Guest35375> darix: thanks, looks like it's not the documentation in any case
<Guest35375> (seems to be an app?)
dionysus69 has quit [Ping timeout: 256 seconds]
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
jobewan has joined #ruby
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
Guest90 has joined #ruby
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
Ellusionist has joined #ruby
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
kiltzman has joined #ruby
kiltzman has quit [Max SendQ exceeded]
__main__ has quit [Read error: Connection reset by peer]
elphe has quit [Ping timeout: 264 seconds]
__main__ has joined #ruby
Vile` has quit [Ping timeout: 240 seconds]
Guest90 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jobewan has quit [Ping timeout: 248 seconds]
alex`` has quit [Ping timeout: 255 seconds]
Guest90 has joined #ruby
Guest90 has quit [Client Quit]
bronson has joined #ruby
__main__ has quit [Ping timeout: 265 seconds]
raul782 has quit [Remote host closed the connection]
jobewan has joined #ruby
lytol_ has quit [Remote host closed the connection]
bronson has quit [Ping timeout: 246 seconds]
numbdewd has quit [Remote host closed the connection]
jnyw has joined #ruby
__main__ has joined #ruby
drewmcmillan has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jobewan has quit [Read error: Connection reset by peer]
ResidentBiscuit has quit [Remote host closed the connection]
raynold has joined #ruby
drewmcmillan has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alfiemax has joined #ruby
jobewan has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jobewan has quit [Client Quit]
tomphp has joined #ruby
tomphp has quit [Client Quit]
hahuang65 has quit [Ping timeout: 276 seconds]
orbyt_ has joined #ruby
jdawgaz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
randomstrangerb has quit [Ping timeout: 248 seconds]
jdawgaz has joined #ruby
randomstrangerb has joined #ruby
pskosinski has quit [Read error: Connection reset by peer]
pskosinski_ has joined #ruby
Ltem has quit [Ping timeout: 276 seconds]
mweshi has joined #ruby
workmad3 has joined #ruby
iszak has quit [Ping timeout: 256 seconds]
iszak has joined #ruby
raul782 has joined #ruby
mweshi has quit [Max SendQ exceeded]
Ellusionist has quit [Ping timeout: 248 seconds]
workmad3 has quit [Ping timeout: 248 seconds]
pskosinski_ has quit [Read error: Connection reset by peer]
dviola has joined #ruby
raul782 has quit [Ping timeout: 248 seconds]
pskosinski has joined #ruby
pskosinski is now known as Guest21286
S007 has joined #ruby
argoneus has quit [Ping timeout: 272 seconds]
biberu has quit []
argoneus has joined #ruby
reu has quit [Ping timeout: 255 seconds]
elphe has joined #ruby
miskatonic has joined #ruby
ur5us has joined #ruby
funnel has quit [Ping timeout: 255 seconds]
drewmcmillan has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
elphe has quit [Ping timeout: 265 seconds]
jerryskye has quit [Quit: The Lounge - https://thelounge.github.io]
ur5us has quit [Ping timeout: 248 seconds]
jerryskye has joined #ruby
bronson has joined #ruby
pastorinni has joined #ruby
immune has quit [Ping timeout: 248 seconds]
bronson has quit [Ping timeout: 240 seconds]
pskosinski has joined #ruby
pskosinski is now known as Guest76621
Guest21286 has quit [Ping timeout: 265 seconds]
tomphp has joined #ruby
pskosinski_ has joined #ruby
sameerynho has joined #ruby
m27frogy has quit [Ping timeout: 256 seconds]
Guest76621 has quit [Read error: Connection reset by peer]
drewmcmillan has joined #ruby
mweshi has joined #ruby
miskatonic has quit [Quit: ERC (IRC client for Emacs 24.5.1)]
reu has joined #ruby
Ellusionist has joined #ruby
mtkd has quit [Ping timeout: 240 seconds]