havenwood changed the topic of #ruby to: Rules & more: https://ruby-community.com || Ruby 2.3.3 & 2.2.6 (2.4.0-rc1): 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
meshsmith_ has quit [Remote host closed the connection]
charliesome has joined #ruby
<montanonic> Anyone here with experience in both rails and some front-end JS frameworks (Ember or Aurelia in particular)?
sepp2k1 has quit [Read error: Connection reset by peer]
<havenwood> I've not even heard of Aurelia
<Radar> montanonic: yes, Rails + React. We're using webpack-rails as a bridge between the two.
johnny56 has quit [Remote host closed the connection]
<montanonic> Radar: at what point do you decide that using a JS framework is worth it?
<montanonic> Currently the 60k LoC Rails app I'm working on (only been a few weeks on this project) seems capable enough with just JQuery and AJAX
<Radar> I don't really have an opinion on that one.
<montanonic> fair enough
<Radar> I've only ever used JS in a Rails app in a serious context when that's already been setup.
dnicole has joined #ruby
johnny56 has joined #ruby
h1fuelcell has quit [Ping timeout: 248 seconds]
<montanonic> Have you worked on large Rails apps with lots of AJAX, reactive updates, and the like, without a JS framework?
<montanonic> (reactive updates meaning: hey, this thing changed the model, so any views with that model on this page should update without refresh)
<Radar> montanonic: yes, it was disgusting jQuery code.
<Radar> Last app I worked FT on had parts done in that kind of code, parts done in Angular and then when Angular fell out of favour, the newest parts were done in React.
<Radar> It was... interesting.
<Radar> That old jQuery code was ported to React when ever it became too painful.
<montanonic> Okay; so far the app I'm working on feels like it's doing fine with just JQ and AJAX, but I don't have experience with a JS framework to compare that too
<montanonic> Radar: must have been a pretty complex UI then?
<Radar> Yeah there were complex parts of it, sure.
<montanonic> I think maybe the reason my work app is doing fine is the layout is extremely standardized; most interactivity uses very similar layouts
<Radar> sometimes it was just displaying a grid of items on the page. Other times it was "when I decrease the quantity of this item in the cart, the whole cart's prices should be recalc'd)
shayan has left #ruby [#ruby]
<montanonic> Were you trying to run the calculations for the latter client-side?
quazimodo has quit [Ping timeout: 265 seconds]
dnicole has quit [Ping timeout: 258 seconds]
<Radar> no. The change was sent to the server and it would run the calcs there, then report them back to the UI
impermanence has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
<montanonic> and that ended up being a mess of JQ? or was that example fine?
<Radar> That was React and it was pretty quick.
<montanonic> gotcha; thanks
<Radar> The mess of jQuery was a form that was/is used extensively to create products for this ecommerce site.
<Radar> Elements would pop in and out depending on what you'd selected from select boxes.
<montanonic> ah, okay
TomyLobo has quit [Ping timeout: 260 seconds]
<Radar> Sometimes what would pop-in would be determined client side, sometimes it would be determined server side
<Radar> The developer who wrote it all no longer worked there and nobody had touched the code in literally years because it was terrifying.
<montanonic> yikes
<Radar> I was tasked with rewriting that code into React (my first React project) and wasn't given very good support in doing so and ... well, I don't work there any more.
Gravious has quit [Ping timeout: 250 seconds]
<Radar> But now working on another app with a lot of knowledgeable React people who've got some established best practices and it's just... nice
nikivi has joined #ruby
<montanonic> glad things are better for you now; rewriting bad code can be miserably frustrating
rgiscard has quit [Quit: Cheers]
cdg has quit [Remote host closed the connection]
ramfjord has joined #ruby
kuSuSE has joined #ruby
axisys_ has joined #ruby
axisys_ has quit [Client Quit]
blackbombay has quit [Ping timeout: 246 seconds]
LuckyABA has joined #ruby
nankyokusei has joined #ruby
angelixd has quit [Quit: leaving]
splud has joined #ruby
gbgdev has quit [Remote host closed the connection]
mostlybadfly has joined #ruby
nankyokusei has quit [Ping timeout: 265 seconds]
bronson has joined #ruby
pcmantz has quit [Ping timeout: 264 seconds]
workmad3 has quit [Ping timeout: 258 seconds]
blackbombay has joined #ruby
ixti has quit [Read error: No route to host]
raul782 has quit [Read error: Connection reset by peer]
raul782 has joined #ruby
nikivi has quit [Quit: zzz]
ixti has joined #ruby
nikivi has joined #ruby
bturker has joined #ruby
antoniobeyah has joined #ruby
leftpad has joined #ruby
quazimodo has joined #ruby
CloCkWeRX has joined #ruby
bturker has quit [Ping timeout: 256 seconds]
nofxxx has joined #ruby
raul782 has quit [Read error: Connection reset by peer]
nofxx has quit [Ping timeout: 248 seconds]
Kazlock has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
frozengeek_ has quit [Quit: frozengeek_]
antoniobeyah has quit [Quit: antoniobeyah]
mikecmpbll has quit [Quit: inabit. zz.]
bradleyprice has quit [Remote host closed the connection]
sp4rrow has quit [Quit: The Internet needs a break and I need a cookie]
h1fuelcell has joined #ruby
<linduxed> i just realized that running Timecop.freeze in a test doesn't do anything if your test makes use of popen3 :-(
saneax is now known as saneax-_-|AFK
<linduxed> since all the stuff that is run in popen3 will be running in a separate ruby instance, with it not caring in the slightest about the timecop stuff
raul782 has joined #ruby
enterprisey has joined #ruby
enterprisey has quit [Max SendQ exceeded]
enterprisey has joined #ruby
hotpancakes has joined #ruby
johnmccabe has quit [Quit: Textual IRC Client: www.textualapp.com]
emilford has quit [Quit: Lost terminal]
raul782 has quit [Read error: Connection reset by peer]
enterprisey has quit [Client Quit]
pwnd_nsfw` has joined #ruby
Devalo has joined #ruby
pwnd_nsfw has quit [Ping timeout: 250 seconds]
nikivi has quit [Quit: irc]
kuSuSE has quit [Quit: Konversation terminated!]
h1fuelcell has quit [Ping timeout: 240 seconds]
Devalo has quit [Ping timeout: 250 seconds]
marchelzo has joined #ruby
<marchelzo> hi
<shadeslayer> hey, can someone tell me if there's special handling when dealing with stubbing a method that takes parameters?
<havenwood> marchelzo: hi
<havenwood> shadeslayer: Minitest stubs?
<shadeslayer> havenwood: yes
<marchelzo> in mruby why are Array#each, Array#each_index, Array#collect, etc. implemented in ruby and not C?
<shadeslayer> so I'm doing : Foo.stub :new, nil do Foo.new(sym: 'moo') end
<shadeslayer> and ruby goes all, oh noes, no new method
nettoweb has joined #ruby
opt9 has joined #ruby
<shadeslayer> havenwood: any ideas?
jaguarmagenta has joined #ruby
<havenwood> shadeslayer: Have a code snippet that reproduces the error? I get: #=> nil
<havenwood> shadeslayer: class Foo; def initialize sym:; end end; Foo.stub :new, nil do Foo.new(sym: 'moo') end #=> nil
<shadeslayer> huh indeed
marr has quit [Ping timeout: 258 seconds]
raul782 has joined #ruby
jhack has joined #ruby
<shadeslayer> *facedesk*
<shadeslayer> havenwood: thanks, I'm a idiot
<shadeslayer> I was stubbing Module.new
jenrzzz_ has quit [Ping timeout: 250 seconds]
h1fuelcell has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
LuckyABA has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jaguarmagenta has quit [Ping timeout: 256 seconds]
xall has joined #ruby
<shadeslayer> havenwood: I can't stub private methods though right
<havenwood> shadeslayer: nope
marxarelli|afk is now known as marxarelli
<havenwood> shadeslayer: don't stub private methods since they're private they're internal
marxarelli is now known as marxarelli|afk
hogetaro has quit [Quit: Leaving...]
<havenwood> shadeslayer: if you did self.bar that'd work
<havenwood> shadeslayer: but you can't call an instance method directly on the class before instanciating it
xall has quit [Ping timeout: 265 seconds]
<shadeslayer> aha
enilsen16 has joined #ruby
<shadeslayer> that makes sense
JLat has joined #ruby
tau has quit [Remote host closed the connection]
PaschalsWager has joined #ruby
JLat has quit [Quit: Textual IRC Client: www.textualapp.com]
JrdLtmr has joined #ruby
bturker has joined #ruby
tau has joined #ruby
bronson has quit [Remote host closed the connection]
bturker has quit [Ping timeout: 256 seconds]
tvw has quit [Remote host closed the connection]
nankyokusei has joined #ruby
raul782 has quit [Remote host closed the connection]
nullobject has quit [Quit: WeeChat 1.5]
nankyokusei has quit [Ping timeout: 268 seconds]
bturker has joined #ruby
bronson has joined #ruby
astrobunny has joined #ruby
jcao219 has quit [Ping timeout: 240 seconds]
pwnd_nsfw has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
astrobunny has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
pwnd_nsfw` has quit [Ping timeout: 258 seconds]
LuckyABA has joined #ruby
astrobunny has joined #ruby
LuckyABA has quit [Client Quit]
astrobunny has quit [Remote host closed the connection]
dnicole has joined #ruby
astrobunny has joined #ruby
bturker has quit [Ping timeout: 256 seconds]
antoniobeyah has joined #ruby
fullofcaffeine has quit [Ping timeout: 250 seconds]
marchelzo has quit [Ping timeout: 248 seconds]
astrobunny has quit [Remote host closed the connection]
astrobunny has joined #ruby
h1fuelcell has quit [Remote host closed the connection]
LuckyABA has joined #ruby
dnicole has quit [Ping timeout: 258 seconds]
astrobunny has quit [Remote host closed the connection]
_djbkd has quit [Remote host closed the connection]
astrobunny has joined #ruby
_djbkd has joined #ruby
djbkd_ has joined #ruby
_djbkd has quit [Read error: Connection reset by peer]
d^sh has quit [Ping timeout: 268 seconds]
astrobunny has quit [Remote host closed the connection]
jhack has quit [Quit: jhack]
astrobunny has joined #ruby
d^sh has joined #ruby
jhack has joined #ruby
gloscombe has quit [Quit: gloscombe]
enilsen16 has quit [Quit: enilsen16]
helpa has quit [Remote host closed the connection]
astrobunny has quit [Remote host closed the connection]
helpa has joined #ruby
jhack has quit [Quit: jhack]
jhack has joined #ruby
jhack has quit [Client Quit]
rakm has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
n008f4g_ has quit [Ping timeout: 258 seconds]
hahuang61 has quit [Ping timeout: 258 seconds]
nettoweb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Azure has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jcao219 has joined #ruby
astrobunny has joined #ruby
hahuang61 has joined #ruby
h1fuelcell has joined #ruby
bronson has quit [Remote host closed the connection]
djbkd_ has quit [Remote host closed the connection]
h1fuelcell has quit [Ping timeout: 264 seconds]
LoneHerm_ has joined #ruby
PaschalsWager has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
harai_ has quit [Ping timeout: 245 seconds]
LoneHerm_ has quit [Remote host closed the connection]
LoneHerm_ has joined #ruby
ixti has quit [Read error: Connection reset by peer]
ixti has joined #ruby
chouhoulis has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
LoneHerm_ has quit [Ping timeout: 240 seconds]
chouhoulis has joined #ruby
h1fuelcell has joined #ruby
raul782 has joined #ruby
bradleyprice has joined #ruby
drale2k has quit [Ping timeout: 256 seconds]
enilsen16 has joined #ruby
chouhoulis has quit [Ping timeout: 260 seconds]
h1fuelcell has quit [Ping timeout: 256 seconds]
jdawgaz has joined #ruby
raul782 has quit [Remote host closed the connection]
fullofcaffeine has quit [Remote host closed the connection]
dviola has quit [Quit: WeeChat 1.6]
raul782 has joined #ruby
bruce_lee has quit [Ping timeout: 240 seconds]
optiz0r has quit [Ping timeout: 258 seconds]
bruce_lee has joined #ruby
bruce_lee has joined #ruby
bruce_lee has quit [Changing host]
hahuang61 has quit [Ping timeout: 258 seconds]
bturker has joined #ruby
baweaver is now known as baweaver_away
jdawgaz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
leftpad has quit [Ping timeout: 250 seconds]
jdawgaz has joined #ruby
libastral has quit [Ping timeout: 256 seconds]
libastral has joined #ruby
dnicole has joined #ruby
c355e3b has quit [Quit: Connection closed for inactivity]
antoniobeyah has quit [Quit: antoniobeyah]
drale2k has joined #ruby
duderonomy has quit [Ping timeout: 258 seconds]
dnicole has quit [Ping timeout: 258 seconds]
fullofcaffeine has joined #ruby
brent__ has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
xall has joined #ruby
bturker has quit [Ping timeout: 256 seconds]
nankyokusei has joined #ruby
xall has quit [Ping timeout: 265 seconds]
fullofcaffeine has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
jaguarmagenta has joined #ruby
nankyokusei has quit [Ping timeout: 250 seconds]
ryan_notabot has quit [Quit: Leaving]
h1fuelcell has joined #ruby
fullofcaffeine has quit [Ping timeout: 250 seconds]
braincrash has quit [Ping timeout: 250 seconds]
jaguarmagenta has quit [Ping timeout: 240 seconds]
braincrash has joined #ruby
baweaver_away is now known as baweaver
hanmac has quit [Ping timeout: 240 seconds]
fullofcaffeine has joined #ruby
h1fuelcell has quit [Ping timeout: 265 seconds]
antoniobeyah has joined #ruby
bronson has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
bronson has quit [Ping timeout: 260 seconds]
herbmillerjr has quit [Quit: Konversation terminated!]
tau has quit [Quit: HUAHEA]
ramfjord has quit [Ping timeout: 250 seconds]
tubuliferous_ has joined #ruby
sp4rrow has joined #ruby
pawnbox has joined #ruby
tau has joined #ruby
herbmillerjr has joined #ruby
hanmac has joined #ruby
beilabs has joined #ruby
cdg has joined #ruby
hahuang61 has joined #ruby
enilsen16 has quit [Quit: enilsen16]
tubuliferous_ has quit [Ping timeout: 256 seconds]
astrobunny has quit [Remote host closed the connection]
hahuang61 has quit [Ping timeout: 250 seconds]
astrobunny has joined #ruby
Fire-Dragon-DoL has quit [Ping timeout: 250 seconds]
Fire-Dragon-DoL has joined #ruby
jenrzzz_ has joined #ruby
braincrash has quit [Quit: bye bye]
astrobunny has quit [Read error: Connection reset by peer]
astrobun_ has joined #ruby
dnicole has joined #ruby
blackwind_123 has quit [Ping timeout: 252 seconds]
jenrzzz has quit [Ping timeout: 248 seconds]
_djbkd has joined #ruby
Definity has joined #ruby
jenrzzz_ has quit [Ping timeout: 265 seconds]
dnicole has quit [Ping timeout: 258 seconds]
antoniobeyah has quit [Quit: antoniobeyah]
blackwind_123 has joined #ruby
XV8 has joined #ruby
bturker has joined #ruby
pwnd_nsfw has quit [Ping timeout: 240 seconds]
pwnd_nsfw` has joined #ruby
bturker has quit [Ping timeout: 256 seconds]
optiz0r has joined #ruby
boon_ has left #ruby [#ruby]
tubuliferous_ has joined #ruby
beilabs_ has joined #ruby
beilabs has quit [Ping timeout: 258 seconds]
pawnbox has quit [Remote host closed the connection]
blackwind_123 has quit [Ping timeout: 252 seconds]
h1fuelcell has joined #ruby
blackwind_123 has joined #ruby
h1fuelcell has quit [Ping timeout: 248 seconds]
arescorpio has quit [Quit: Leaving.]
hahuang65 has quit [Ping timeout: 240 seconds]
hahuang65 has joined #ruby
braincrash has joined #ruby
bronson has joined #ruby
astrobun_ has quit [Remote host closed the connection]
astrobunny has joined #ruby
blackwind_123 has quit [Ping timeout: 265 seconds]
bronson has quit [Ping timeout: 240 seconds]
djuber` has quit [Ping timeout: 268 seconds]
pawnbox has joined #ruby
blackwind_123 has joined #ruby
astrobun_ has joined #ruby
nankyokusei has joined #ruby
astrobunny has quit [Ping timeout: 265 seconds]
jdawgaz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jdawgaz has joined #ruby
splud has quit [Quit: splud]
nankyokusei has quit [Ping timeout: 268 seconds]
fullofcaffeine has quit [Remote host closed the connection]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
blackwind_123 has quit [Ping timeout: 250 seconds]
blackwind_123 has joined #ruby
gix has quit [Read error: Connection reset by peer]
hotpanca_ has joined #ruby
mBailey_j has joined #ruby
xall has joined #ruby
hotpancakes has quit [Ping timeout: 258 seconds]
howdoi has joined #ruby
gix has joined #ruby
hahuang61 has joined #ruby
pawnbox has quit [Remote host closed the connection]
antoniobeyah has joined #ruby
astrobun_ has quit [Remote host closed the connection]
mBailey_j has left #ruby ["WeeChat 1.6"]
astrobunny has joined #ruby
mattp_ has quit [Ping timeout: 245 seconds]
hahuang61 has quit [Ping timeout: 240 seconds]
mattp_ has joined #ruby
blackwind_123 has quit [Ping timeout: 265 seconds]
dnicole has joined #ruby
h1fuelcell has joined #ruby
blackwind_123 has joined #ruby
Devalo has joined #ruby
hotpancakes has joined #ruby
h1fuelcell has quit [Remote host closed the connection]
dnicole has quit [Ping timeout: 245 seconds]
jdawgaz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
hotpanca_ has quit [Ping timeout: 258 seconds]
arknemona has quit [Quit: SALETKEESYRAFLO]
jdawgaz has joined #ruby
cfec0b8d has joined #ruby
bturker has joined #ruby
Devalo has quit [Ping timeout: 245 seconds]
ckwik147 has joined #ruby
xall has quit [Ping timeout: 246 seconds]
h1fuelcell has joined #ruby
ckwik147 has quit [Client Quit]
bturker has quit [Ping timeout: 256 seconds]
PaschalsWager has joined #ruby
pawnbox has joined #ruby
blackwind_123 has quit [Ping timeout: 265 seconds]
h1fuelcell has quit [Ping timeout: 260 seconds]
Immune_ has joined #ruby
xall has joined #ruby
blackwind_123 has joined #ruby
blackbombay has quit [Ping timeout: 250 seconds]
jaguarmagenta has joined #ruby
immune has quit [Ping timeout: 246 seconds]
jdawgaz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
beilabs_ has quit [Read error: Connection reset by peer]
nchambers is now known as chambs
mistergibson has quit [Ping timeout: 248 seconds]
bronson has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
beilabs has joined #ruby
fullofcaffeine has joined #ruby
charliesome has joined #ruby
duderonomy has joined #ruby
bronson has quit [Ping timeout: 264 seconds]
blackbombay has joined #ruby
zapata has quit [Quit: WeeChat 1.6]
saneax-_-|AFK is now known as saneax
zapata has joined #ruby
jcomito has quit [Quit: WeeChat 1.5]
blackwind_123 has quit [Ping timeout: 265 seconds]
blackwind_123 has joined #ruby
whathappens has joined #ruby
A_Drone has joined #ruby
govg has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
jaguarmagenta has quit [Remote host closed the connection]
raul782_ has joined #ruby
raul782_ has quit [Remote host closed the connection]
raul782 has quit [Read error: Connection reset by peer]
moei has quit [Read error: Connection reset by peer]
raul782 has joined #ruby
moei has joined #ruby
jaguarmagenta has joined #ruby
nankyokusei has joined #ruby
whathappens has quit [Remote host closed the connection]
nankyokusei has quit [Ping timeout: 250 seconds]
dnicole has joined #ruby
fullofcaffeine has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
fullofcaffeine has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
Coldblackice has quit [Ping timeout: 260 seconds]
govg has quit [Ping timeout: 245 seconds]
Coldblackice has joined #ruby
dnicole has quit [Ping timeout: 258 seconds]
pawnbox has quit [Remote host closed the connection]
Dimik has quit [Ping timeout: 246 seconds]
minimalism has quit [Quit: minimalism]
xall has quit [Ping timeout: 258 seconds]
bturker has joined #ruby
cfec0b8d has quit [Ping timeout: 256 seconds]
Kazlock has joined #ruby
conta has joined #ruby
harfangk has joined #ruby
h1fuelcell has joined #ruby
bturker has quit [Ping timeout: 256 seconds]
_djbkd has quit [Remote host closed the connection]
_djbkd has joined #ruby
conta has quit [Ping timeout: 258 seconds]
agent_white has quit [Quit: backinnabit]
h1fuelcell has quit [Ping timeout: 268 seconds]
fullofcaffeine has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
Kazlock has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
fullofcaffeine has joined #ruby
_djbkd has quit [Ping timeout: 250 seconds]
JoshS has joined #ruby
blackwind_123 has quit [Ping timeout: 265 seconds]
araujo has quit [Quit: Leaving]
blackwind_123 has joined #ruby
fullofcaffeine has quit [Ping timeout: 256 seconds]
jaguarmagenta has quit [Read error: Connection reset by peer]
jaguarma_ has joined #ruby
bronson has joined #ruby
montanonic has quit [Ping timeout: 246 seconds]
jaguarma_ has quit [Remote host closed the connection]
djbkd_ has joined #ruby
antoniobeyah has quit [Quit: antoniobeyah]
bronson has quit [Ping timeout: 258 seconds]
futabachannel has joined #ruby
chouhoulis has joined #ruby
princehotpie has joined #ruby
naprimer_2 has quit [Quit: Leaving]
tubuliferous_ has quit [Ping timeout: 260 seconds]
montanonic has joined #ruby
chouhoulis has quit [Ping timeout: 258 seconds]
xall has joined #ruby
the_drow has joined #ruby
tubuliferous_ has joined #ruby
enterprisey has joined #ruby
last_staff has joined #ruby
hahuang61 has joined #ruby
xall has quit [Ping timeout: 268 seconds]
Immune__ has joined #ruby
Derderderd has quit [Ping timeout: 258 seconds]
tom8877 has quit [Quit: Connection closed for inactivity]
hahuang61 has quit [Ping timeout: 260 seconds]
andikr has joined #ruby
Immune_ has quit [Ping timeout: 240 seconds]
the_drow has quit [Quit: Leaving]
yaw has joined #ruby
djbkd_ has quit [Remote host closed the connection]
djbkd_ has joined #ruby
dnicole has joined #ruby
djbkd_ has quit [Remote host closed the connection]
djbkd_ has joined #ruby
sp4rrow has quit [Read error: Connection reset by peer]
sp4rrow has joined #ruby
dnicole has quit [Ping timeout: 240 seconds]
djbkd_ has quit [Ping timeout: 245 seconds]
bturker has joined #ruby
jaguarmagenta has joined #ruby
nowz has joined #ruby
raul782 has quit [Remote host closed the connection]
chip1 has joined #ruby
nankyokusei has joined #ruby
pawnbox has joined #ruby
h1fuelcell has joined #ruby
bturker has quit [Ping timeout: 256 seconds]
lacour has quit [Quit: Leaving]
tau has quit [Remote host closed the connection]
nankyokusei has quit [Ping timeout: 245 seconds]
h1fuelcell has quit [Ping timeout: 250 seconds]
Robtop__ has joined #ruby
conta has joined #ruby
nowz has quit [Read error: Connection reset by peer]
xall has joined #ruby
jaguarmagenta has quit [Remote host closed the connection]
nowz has joined #ruby
naprimer has joined #ruby
pwnd_nsfw` has quit [Ping timeout: 268 seconds]
aufi has joined #ruby
callenb has joined #ruby
ttilley has joined #ruby
ttilley has quit [Changing host]
ttilley has joined #ruby
jenrzzz has quit [Ping timeout: 258 seconds]
quazimodo has quit [Ping timeout: 250 seconds]
chip1 has quit [Quit: WeeChat 1.0.1]
hotpancakes has quit [Remote host closed the connection]
blackbombay has quit [Ping timeout: 258 seconds]
blackbombay has joined #ruby
PaschalsWager has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
SesMan has joined #ruby
callenb has left #ruby [#ruby]
Derderderd has joined #ruby
face has quit [Ping timeout: 246 seconds]
xall has quit [Ping timeout: 250 seconds]
kies has quit [Ping timeout: 258 seconds]
face has joined #ruby
dnicole has joined #ruby
quazimodo has joined #ruby
tekeli-li has quit [Ping timeout: 265 seconds]
Derderderd has quit [Ping timeout: 250 seconds]
nadir has quit [Quit: Connection closed for inactivity]
astrobunny has quit [Remote host closed the connection]
XV8 has quit [Read error: Connection reset by peer]
amclain has quit [Quit: Leaving]
Devalo has joined #ruby
djbkd_ has joined #ruby
princehotpie has quit [Remote host closed the connection]
dionysus69 has joined #ruby
bounb has quit [Ping timeout: 260 seconds]
XV8 has joined #ruby
xall has joined #ruby
bounb has joined #ruby
bounb has quit [Changing host]
bounb has joined #ruby
cfec0b8d has joined #ruby
Devalo has quit [Ping timeout: 260 seconds]
bturker has joined #ruby
kies has joined #ruby
sp4rrow has quit [Quit: The Internet needs a break and I need a cookie]
sp4rrow has joined #ruby
claudiuinberlin has joined #ruby
sp4rrow has quit [Client Quit]
lenwood has joined #ruby
jenrzzz has joined #ruby
sp4rrow has joined #ruby
TomyWork has joined #ruby
sp4rrow has quit [Client Quit]
sp4rrow has joined #ruby
aganov has joined #ruby
sp4rrow has quit [Client Quit]
sp4rrow has joined #ruby
sp4rrow has quit [Client Quit]
h1fuelcell has joined #ruby
sp4rrow has joined #ruby
sp4rrow has quit [Client Quit]
sp4rrow has joined #ruby
sp4rrow has quit [Client Quit]
sp4rrow has joined #ruby
sp4rrow has quit [Client Quit]
sp4rrow has joined #ruby
Tharbakim has quit [Ping timeout: 245 seconds]
sp4rrow has quit [Client Quit]
blaxter has joined #ruby
sp4rrow has joined #ruby
sp4rrow has quit [Client Quit]
sp4rrow has joined #ruby
bayed has joined #ruby
cibs has quit [Ping timeout: 268 seconds]
sp4rrow has quit [Client Quit]
XV9 has joined #ruby
h1fuelcell has quit [Ping timeout: 248 seconds]
XV8 has quit [Ping timeout: 250 seconds]
Tharbakim has joined #ruby
cibs has joined #ruby
xall has quit [Quit: WeeChat 1.5]
xall has joined #ruby
TomyWork has quit [Read error: Connection reset by peer]
TomyWork has joined #ruby
<xall> why would `bundle exec rspec` pass the entire suite but `bundle exec rspec spec/file_spec.rb` fail?
<xall> i intentionally removed a require_relative so it should fail
aupadhye has joined #ruby
djbkd_ has quit [Ping timeout: 268 seconds]
Alina-malina has quit [Ping timeout: 250 seconds]
<lizard2010> May be, it is because spec/file_spec.rb rely to results of some previous test?
bturker has quit [Ping timeout: 256 seconds]
<lizard2010> like prepare some specific data, or entity set.
jaguarmagenta has joined #ruby
nankyokusei has joined #ruby
<xall> lizard2010: nah
bronson has joined #ruby
mim1k|work has quit [Ping timeout: 248 seconds]
agent_white has joined #ruby
tubuliferous_ has quit [Ping timeout: 252 seconds]
agent_white has quit [Client Quit]
agent_white has joined #ruby
AnoHito_ has quit [Read error: Connection reset by peer]
AnoHito_ has joined #ruby
mim1k|work has joined #ruby
nankyokusei has quit [Ping timeout: 258 seconds]
Emers2n has joined #ruby
cdg has quit [Remote host closed the connection]
jaguarmagenta has quit [Ping timeout: 264 seconds]
bronson has quit [Ping timeout: 248 seconds]
teclator has quit [Read error: Connection reset by peer]
ragesoss has quit [Quit: No Ping reply in 180 seconds.]
<xall> does bundle exec handle requires?
ragesoss has joined #ruby
Alina-malina has joined #ruby
<dminuoso> xall: yes
<dminuoso> xall: Depending on what you specified in your Gemfile of course.
Cohedrin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<xall> dminuoso: thanks. is it common practice to check each test for missing requires? i imaginge there's a setting/easy way to do this?
bturker has joined #ruby
Chair has joined #ruby
cibs has quit [Ping timeout: 268 seconds]
jenrzzz has quit [Ping timeout: 264 seconds]
AnoHito has joined #ruby
cibs has joined #ruby
frozengeek_ has joined #ruby
hahuang61 has joined #ruby
AnoHito_ has quit [Ping timeout: 258 seconds]
jaruga___ has joined #ruby
govg has joined #ruby
aidalgol has joined #ruby
Silthias has quit [Ping timeout: 260 seconds]
XV9 has quit [Read error: Connection reset by peer]
Silthias has joined #ruby
XV8 has joined #ruby
vondruch has joined #ruby
Silthias1 has joined #ruby
jcao219 has quit [Ping timeout: 240 seconds]
hahuang61 has quit [Ping timeout: 258 seconds]
Salih has joined #ruby
nankyokusei has joined #ruby
Silthias has quit [Ping timeout: 248 seconds]
sparch has joined #ruby
sparch has joined #ruby
sparch has quit [Changing host]
Cohedrin has joined #ruby
nankyokusei has quit [Remote host closed the connection]
mark_66 has joined #ruby
enterprisey has quit [Remote host closed the connection]
byte512 has joined #ruby
Derderderd has joined #ruby
ddffg has joined #ruby
gbgdev has joined #ruby
Shashikant86 has joined #ruby
Silthias has joined #ruby
Derderderd has quit [Ping timeout: 268 seconds]
Silthias1 has quit [Ping timeout: 245 seconds]
xall has quit [Ping timeout: 252 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
koooge has quit [Quit: Leaving...]
hotpancakes has joined #ruby
ttilley has quit [Quit: Linkinus - http://linkinus.com]
mikecmpbll has joined #ruby
gbgdev has quit [Remote host closed the connection]
teclator has joined #ruby
nowz has quit [Read error: Connection reset by peer]
bturker has quit [Ping timeout: 256 seconds]
nowz has joined #ruby
Madplatypus has joined #ruby
eightbitraptor has joined #ruby
edwinvdgraaf has joined #ruby
Shashikant86 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
quazimodo has quit [Ping timeout: 250 seconds]
h1fuelcell has joined #ruby
SpiffTR has joined #ruby
ruby-lang432 has joined #ruby
<ruby-lang432> any good resource to practice oop?
<ytti> honestly, just code
<ytti> take existing project you've written in non OOP language
<ytti> and rewrite
<ruby-lang432> i don'nt how to create my own oop
<ruby-lang432> haha
<ruby-lang432> unless there are questions that i can do
<ytti> you do'ntknow how to create class and methods in ruby?
harfangk has quit [Quit: Textual IRC Client: www.textualapp.com]
<ytti> or you don't know how to make good OOP design?
<ruby-lang432> has i mean i know, but i don't know how to do my own set of program
<ytti> because latter is subjective
frozengeek_ has quit [Remote host closed the connection]
<ytti> think of reasonably modest scope of a program you write
frozengeek has joined #ruby
nofxxx has quit [Ping timeout: 248 seconds]
<ytti> divide it into several steps, start writing program that meets step 1
<ytti> step 1 could be nothing more than shebang and ensuring script is callable...
<ytti> but i believe people over-valuate and use lack of perfect document as an excuse not to write
<ytti> it's far easier to seek answer to specific well defined questions than subjective 'how you program X'
<ruby-lang432> oh
<ytti> and if you start writing a program and divide it into small problems, you will organically get lot of small well defined questions, which you can easily find answers to
<ytti> it'll be time consuming, but that's obviously cost of learning
<ruby-lang432> just like the code academy i love how they test you on oop
<ruby-lang432> i love it
<ruby-lang432> it challenges you to write program like those in code academy
<ruby-lang432> :)
nettoweb has joined #ruby
yaewa has joined #ruby
h1fuelcell has quit [Ping timeout: 248 seconds]
reverberations has joined #ruby
Gravious has joined #ruby
xall has joined #ruby
moei has quit [Ping timeout: 268 seconds]
jcao219 has joined #ruby
tubuliferous_ has joined #ruby
blackwind_123 has quit [Ping timeout: 265 seconds]
Shashikant86 has joined #ruby
<lizard2010> codewars?
the_drow has joined #ruby
blackwind_123 has joined #ruby
xall has quit [Ping timeout: 248 seconds]
h1fuelcell has joined #ruby
blaxter has quit [Quit: foo]
xall has joined #ruby
govg has quit [Ping timeout: 258 seconds]
tubuliferous_ has quit [Ping timeout: 256 seconds]
bturker has joined #ruby
jcao219 has quit [Ping timeout: 264 seconds]
hotpanca_ has joined #ruby
jaruga___ has quit [Quit: jaruga___]
jaxxstorm has joined #ruby
workmad3 has joined #ruby
<Gravious> codewars!
the_drow has quit [Quit: Leaving]
xall has quit [Ping timeout: 260 seconds]
xrlk has quit [Remote host closed the connection]
hotpancakes has quit [Ping timeout: 246 seconds]
rodfersou has joined #ruby
Beams has joined #ruby
Derderderd has joined #ruby
tvw has joined #ruby
ruby-lang432 has quit [Ping timeout: 260 seconds]
futabachannel has quit [Quit: Leaving...]
nankyokusei has joined #ruby
<Bish> when using Regexp.union is there some way to find out which of the regexes did do the match?
vuoto has joined #ruby
Derderderd has quit [Ping timeout: 246 seconds]
<herwin> you can add something like (?<identifier>) in the regex, this will add the key identifier to the matchdata-object
<herwin> but feels like a terrible hack
brent__ has quit [Quit: Connection closed for inactivity]
kies has quit [Ping timeout: 240 seconds]
toretore has joined #ruby
nankyokusei has quit [Ping timeout: 250 seconds]
pwnd_nsfw` has joined #ruby
Alina-malina has quit [Changing host]
Alina-malina has joined #ruby
<Bish> herwin: i know, i won't do it :D
<Bish> is there are clever way to check if 2 ranges intersect?
pawnbox has quit [Remote host closed the connection]
aidalgol has quit [Quit: zZzZZzZZzzzzz]
Robtop__ has quit [Ping timeout: 240 seconds]
nowz has quit [Remote host closed the connection]
pandaant has joined #ruby
QualityAddict has quit [Ping timeout: 252 seconds]
Cohedrin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
araujo has joined #ruby
Cohedrin has joined #ruby
Cohedrin has quit [Client Quit]
<manveru> without iterating both you mean?
<manveru> >> ([*(1..10)] & [*(5..15)]).any?
<ruby[bot]> manveru: # => true (https://eval.in/698995)
<manveru> is the lazy way for you
SpiffTR has quit [Quit: Leaving.]
<dminuoso> Bish: I don't think it would even make sense to have a Range#& - manveru's is the closest solution to what you might want.
<canton7> Bish, just check if one #include?s the start or end of the other
cfec0b8d has quit [Ping timeout: 240 seconds]
<dminuoso> canton7: That's assuming he has a numerical range.
<canton7> or a character range
hahuang61 has joined #ruby
<dminuoso> canton7: I have enough ranges in my application that would not work with your solution. ;-)
<manveru> there's also Range#bsearch now
jaxxstorm has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<canton7> dminuoso, howso? Maybe I'm missing something. Items in ranges have to implement <=>. If you have <=>, then you can test whether an item lies inside a range
<dminuoso> Mmmm.
<dminuoso> &ri Range#cover? Bish, canton7, manveru
<dminuoso> canton7: Yeah you are right now that I think about it.
<dminuoso> canton7: I was thinking about iterators
Ishido has joined #ruby
<canton7> dminuoso, wouldn't #include? be more accurate than #cover? here? I'm assuming that the two ranges are of the same type (which makes sense, I think, also given manveru's suggestion)
* dminuoso shrugfs
<dminuoso> I think I may be talking nonsense
hahuang61 has quit [Ping timeout: 258 seconds]
<manveru> can't think of a case where #cover? and #include? would return different results... though #cover? must be faster
tomphp has joined #ruby
<canton7> manveru, ("a".."z").cover?("yellow"), vs .include?("yellow")
<manveru> oO
<manveru> oh shit
<manveru> yeah
<dminuoso> canton7: good point
<manveru> alphabetical sorting...
jaxxstorm has joined #ruby
<manveru> heh
<manveru> >> ("0.1".."11.0").cover?("2.0")
<ruby[bot]> manveru: # => false (https://eval.in/699017)
jaguarmagenta has joined #ruby
<canton7> although - cover?'s probably a lot cheaper, and assuming the two ranges have the same type, it shouldn't matter much
<dminuoso> manveru: That is strange
bronson has joined #ruby
<canton7> makes sense, "2.0" is greater than both "0.1" and "11.0"
<dminuoso> Oh these are strings
<dminuoso> Caught me with my pants down
<manveru> >> "1.9".next
<ruby[bot]> manveru: # => "2.0" (https://eval.in/699027)
gbgdev has joined #ruby
SpiffTR has joined #ruby
gbgdev has quit [Read error: Connection reset by peer]
<manveru> so yeah, there's a mismatch between #<=> and #next for a lot of strings
gbgdev has joined #ruby
Shashikant86 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jaguarmagenta has quit [Ping timeout: 260 seconds]
bronson has quit [Ping timeout: 246 seconds]
manjaro-kde5_ has joined #ruby
<Bish> https://gist.github.com/anonymous/d4f8bf6d9891ada3d5c10c402edfdb99 please tell me there is an easier way to do this
<Bish> yes, i like tabs
<Bish> explaination: i want to have a method of String, that extracts all matches of regexes in a string, and gives me their positional information
<Bish> while these could overlap, i want the first regex to dominate the second one
lenwood has quit [Remote host closed the connection]
Shashikant86 has joined #ruby
<Bish> "here is a number: 3 here is a WORD3IN3CAPS".extract_with_regex(/[A-Z\d]+/,/\d+/) <= example
Shashikant86 has quit [Client Quit]
tvw has quit []
tvw has joined #ruby
<herwin> "while these could overlap, i want the first regex to dominate the second one" So you just want to loop through the regexes and return as soon as one matches?
<Bish> no, i want to remove ALL matches, to replace them with something else later
<Bish> so remove all matches, save information where i need to insert text later on, without destroying it
<Bish> with multiple regexes
<Bish> kinda like placeholders in strings
<Bish> also, is there good stuff in ruby to slice suff out of String EXCEPT FOR #slice
cyphase has quit [Ping timeout: 246 seconds]
<Bish> i don't want to s[a...b]+s[b..c]
<Bish> i don't want to s[a...b]+s[c...d] *
bturker has quit [Ping timeout: 256 seconds]
meshsmith has joined #ruby
tubuliferous_ has joined #ruby
cyphase_eviltwin has joined #ruby
xall has joined #ruby
<mikecmpbll> Bish : your example would be enhanced with what you expect that to output :p
Derderderd has joined #ruby
<Bish> mikecmpbll: hm?
triangles has joined #ruby
<mikecmpbll> [10:46:32] <Bish>"here is a number: 3 here is a WORD3IN3CAPS".extract_with_regex(/[A-Z\d]+/,/\d+/) <= example
<mikecmpbll> an example isn't very useful if we don't know what it's meant to do? unless i'm missing something
<Bish> yeah output would be here is a number: here is a "
<Bish> and a map, where to insert stuff
<Bish> yeah sorry, i know
vuoto has quit [Ping timeout: 250 seconds]
cyphase_eviltwin has quit [Ping timeout: 240 seconds]
xall has quit [Ping timeout: 245 seconds]
d0nn1e has quit [Ping timeout: 268 seconds]
d0nn1e has joined #ruby
maattdd has quit [Quit: WeeChat 1.5]
Derderderd has quit [Ping timeout: 264 seconds]
rodferso1 has joined #ruby
cyphase_eviltwin has joined #ruby
rodfersou has quit [Ping timeout: 252 seconds]
tubuliferous_ has quit [Ping timeout: 252 seconds]
nankyokusei has joined #ruby
<mikecmpbll> match_points("abc abc 123", /abc/) => [[0, 3], [4, 7]]
nankyokusei has quit [Ping timeout: 246 seconds]
maattdd has joined #ruby
jahmalz has joined #ruby
omphe has joined #ruby
mark_66 has quit [Remote host closed the connection]
rapha_ has joined #ruby
rapha_ has quit [Client Quit]
bturker has joined #ruby
SesMan has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
GodFather has quit [Quit: Ex-Chat]
GodFather has joined #ruby
rodferso1 is now known as rodfersou
GodFather has quit [Remote host closed the connection]
bturker has quit [Quit: Lost terminal]
GodFather has joined #ruby
dionysus69 has quit [Ping timeout: 240 seconds]
nettoweb has quit [Ping timeout: 245 seconds]
nettoweb1 has joined #ruby
claudiuinberlin has quit [Remote host closed the connection]
claudiuinberlin has joined #ruby
claudiuinberlin has quit [Ping timeout: 240 seconds]
Shashikant86 has joined #ruby
Derderderd has joined #ruby
jdawgaz has joined #ruby
Beams has quit [Quit: .]
jdawgaz has quit [Client Quit]
eggshke has joined #ruby
SpiffTR has quit [Quit: Leaving.]
Derderderd has quit [Ping timeout: 250 seconds]
marchelzo has joined #ruby
Beams has joined #ruby
manjaro-kde5_ has quit [Ping timeout: 248 seconds]
jenrzzz has quit [Ping timeout: 250 seconds]
Shashikant86 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
quazimodo has joined #ruby
Shashikant86 has joined #ruby
girobiro has joined #ruby
Shashikant86 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
pandaant has quit [Remote host closed the connection]
nankyokusei has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jenrzzz has joined #ruby
Freijo has joined #ruby
Freijo has quit [Client Quit]
claw has quit [Ping timeout: 250 seconds]
mikecmpb_ has joined #ruby
nankyokusei has quit [Ping timeout: 250 seconds]
mikecmpbll has quit [Ping timeout: 260 seconds]
Fernando-Basso has joined #ruby
raul782 has joined #ruby
raul782 has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 258 seconds]
SpiffTR has joined #ruby
hahuang61 has joined #ruby
hahuang61 has quit [Ping timeout: 246 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
nadir has joined #ruby
sdothum has joined #ruby
jaguarmagenta has joined #ruby
bronson has joined #ruby
gnufied has quit [Quit: Leaving]
claudiuinberlin has joined #ruby
jaguarmagenta has quit [Ping timeout: 258 seconds]
eggshke has quit []
bronson has quit [Ping timeout: 258 seconds]
meshsmith has quit [Remote host closed the connection]
prestorium has joined #ruby
manjaro-kde5_ has joined #ruby
claudiuinberlin has quit [Remote host closed the connection]
claudiuinberlin has joined #ruby
Burgestrand has joined #ruby
haxrbyte has joined #ruby
xall has joined #ruby
dionysus69 has joined #ruby
Coldblackice has quit [Ping timeout: 265 seconds]
SpiffTR has quit [Quit: Leaving.]
Madplatypus has quit [Quit: Connection closed for inactivity]
rwb has quit [Ping timeout: 250 seconds]
Derderderd has joined #ruby
banisterfiend has quit [Ping timeout: 246 seconds]
<Bish> mikecmpb_: no, more like this:
jdawgaz has joined #ruby
mikecmpb_ is now known as mikecmpbll
<Bish> p "here is a number: 3 here is a WORD3IN3CAPS".extract_with_regex(/[A-Z\d]+/,/\d+/) = ["here is a number: here is a ", [{18=>#<MatchData "3">, 29=>#<MatchData "WORD3IN3CAPS">}, {}]]
<Bish> bit this is still buggy
Emers2n has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
zenguy_pc has quit [Ping timeout: 245 seconds]
SpiffTR has joined #ruby
tubuliferous_ has joined #ruby
jdawgaz has quit [Client Quit]
SpiffTR has quit [Client Quit]
xall has quit [Ping timeout: 258 seconds]
Derderderd has quit [Ping timeout: 248 seconds]
cfec0b8d has joined #ruby
johnmilton has joined #ruby
synthroid has joined #ruby
hogetaro has joined #ruby
cyphase_eviltwin has quit [Ping timeout: 258 seconds]
millerti has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<aep_> anyone knows a helpdesk with good integration into ruby code?
claw has joined #ruby
haxrbyte has quit [Ping timeout: 264 seconds]
cyphase has joined #ruby
pwnd_nsfw has joined #ruby
pwnd_nsfw` has quit [Ping timeout: 240 seconds]
jaruga___ has joined #ruby
nankyokusei has joined #ruby
TheCubeLord has joined #ruby
jaguarmagenta has joined #ruby
jaguarmagenta has quit [Remote host closed the connection]
jdawgaz has joined #ruby
tubuliferous_ has quit [Ping timeout: 258 seconds]
codfection has joined #ruby
nankyokusei has quit [Ping timeout: 258 seconds]
workmad3 has quit [Ping timeout: 258 seconds]
n008f4g_ has joined #ruby
raul782 has joined #ruby
<manveru> hmm
<manveru> Bish: what you're describing is more or less a templating engine
<Bish> yes
<manveru> did you think about using StringScanner?
raul782 has quit [Ping timeout: 250 seconds]
jcao219 has joined #ruby
grenierm has joined #ruby
millerti has joined #ruby
jenrzzz has quit [Ping timeout: 258 seconds]
grenierm has quit [Client Quit]
antoniobeyah has joined #ruby
synthroid has quit [Remote host closed the connection]
tyang has joined #ruby
jcao219 has quit [Ping timeout: 250 seconds]
agent_white has quit [Quit: brb]
maloik has quit [Remote host closed the connection]
<manveru> here's how i'd do it
maloik has joined #ruby
blackbombay has quit [Ping timeout: 258 seconds]
cyphase has quit [Ping timeout: 250 seconds]
<manveru> oh, needs one more update
TheCubeLord has quit [Quit: F*** This S*** Im out!]
<manveru> or it'll be infinite loop if there's a newline
<manveru> updated the gist
ramortegui has joined #ruby
chihhsin has quit [Ping timeout: 268 seconds]
chihhsin has joined #ruby
cyphase has joined #ruby
sami has quit [Quit: Lost terminal]
ldnunes has joined #ruby
psychicist__ has joined #ruby
antoniobeyah has quit [Quit: antoniobeyah]
triangles has quit [Quit: Leaving]
beilabs has quit [Ping timeout: 258 seconds]
workmad3 has joined #ruby
nowhere_man has joined #ruby
beilabs has joined #ruby
nettoweb1 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
quazimodo has quit [Ping timeout: 246 seconds]
Derderderd has joined #ruby
eightbitraptor has quit [Ping timeout: 264 seconds]
xall has joined #ruby
rodfersou is now known as rodfersou|lunch
M-manveru has quit [Remote host closed the connection]
philidor[m] has quit [Remote host closed the connection]
M-travis has quit [Remote host closed the connection]
tobyn[m] has quit [Read error: Connection reset by peer]
h42r62[m] has quit [Read error: Connection reset by peer]
fladson[m] has quit [Read error: Connection reset by peer]
meaggan[m] has quit [Remote host closed the connection]
joanftt[m] has quit [Write error: Connection reset by peer]
Giphy[m] has quit [Remote host closed the connection]
laithshadeed[m] has quit [Read error: Connection reset by peer]
vma[m] has quit [Remote host closed the connection]
eliotk[m] has quit [Read error: Connection reset by peer]
kineticrootkit[m has quit [Read error: Connection reset by peer]
n[m] has quit [Remote host closed the connection]
Donalmartin[m] has quit [Read error: Connection reset by peer]
davix[matrix] has quit [Read error: Connection reset by peer]
coreyja[m] has quit [Remote host closed the connection]
tachyons[m] has quit [Remote host closed the connection]
serah[m] has quit [Read error: Connection reset by peer]
kp666[m] has quit [Read error: Connection reset by peer]
daveyboi[m] has quit [Read error: Connection reset by peer]
Michael5[m] has quit [Read error: Connection reset by peer]
jomakasi[m] has quit [Read error: Connection reset by peer]
velu_aon[m] has quit [Write error: Connection reset by peer]
multivac[m] has quit [Write error: Connection reset by peer]
riotgsmport[m] has quit [Write error: Connection reset by peer]
cpfeilschifter[m has quit [Write error: Connection reset by peer]
fjj[m] has quit [Write error: Connection reset by peer]
guanjian[m] has quit [Write error: Connection reset by peer]
quazimodo has joined #ruby
eightbitraptor has joined #ruby
pwnd_nsfw` has joined #ruby
ghostlight has quit [Ping timeout: 248 seconds]
Derderderd has quit [Ping timeout: 250 seconds]
xall has quit [Ping timeout: 264 seconds]
jdawgaz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
synthroid has joined #ruby
pwnd_nsfw has quit [Ping timeout: 240 seconds]
yaw has quit [Ping timeout: 250 seconds]
ghostlight has joined #ruby
dionysus69 has quit [Ping timeout: 260 seconds]
synthroi_ has joined #ruby
beilabs has quit [Ping timeout: 250 seconds]
Mon_Ouie has joined #ruby
tobyn[m] has joined #ruby
synthroid has quit [Ping timeout: 264 seconds]
gheegh_ has quit [Ping timeout: 252 seconds]
jdawgaz has joined #ruby
jdawgaz has quit [Client Quit]
JrdLtmr has quit [Quit: Textual IRC Client: www.textualapp.com]
nankyokusei has joined #ruby
jdawgaz has joined #ruby
girobiro has quit [Ping timeout: 250 seconds]
nowz has joined #ruby
jdawgaz has quit [Client Quit]
malconis has joined #ruby
rwb has joined #ruby
nankyokusei has quit [Ping timeout: 240 seconds]
dionysus69 has joined #ruby
nowhereman has joined #ruby
nowhere_man has quit [Ping timeout: 264 seconds]
Derderderd has joined #ruby
djbkd_ has joined #ruby
skweek has quit [Ping timeout: 248 seconds]
malconis has quit [Ping timeout: 252 seconds]
beilabs has joined #ruby
malconis has joined #ruby
malconis has quit [Client Quit]
tomphp has joined #ruby
quazimodo has quit [Ping timeout: 264 seconds]
hahuang61 has joined #ruby
quazimodo has joined #ruby
jdawgaz has joined #ruby
jhack has joined #ruby
gnufied has joined #ruby
hahuang61 has quit [Ping timeout: 258 seconds]
EdwardIII has left #ruby [#ruby]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
grenierm has joined #ruby
fullofcaffeine has joined #ruby
dionysus69 has quit [Ping timeout: 245 seconds]
DLSteve has joined #ruby
h1fuelcell has quit [Remote host closed the connection]
nowhereman has quit [Ping timeout: 258 seconds]
tdy has quit [Read error: Connection reset by peer]
Dimik has joined #ruby
bronson has joined #ruby
tomphp has joined #ruby
tdy has joined #ruby
hotpanca_ has quit [Ping timeout: 258 seconds]
beilabs has quit [Read error: Connection reset by peer]
beilabs_ has joined #ruby
Snowy has joined #ruby
Snowy is now known as IanBrady
griffindy has joined #ruby
pwnd_nsfw` has quit [Read error: Connection reset by peer]
pwnd_nsfw` has joined #ruby
bronson has quit [Ping timeout: 258 seconds]
tomphp has quit [Ping timeout: 260 seconds]
cyphase has quit [Ping timeout: 240 seconds]
eightbitraptor has quit [Ping timeout: 246 seconds]
aganov has quit [Quit: Leaving]
djbkd_ has quit [Ping timeout: 268 seconds]
banisterfiend has joined #ruby
claudiuinberlin has quit [Remote host closed the connection]
claudiuinberlin has joined #ruby
manjaro-kde5_ has quit [Ping timeout: 248 seconds]
brendan- has joined #ruby
nowhereman has joined #ruby
jschoolcraft has joined #ruby
claudiui_ has joined #ruby
eightbitraptor has joined #ruby
claudiuinberlin has quit [Remote host closed the connection]
nowz has quit [Quit: Leaving]
nettoweb has joined #ruby
cyphase has joined #ruby
aganov has joined #ruby
ruby-lang887 has joined #ruby
ruby-lang887 has quit [Client Quit]
cyphase has quit [Max SendQ exceeded]
Silthias has quit [Ping timeout: 264 seconds]
cyphase has joined #ruby
cyphase has quit [Max SendQ exceeded]
aganov has quit [Remote host closed the connection]
cyphase has joined #ruby
cyphase has quit [Max SendQ exceeded]
eightbitraptor has quit [Ping timeout: 250 seconds]
cyphase has joined #ruby
last_staff has quit [Quit: last_staff]
tau has joined #ruby
Bish has quit [Ping timeout: 250 seconds]
eightbitraptor has joined #ruby
ij has joined #ruby
Bish has joined #ruby
nowhere_man has joined #ruby
andrzeju_ has quit [Read error: Connection reset by peer]
andrzeju_ has joined #ruby
brendan- has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
Derderderd has quit [Ping timeout: 252 seconds]
Silthias has joined #ruby
frozengeek has quit [Remote host closed the connection]
nowhereman has quit [Ping timeout: 246 seconds]
frozengeek has joined #ruby
stan has quit [Quit: No Ping reply in 180 seconds.]
teotwaki has quit [Ping timeout: 245 seconds]
terens_ has quit [Remote host closed the connection]
quiqua has joined #ruby
JStoker has quit [Ping timeout: 245 seconds]
braincrash has quit [Ping timeout: 240 seconds]
canton7 has quit [Ping timeout: 245 seconds]
lupine has quit [Ping timeout: 245 seconds]
alexandernst has quit [Ping timeout: 245 seconds]
BackEndCoder_ has quit [Ping timeout: 245 seconds]
unreal has quit [Ping timeout: 245 seconds]
canton7 has joined #ruby
dviola has joined #ruby
JStoker has joined #ruby
BackEndCoder has joined #ruby
alexandernst has joined #ruby
alexandernst has joined #ruby
alexandernst has quit [Changing host]
teotwaki has joined #ruby
lupine has joined #ruby
quiqua has quit [Client Quit]
eightbitraptor has quit [Ping timeout: 252 seconds]
wonz has joined #ruby
<wonz> Hi together
ij has left #ruby ["WeeChat 1.6"]
<wonz> anybody here who would help me out with sockets and ftp-data transfer?
eightbitraptor has joined #ruby
nadir has quit []
govg has joined #ruby
griffindy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
marr has joined #ruby
nadir has joined #ruby
braincrash has joined #ruby
unreal has joined #ruby
<Burgestrand> ?anyone wonz
<ruby[bot]> wonz: Just ask your question, if anyone has, is or can, they will respond.
nankyokusei has joined #ruby
<wonz> I try to write a FTP client using sockets (in passive mode). So far i managed to get the cmds list, pwd, mkd, rmd, cdup, cwd.
ResidentBiscuit has joined #ruby
ResidentBiscuit has quit [Max SendQ exceeded]
<wonz> Now im stuck in uploading(stor)
eightbitraptor has quit [Ping timeout: 258 seconds]
ResidentBiscuit has joined #ruby
ResidentBiscuit has quit [Max SendQ exceeded]
<wonz> i get a "150 Ok to send data." from the server.
ResidentBiscuit has joined #ruby
ResidentBiscuit has quit [Max SendQ exceeded]
<adam12> Could it be firewall related? is PASV used for all the commands?
<wonz> And now i dont now how to send the file
ResidentBiscuit has joined #ruby
<wonz> yeah i use pasv for list, too
ResidentBiscuit has quit [Max SendQ exceeded]
ResidentBiscuit has joined #ruby
ResidentBiscuit has quit [Max SendQ exceeded]
tubuliferous_ has joined #ruby
ResidentBiscuit has joined #ruby
ResidentBiscuit has quit [Max SendQ exceeded]
teclator has quit [Remote host closed the connection]
nankyokusei has quit [Ping timeout: 256 seconds]
M-manveru has joined #ruby
bascht has joined #ruby
coreyja[m] has joined #ruby
M-shine has joined #ruby
kineticrootkit[m has joined #ruby
eliotk[m] has joined #ruby
philidor[m] has joined #ruby
daveyboi[m] has joined #ruby
Giphy[m] has joined #ruby
jomakasi[m] has joined #ruby
kp666[m] has joined #ruby
riotgsmport[m] has joined #ruby
n[m] has joined #ruby
Michael5[m] has joined #ruby
laithshadeed[m] has joined #ruby
meaggan[m] has joined #ruby
Xi[m] has joined #ruby
guanjian[m] has joined #ruby
M-travis has joined #ruby
multivac[m] has joined #ruby
velu_aon[m] has joined #ruby
fjj[m] has joined #ruby
davix[matrix] has joined #ruby
cpfeilschifter[m has joined #ruby
M-mistake has joined #ruby
cdg has joined #ruby
<wonz> and no, could not be a firewall issue. Client and Server are both running in VirtualBox NAT LAB and Firewalls are disabled. I see opened ports on Client and Server
Luca[m] has joined #ruby
h42r62[m] has joined #ruby
tachyons[m] has joined #ruby
vma[m] has joined #ruby
Donalmartin[m] has joined #ruby
joanftt[m] has joined #ruby
serah[m] has joined #ruby
drorp24[m] has joined #ruby
fladson[m] has joined #ruby
Definity has quit [Ping timeout: 256 seconds]
brendan- has joined #ruby
cdg has quit [Remote host closed the connection]
cdg has joined #ruby
jdawgaz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Salih has quit [Quit: Leaving]
araujo has quit [Quit: Leaving]
tekeli-li has joined #ruby
jdawgaz has joined #ruby
araujo has joined #ruby
araujo has joined #ruby
araujo has quit [Changing host]
KIDDIO has joined #ruby
<wonz> has anybody written or knows of a basic ftp client based on socket which i could have a look at? :D
<apeiros> Net::FTP from the stdlib
m1st3rwr0ng has joined #ruby
frozengeek has quit [Quit: frozengeek]
synthroi_ has quit [Remote host closed the connection]
malconis has joined #ruby
brendan- has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
jdawgaz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
symm has joined #ruby
<wonz> not sure if im able to understand Net::FTP. Im a still a newbie in coding. Something more rudimentary you know of?
jaxxstorm has quit [Remote host closed the connection]
Derderderd has joined #ruby
<marchelzo> does anyone know whay Array#each is implemented in ruby and not C in mruby?
<Papierkorb> wonz: If you want to learn how to write network code, as first project, FTP is a bit .. Not out of reach, but FTP is clumsy. Other popular protocols that are easier to get started with are HTTP or IRC
<wonz> Net::FTP == ../net/ftp.rb ?
grenierm has quit [Quit: grenierm]
tubuliferous_ has quit [Ping timeout: 248 seconds]
jdawgaz has joined #ruby
h1fuelcell has joined #ruby
<wonz> thx Papierkorb. I already tried my luck with http and was successfull
eightbitraptor has joined #ruby
<wonz> i wrote a simple ruby chat client/server, too
<wonz> but you are right, ftp is clumsy and perhaps it is yet out of reach
<wonz> for me
grenierm has joined #ruby
govg has quit [Ping timeout: 240 seconds]
<Papierkorb> wonz: I suggest then you implement HTTP or IRC (or some other text-based protocol you like), and then not build a "small test script" with it, but a 'proper' library to make it useful. This way you'll learn not only how sockets work, but also how to structure stuff so that it's actually useful
Derderderd has quit [Ping timeout: 265 seconds]
h1fuelcell has quit [Ping timeout: 248 seconds]
<wonz> @Papierkorb: Some advice which sources/books to read to prepare for that?
eightbitraptor has quit [Ping timeout: 265 seconds]
montanonic has quit [Ping timeout: 256 seconds]
yaewa has quit [Quit: Leaving...]
moei has joined #ruby
xall has joined #ruby
KIDDIO has quit [Quit: WeeChat 1.4]
<Papierkorb> wonz: I don't like books, so can't give you those. I learned most from the Qt framework (architecture wise), but that's C++. You could look at (semi-)popular mid-size gems, like `roda`. Though do know that there are often times no right or wrong, just something that's better for a specific use-case or mindset. Sure there are anti-patterns (these are things you should try to always avoid) which you can learn. I want to encourage you to build stuff
<Papierkorb> and learn from it. Do things, also do things wrong (anti-patterns). And always think before you write code.
<Papierkorb> wonz: For example, a consistent API is super important. consistent shit is still better than inconsistent sh.. :)
<Papierkorb> wonz: The point about doing things wrong is that people can tell you "don't do X", but then you've learned that you shouldn't do it, but you have NOT learned why
xall has quit [Ping timeout: 252 seconds]
<wonz> Papierkorb: thx i will have a look at some gems and try to understand them. After that i will try building my own stuff
raul782 has joined #ruby
<wonz> nevertheless i am f.. curios what i am doing wrong in my ftp-script ;-)
PaschalsWager has joined #ruby
raul782 has quit [Client Quit]
<tekeli-li> Papierkorb, Are those shared values of the ruby community, or just your opinions?
eightbitraptor has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
hotpancakes has joined #ruby
iMadper|Unhappy is now known as iMadper
<Papierkorb> tekeli-li: I'm not the ruby community, what I say here are always my opinions, which more often than not happen to reflect or be similar to the opinion or views of others in the community
konsolebox has joined #ruby
kuSuSE has joined #ruby
<elomatreb> What specifically do you mean? The point about consistency is pretty much valid in all programming contexts
fullofca_ has joined #ruby
<tekeli-li> Just wondering whether I should internalize these ideas to improve my interactions with ruby users.
<tekeli-li> I have my own biases, of course.
ddffg has quit [Quit: Leaving]
yardenbar has quit [Ping timeout: 248 seconds]
<Papierkorb> Well I simply gave won_z some advice which I think is reasonable. S/he may drop it, or try it, and may up ending liking or not liking it. In either case, s/he learned something valuable.
aufi has quit [Remote host closed the connection]
synthroid has joined #ruby
<tekeli-li> Specifically: "Do things, also do things wrong (anti-patterns)"
<tekeli-li> Polar opposite to accepted wisdom in some circles.
<Papierkorb> tekeli-li: I gave a reasoning on why shortly after
<elomatreb> Pretty standard practice for learning. If you do something wrong, you understand why it is wrong rather just being told not to do it
Devalo has joined #ruby
PaschalsWager has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<Papierkorb> It's like math. You can know that you can multiply a number, or you can know why and how it works, and thus understand what other things you can do with that
grenierm has quit [Quit: grenierm]
<tekeli-li> Not standard at all. In some programming communities experimentation is strongly discouraged. If a well tested solution exists, you're expected to use it.
<elomatreb> Well, for actual/production code the same goes in Ruby
<Papierkorb> Then I'm happy to not be part of such community
saneax is now known as saneax-_-|AFK
<Papierkorb> Yes elomatreb, for prod code this is different.
<Papierkorb> tekeli-li: Learning and research projects are completely different to production things
teclator has joined #ruby
synthroi_ has joined #ruby
<tekeli-li> I shall consider these ideas while I study more ruby.
houhoulis has joined #ruby
rodfersou|lunch is now known as rodfersou
Anonymoose2 has joined #ruby
synthroid has quit [Ping timeout: 258 seconds]
sepp2k has joined #ruby
lmc has joined #ruby
nankyokusei has joined #ruby
hotpanca_ has joined #ruby
wonz has left #ruby ["Leaving"]
reverberations has quit [Ping timeout: 258 seconds]
banisterfiend has quit [Ping timeout: 252 seconds]
fullofca_ has quit [Remote host closed the connection]
conta has quit [Ping timeout: 265 seconds]
shayan has joined #ruby
hotpancakes has quit [Ping timeout: 240 seconds]
fullofcaffeine has joined #ruby
nankyokusei has quit [Ping timeout: 258 seconds]
girobiro has joined #ruby
Ishido has quit [Read error: Connection reset by peer]
fullofcaffeine has quit [Ping timeout: 265 seconds]
jaguarmagenta has joined #ruby
blackwind_123 has quit [Ping timeout: 265 seconds]
Ishido has joined #ruby
fullofcaffeine has joined #ruby
blackwind_123 has joined #ruby
shinnya has joined #ruby
jdawgaz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
hotpancakes has joined #ruby
Kazlock has joined #ruby
hotpanca_ has quit [Read error: Connection reset by peer]
hahuang61 has joined #ruby
tpendragon has quit [Ping timeout: 240 seconds]
nettoweb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
synthroid has joined #ruby
JeanCarloMachado has joined #ruby
hahuang61 has quit [Ping timeout: 245 seconds]
synthroi_ has quit [Ping timeout: 256 seconds]
n008f4g_ has quit [Ping timeout: 258 seconds]
JeanCarloMachado has quit [Client Quit]
mikecmpbll has quit [Ping timeout: 250 seconds]
brianpWins has joined #ruby
hotpancakes has quit [Remote host closed the connection]
LuckyABA has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Guest71260 has quit [Quit: ZNC - http://znc.in]
fullofcaffeine has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
omphe has quit [Quit: Textual IRC Client: www.textualapp.com]
tubuliferous_ has joined #ruby
dviola has quit [Quit: WeeChat 1.6]
bronson has joined #ruby
diego2 has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
grenierm has joined #ruby
quazimodo has quit [Ping timeout: 248 seconds]
fullofcaffeine has joined #ruby
diego2 has quit [Changing host]
diego2 has joined #ruby
diego2 is now known as dviola
face has quit [Killed (karatkievich.freenode.net (Nickname regained by services))]
j3r0 has joined #ruby
[Butch] has joined #ruby
Guest98855 has joined #ruby
Derderderd has joined #ruby
m1st3rwr0ng has quit [Quit: Textual IRC Client: www.textualapp.com]
aryaching has joined #ruby
babblebre has joined #ruby
quazimodo has joined #ruby
bronson has quit [Ping timeout: 258 seconds]
IanBrady has quit [Quit: ragequit]
tubuliferous_ has quit [Ping timeout: 250 seconds]
jdawgaz has joined #ruby
tomphp has joined #ruby
giraffe has joined #ruby
Silthias has quit [Ping timeout: 240 seconds]
giraffe is now known as Guest17281
xall has joined #ruby
tpendragon has joined #ruby
cdg has quit []
cdg has joined #ruby
sharms has quit [Ping timeout: 250 seconds]
chambs is now known as nchambers
tomphp has quit [Ping timeout: 264 seconds]
LuckyABA has joined #ruby
lmc_ has joined #ruby
xall has quit [Ping timeout: 258 seconds]
jdawgaz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
houhoulis has quit [Remote host closed the connection]
phredus has joined #ruby
lmc has quit [Ping timeout: 252 seconds]
jdawgaz has joined #ruby
Chair has quit [Ping timeout: 258 seconds]
minimalism has joined #ruby
amclain has joined #ruby
claudiui_ has quit []
nowhere_man has quit [Ping timeout: 260 seconds]
muelleme has joined #ruby
nankyokusei has joined #ruby
muelleme has quit [Ping timeout: 250 seconds]
Sirithcam has joined #ruby
eightbitraptor has quit [Ping timeout: 250 seconds]
nankyokusei has quit [Ping timeout: 258 seconds]
bronson has joined #ruby
iMadper is now known as iMadper|Sleeping
cdg has quit [Remote host closed the connection]
Coldblackice has joined #ruby
cdg has joined #ruby
nowhere_man has joined #ruby
jaguarmagenta has quit [Remote host closed the connection]
grenierm has quit [Quit: grenierm]
bronson has quit [Ping timeout: 268 seconds]
grenierm has joined #ruby
grenierm has quit [Client Quit]
Kazlock has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rippa has joined #ruby
conta has joined #ruby
jhack has quit [Quit: jhack]
lmc_ has quit [Remote host closed the connection]
TomyWork has quit [Remote host closed the connection]
nowhere_man has quit [Ping timeout: 268 seconds]
Beams has quit [Quit: .]
lmc has joined #ruby
lmc has quit [Remote host closed the connection]
lmc has joined #ruby
dcluna has quit [Ping timeout: 265 seconds]
phredus has quit [Quit: Leaving]
lmc has quit [Ping timeout: 250 seconds]
duderonomy has quit [Ping timeout: 260 seconds]
cdg_ has joined #ruby
saslam has joined #ruby
SpiffTR has joined #ruby
cdg has quit [Read error: Connection reset by peer]
tildes has joined #ruby
psychicist__ has quit [Ping timeout: 245 seconds]
fullofcaffeine has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
Sirithcam has quit [Ping timeout: 252 seconds]
psychicist__ has joined #ruby
jaguarmagenta has joined #ruby
fullofcaffeine has quit [Ping timeout: 248 seconds]
conta has quit [Ping timeout: 258 seconds]
aupadhye has quit [Quit: Leaving]
jaguarmagenta has quit [Remote host closed the connection]
nikivi has joined #ruby
h1fuelcell has joined #ruby
_djbkd has joined #ruby
NET||abuse has quit [Quit: ZNC - http://znc.in]
Burgestrand has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
shinnya has quit [Ping timeout: 265 seconds]
SpiffTR has quit [Quit: Leaving.]
h1fuelcell has quit [Ping timeout: 248 seconds]
gbgdev_ has joined #ruby
fullofcaffeine has joined #ruby
Ishido has quit [Read error: Connection reset by peer]
gbgdev has quit [Ping timeout: 240 seconds]
Ishido has joined #ruby
nowhere_man has joined #ruby
zenguy_pc has joined #ruby
bigkevmcd has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
xall has joined #ruby
brianpWins has quit [Ping timeout: 246 seconds]
SpiffTR has joined #ruby
minimalism has quit [Quit: minimalism]
antoniobeyah has joined #ruby
xall has quit [Ping timeout: 268 seconds]
alexherbo2 has quit [Ping timeout: 268 seconds]
ruby-lang1994 has joined #ruby
brianpWins has joined #ruby
nankyokusei has joined #ruby
banisterfiend has joined #ruby
lmc has joined #ruby
ruby-lang1994 has quit [Client Quit]
ruby-lang535 has joined #ruby
nicoulaj has quit [Remote host closed the connection]
zenguy_pc has quit [Ping timeout: 258 seconds]
<ruby-lang535> Hello from Ukraine
jaguarmagenta has joined #ruby
nankyokusei has quit [Ping timeout: 252 seconds]
nettoweb has joined #ruby
zenguy_pc has joined #ruby
SeepingN has joined #ruby
gheegh has joined #ruby
nicoulaj has joined #ruby
enilsen16 has joined #ruby
psychicist__ has quit [Ping timeout: 248 seconds]
Devalo has quit [Remote host closed the connection]
ruby-lang535 has quit [Quit: Page closed]
Devalo has joined #ruby
splud has joined #ruby
psychicist__ has joined #ruby
edwinvdgraaf has quit [Remote host closed the connection]
Devalo has quit [Ping timeout: 256 seconds]
PaschalsWager has joined #ruby
Kazlock has joined #ruby
jdawgaz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
bronson has joined #ruby
jdawgaz has joined #ruby
bocaneri has quit [Read error: Connection reset by peer]
Silthias has joined #ruby
ByronJoh1son has joined #ruby
bronson has quit [Ping timeout: 250 seconds]
jahmalz has quit [Read error: Connection reset by peer]
marchelzo has quit [Ping timeout: 252 seconds]
ByronJohnson has quit [Ping timeout: 256 seconds]
Silthias1 has joined #ruby
hahuang61 has joined #ruby
Silthias1 has left #ruby [#ruby]
nowhere_man has quit [Ping timeout: 264 seconds]
Silthias has quit [Ping timeout: 265 seconds]
whathappens has joined #ruby
Devalo has joined #ruby
SpiffTR has quit [Quit: Leaving.]
berndl has joined #ruby
centrx has joined #ruby
centrx has joined #ruby
centrx has quit [Changing host]
maattdd has quit [Ping timeout: 250 seconds]
[Butch] has quit [Quit: I'm out . . .]
pen has joined #ruby
enilsen16 has quit [Quit: enilsen16]
Hink has quit [Ping timeout: 240 seconds]
[Butch] has joined #ruby
marchelzo has joined #ruby
jhack has joined #ruby
nankyokusei has joined #ruby
nankyokusei has quit [Remote host closed the connection]
pawnbox has joined #ruby
mikecmpbll has joined #ruby
nowhere_man has joined #ruby
prestorium has quit [Ping timeout: 240 seconds]
ixti has quit [Ping timeout: 248 seconds]
nowhere_man has quit [Remote host closed the connection]
girobiro has quit [Ping timeout: 265 seconds]
psychicist__ has quit [Ping timeout: 256 seconds]
shayan has quit [Quit: shayan]
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jenrzzz has joined #ruby
psychicist__ has joined #ruby
nowhere_man has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
chouhoulis has joined #ruby
fullofcaffeine has joined #ruby
Gravious has quit [Quit: Lost terminal]
cdg has joined #ruby
LuckyABA has quit [Ping timeout: 258 seconds]
jaguarma_ has joined #ruby
nicoulaj has quit [Remote host closed the connection]
jaguarmagenta has quit [Ping timeout: 240 seconds]
fullofca_ has joined #ruby
fullofcaffeine has quit [Ping timeout: 245 seconds]
cdg_ has quit [Ping timeout: 250 seconds]
nicoulaj has joined #ruby
xall has joined #ruby
govg has joined #ruby
hotpancakes has joined #ruby
prestorium has joined #ruby
dcluna has joined #ruby
pen has quit [Remote host closed the connection]
zenguy_pc has quit [Ping timeout: 258 seconds]
xall has quit [Ping timeout: 264 seconds]
jaruga___ has quit [Quit: jaruga___]
duderonomy has joined #ruby
cdg has quit [Ping timeout: 258 seconds]
xall has joined #ruby
dcluna has quit [Ping timeout: 250 seconds]
zenguy_pc has joined #ruby
SpiffTR has joined #ruby
hotpancakes has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 258 seconds]
jdawgaz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
enilsen16 has joined #ruby
Devalo has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 258 seconds]
Devalo has joined #ruby
JoshS has quit [Quit: Leaving]
TomyLobo has joined #ruby
Hink has joined #ruby
zenguy_pc has quit [Ping timeout: 250 seconds]
zenguy_pc has joined #ruby
enilsen16 has quit [Client Quit]
Devalo has quit [Ping timeout: 265 seconds]
h1fuelcell has joined #ruby
Devalo has joined #ruby
hotpancakes has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jenrzzz has joined #ruby
tau has quit [Remote host closed the connection]
enilsen16 has joined #ruby
h1fuelcell has quit [Ping timeout: 250 seconds]
konsolebox has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 265 seconds]
kuSuSE has quit [Quit: Konversation terminated!]
shayan has joined #ruby
dcluna has joined #ruby
Lord_of_Life has quit [Excess Flood]
ramfjord has joined #ruby
Lord_of_Life has joined #ruby
plantfood has joined #ruby
gbgdev_ has quit [Remote host closed the connection]
bigkevmcd has joined #ruby
bigkevmcd has quit [Client Quit]
Jackneill has joined #ruby
djbkd_ has joined #ruby
blackwind_123 has quit [Ping timeout: 246 seconds]
hotpancakes has quit [Remote host closed the connection]
jdawgaz has joined #ruby
jaguarma_ has quit [Remote host closed the connection]
sparch has quit [Ping timeout: 268 seconds]
djbkd_ has quit [Ping timeout: 248 seconds]
empty_cup has joined #ruby
hotpancakes has joined #ruby
<empty_cup> I've come across snippets of code that define object hierarchies in a do block, mostly made out of hashes, is there a term for that practice?
hotpancakes has quit [Remote host closed the connection]
govg has quit [Ping timeout: 260 seconds]
nullfxn has quit [Ping timeout: 258 seconds]
hotpancakes has joined #ruby
xall has quit [Ping timeout: 245 seconds]
TPug has joined #ruby
DLSteve has quit [Quit: All rise, the honorable DLSteve has left the channel.]
DLSteve has joined #ruby
xall has joined #ruby
sparch has joined #ruby
sparch has quit [Changing host]
sparch has joined #ruby
<empty_cup> it's a ruby dsl
<centrx> empty_cup: Example?
enilsen16 has quit [Quit: enilsen16]
DLSteve has quit [Client Quit]
enilsen16 has joined #ruby
<empty_cup> thing { has_a_thing { has_different_thing { key value\n key value\n } } }
frozengeek has joined #ruby
enilsen16 has quit [Client Quit]
<centrx> empty_cup: I would call that nested blocks
kies has joined #ruby
<centrx> or nested hashes
<centrx> or DSL as you said
<centrx> a particular DSL
ruby-lang201 has joined #ruby
<empty_cup> right, i need to read up on DSLs in general
<empty_cup> become more familiar with them
DLSteve has joined #ruby
<centrx> but general concept is called nesting
enilsen16 has joined #ruby
enilsen16 has quit [Client Quit]
ruby-lang201 has quit [Client Quit]
SpiffTR has quit [Quit: Leaving.]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
ResidentBiscuit has joined #ruby
ResidentBiscuit has quit [Max SendQ exceeded]
ResidentBiscuit has joined #ruby
ResidentBiscuit has quit [Max SendQ exceeded]
conta has joined #ruby
ResidentBiscuit has joined #ruby
nofxx has joined #ruby
alexherbo2 has joined #ruby
tfitts has quit [Quit: Connection closed for inactivity]
enilsen16 has joined #ruby
nettoweb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Devalo has quit [Remote host closed the connection]
fullofca_ has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
Devalo has joined #ruby
fullofcaffeine has joined #ruby
jenrzzz_ has joined #ruby
rodfersou has quit [Quit: leaving]
Fernando-Basso has quit [Quit: Leaving]
jenrzzz has quit [Ping timeout: 248 seconds]
Devalo has quit [Ping timeout: 252 seconds]
Cohedrin has joined #ruby
fullofcaffeine has quit [Ping timeout: 268 seconds]
minimalism has joined #ruby
dionysus69 has joined #ruby
dENNISZ has joined #ruby
Fernando-Basso has joined #ruby
nofxx has quit [Ping timeout: 246 seconds]
prestorium has quit [Quit: Leaving]
last_staff has joined #ruby
minimalism has quit [Client Quit]
minimalism has joined #ruby
bronson has joined #ruby
h1fuelcell has joined #ruby
shayan has quit [Quit: shayan]
pawnbox has quit [Remote host closed the connection]
shayan has joined #ruby
ldnunes has quit [Quit: Leaving]
pawnbox has joined #ruby
bradleyprice has quit [Remote host closed the connection]
babblebre has quit [Quit: Connection closed for inactivity]
bronson has quit [Ping timeout: 265 seconds]
h1fuelcell has quit [Ping timeout: 246 seconds]
alexherbo2 has quit [Ping timeout: 250 seconds]
nullfxn has joined #ruby
n008f4g_ has joined #ruby
byte512 has quit [Ping timeout: 250 seconds]
fullofcaffeine has joined #ruby
johnmilton has quit [Remote host closed the connection]
nikivi has quit [Quit: irc]
sparch has quit [Ping timeout: 250 seconds]
brendan- has joined #ruby
nankyokusei has joined #ruby
Devalo has joined #ruby
pawnbox has quit [Remote host closed the connection]
nofxx has joined #ruby
nofxx has quit [Changing host]
nofxx has joined #ruby
Kazlock has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nankyokusei has quit [Ping timeout: 256 seconds]
andikr has quit [Remote host closed the connection]
reverberations has joined #ruby
reverberations has quit [Client Quit]
TPug has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sepp2k1 has joined #ruby
brendan- has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
nekcode has joined #ruby
nekcode has left #ruby [#ruby]
sepp2k has quit [Ping timeout: 264 seconds]
gbgdev has joined #ruby
Ishido has quit [Quit: Roads? Where We're Going We Don't Need Roads.]
Devalo has quit [Remote host closed the connection]
beilabs_ has quit [Remote host closed the connection]
beilabs has joined #ruby
Devalo has joined #ruby
beilabs has quit [Remote host closed the connection]
beilabs has joined #ruby
Devalo has quit [Ping timeout: 250 seconds]
beilabs has quit [Read error: No route to host]
beilabs has joined #ruby
brent__ has joined #ruby
bradleyprice has joined #ruby
codfection has quit [Remote host closed the connection]
symm has quit [Quit: Leaving...]
nikivi has joined #ruby
beilabs has quit [Remote host closed the connection]
beilabs has joined #ruby
gheegh has quit [Ping timeout: 248 seconds]
beilabs has quit [Ping timeout: 264 seconds]
Madplatypus has joined #ruby
chouhoulis has quit [Remote host closed the connection]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
Kazlock has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
bayed has quit [Quit: Connection closed for inactivity]
xall has quit [Ping timeout: 250 seconds]
plantfood has quit [Quit: Leaving]
hotpanca_ has joined #ruby
tvw has quit []
vuoto has joined #ruby
JoshS has joined #ruby
howdoi has quit [Quit: Connection closed for inactivity]
hotpancakes has quit [Ping timeout: 245 seconds]
jdawgaz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
rwb has quit [Ping timeout: 240 seconds]
rjungemann has joined #ruby
reverberations has joined #ruby
jenrzzz_ has quit [Ping timeout: 258 seconds]
jenrzzz has joined #ruby
TPug has joined #ruby
Anonymoose2 has quit [Ping timeout: 265 seconds]
jdawgaz has joined #ruby
pwnd_nsfw has joined #ruby
yardenbar has joined #ruby
pwnd_nsfw` has quit [Ping timeout: 258 seconds]
nikivi has quit [Quit: irc]
pawnbox has joined #ruby
h1fuelcell has joined #ruby
conta has quit [Ping timeout: 248 seconds]
fullofcaffeine has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
_djbkd has quit [Remote host closed the connection]
_djbkd has joined #ruby
_djbkd has quit [Read error: Connection reset by peer]
dionysus69 has quit [Ping timeout: 258 seconds]
_djbkd has joined #ruby
beilabs has joined #ruby
cdg has joined #ruby
<Synthead> I can assign "a" to a and b by doing a = b = "a". Can I do something similar with += ? i.e. (example that doesn't work!) a += b += "I am appended to a and b"
h1fuelcell has quit [Ping timeout: 260 seconds]
Devalo has joined #ruby
fullofcaffeine has quit [Ping timeout: 248 seconds]
<Zarthus> not quite as lovely, but maybe `a, b = a + 50, a`
* Zarthus has no idea if that works
<Synthead> really clever, but it kind of makes an example of how hacky this is anyway
<Zarthus> I can't say I know of a scenario where I've needed this :)
<Synthead> two lines of code is more readable :)
<Zarthus> I prefer splitting it over two lines myself, yeah :P
skweek has joined #ruby
<Zarthus> You can extend += or write a separate method, if you really prefer
<Zarthus> the former probably is going to really mess with your collaborators :P
nowhere_man has quit [Ping timeout: 258 seconds]
<Synthead> yeah, not about to venture there, hah
<Synthead> thought I'd ask... never know with ruby sometimes :)
<Zarthus> I would ask "what did I write to get me in this situation to require this in the first place", myself :P
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
hotpancakes has joined #ruby
swills has quit [Read error: Connection reset by peer]
jaguarmagenta has joined #ruby
vuoto has quit [Remote host closed the connection]
swills has joined #ruby
hotpanca_ has quit [Read error: Connection reset by peer]
nettoweb has joined #ruby
tildes has quit [Ping timeout: 268 seconds]
Devalo has quit [Ping timeout: 246 seconds]
fullofcaffeine has joined #ruby
shayan has quit [Quit: shayan]
_djbkd has quit [Remote host closed the connection]
frozengeek has quit [Quit: frozengeek]
GodFather has quit [Quit: Ex-Chat]
enterprisey has joined #ruby
sp4rrow has joined #ruby
_djbkd has joined #ruby
GodFather has joined #ruby
sp4rrow has quit [Client Quit]
<wnd> at least a += b += 'foo' behaves as I'd expect (with nils and initialised values)
pwnd_nsfw` has joined #ruby
_djbkd has quit [Read error: Connection reset by peer]
chouhoulis has joined #ruby
_djbkd has joined #ruby
psychicist__ has quit [Ping timeout: 240 seconds]
pwnd_nsfw has quit [Ping timeout: 258 seconds]
pen has joined #ruby
jdawgaz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
marchelzo has quit [Quit: WeeChat 1.4]
zenspider has quit [Changing host]
zenspider has joined #ruby
jdawgaz has joined #ruby
<zenspider> wnd: what do you expect it to do?
<zenspider> I look at that and I have no idea how stuff will (or should) play out
<zenspider> turns out: s(:lasgn, :a, s(:call, s(:lvar, :a), :+, s(:lasgn, :b, s(:call, s(:lvar, :b), :+, s(:lit, 1)))))
harai_ has joined #ruby
<zenspider> but if those lvars are methods?? *shrug*
sp4rrow has joined #ruby
bradleyprice has quit [Ping timeout: 265 seconds]
jenrzzz has quit [Ping timeout: 258 seconds]
nikivi has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
pawnbox has quit [Remote host closed the connection]
GinoManWrx has quit [Read error: Connection reset by peer]
ascarter has joined #ruby
synthroid has quit []
catbusters__ has joined #ruby
catbusters__ has quit [Client Quit]
fullofcaffeine has quit [Ping timeout: 240 seconds]
pawnbox has joined #ruby
<wnd> I'd expect b += 'foo' to be evaluated first and to return "#{b}foo" (assuming b is a string), which would then be concatenated to a (assuming a is a string)
hotpancakes has quit [Remote host closed the connection]
doubleemms has joined #ruby
hotpancakes has joined #ruby
SpiffTR has joined #ruby
<zenspider> I think this found a bug in ruby_parser tho... it needs `self.` in order to hit op_asgn, but I think it should hit it if they're not known locals
sp4rrow has quit [Quit: The Internet needs a break and I need a cookie]
jaguarmagenta has quit [Remote host closed the connection]
ramfjord_ has joined #ruby
A124 has quit [Quit: '']
rakm has joined #ruby
<wnd> of course I should've said "with strings, behaves as I'd expect"
rwb has joined #ruby
ramfjord has quit [Ping timeout: 260 seconds]
A124 has joined #ruby
fullofcaffeine has joined #ruby
pwnd_nsfw` has quit [Ping timeout: 246 seconds]
nankyokusei has joined #ruby
chouhoulis has quit [Remote host closed the connection]
pawnbox has quit [Remote host closed the connection]
nikivi has quit [Quit: irc]
jenrzzz has joined #ruby
pwnd_nsfw has joined #ruby
bronson has joined #ruby
pawnbox has joined #ruby
jdawgaz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
chouhoul_ has joined #ruby
h1fuelcell has joined #ruby
hotpancakes has quit [Ping timeout: 258 seconds]
jdawgaz has joined #ruby
nankyokusei has quit [Ping timeout: 248 seconds]
SpiffTR has quit [Quit: Leaving.]
sp4rrow has joined #ruby
bronson has quit [Ping timeout: 260 seconds]
minimalism has quit [Ping timeout: 250 seconds]
h1fuelcell has quit [Ping timeout: 256 seconds]
minimalism has joined #ruby
pwnd_nsfw` has joined #ruby
skweek has quit [Ping timeout: 268 seconds]
last_staff has quit [Read error: Connection reset by peer]
pwnd_nsfw has quit [Ping timeout: 245 seconds]
nikivi has joined #ruby
blackbombay has joined #ruby
GodFather has quit [Ping timeout: 240 seconds]
last_staff has joined #ruby
GodFather has joined #ruby
frozengeek has joined #ruby
frozengeek has quit [Remote host closed the connection]
shayan has joined #ruby
tubuliferous_ has joined #ruby
ramortegui has quit [Quit: Ex-Chat]
<shayan> hey sorry for this rando message but does anyone know the command to make this pop-up to stophttp://imgur.com/a/hEfbj
<shayan> i don’t even own the account, so there is not even a way for me to log in… and yet everytime i log into my irc app, it keeps asking me for it
lmc has quit [Quit: Leaving...]
<Zarthus> shadeslayer: sounds like a textual feature that picks up on 'You must identify to this account' from nickserv.
<Zarthus> You /could/ use SASL-authentication on a different account to ensure you're logged in so nickserv no longer sends that. Which is a workaround.
<Zarthus> fwiw, #textual exists.
enterprisey has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 256 seconds]
ascarter has quit [Quit: Textual IRC Client: www.textualapp.com]
blackbombay has quit [Ping timeout: 245 seconds]
h1fuelcell has joined #ruby
chouhoul_ has quit [Read error: Connection reset by peer]
h1fuelcell has quit [Ping timeout: 265 seconds]
Kazlock has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<zenspider> wnd: type shouldn't matter as long as it has #+ defined
<zenspider> shayan: it's saying that you're using a registered nick. if it isn't YOUR registered nick, then you should change what you're going by with `/nick newnick`.
toretore has quit [Ping timeout: 250 seconds]
<zenspider> you can also `/msg nickserv help`
<shayan> zenspider: thnx so much, will try that right now
jdawgaz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ResidentBiscuit has quit [Read error: Connection reset by peer]
jenrzzz has joined #ruby
<shayan> zenspider: it says can’t use my new nick because it’s taken on freenode.net, however i believe that it is mine as i registered it some months ago
<Zarthus> oh, I highlighted the wrong person.
<shayan> zenspider: even though i log in with my registered username, it still gives me the popup for the username that i don’t even use :@
jdawgaz has joined #ruby
mwlang has joined #ruby
Devalo has joined #ruby
chouhoulis has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Jackneill has quit [Remote host closed the connection]
ascarter has joined #ruby
Devalo has joined #ruby
frozengeek has joined #ruby
KnownSyntax has quit [Ping timeout: 252 seconds]
Definity has joined #ruby
shayan is now known as lololol
lololol is now known as shayan
KnownSyntax has joined #ruby
hotpancakes has joined #ruby
exchgr has quit [Quit: ZNC - http://znc.in]
malconis has quit [Read error: Connection reset by peer]
minimalism has quit [Ping timeout: 258 seconds]
Devalo has quit [Ping timeout: 265 seconds]
jenrzzz has quit [Ping timeout: 250 seconds]
gnufied has quit [Remote host closed the connection]
exchgr has joined #ruby
jenrzzz has joined #ruby
minimalism has joined #ruby
Sembei has quit [Read error: Connection reset by peer]
andybernard has joined #ruby
Sembei has joined #ruby
roychri has joined #ruby
SpiffTR has joined #ruby
tubuliferous_ has quit [Ping timeout: 258 seconds]
_djbkd has quit [Quit: My people need me...]
Kazlock has joined #ruby
centrx has quit [Remote host closed the connection]
KnownSyntax has quit [Ping timeout: 260 seconds]
istrasci has joined #ruby
KnownSyntax has joined #ruby
<istrasci> Can someone please explain the difference between TypeError and ArgumentError?
pawnbox has quit [Remote host closed the connection]
c355e3b has joined #ruby
jshjsh has joined #ruby
yardenbar has quit [Ping timeout: 268 seconds]
Anonymoose2 has joined #ruby
hahuang61 has quit [Ping timeout: 258 seconds]
JoshS has quit [Ping timeout: 268 seconds]
reverberations has quit [Ping timeout: 258 seconds]
SCHAAP137 has quit [Quit: ZNC - http://znc.in]
Qommand0r has quit [Quit: WeeChat 1.6]
SpiffTR has quit [Quit: Leaving.]
workmad3 has joined #ruby
saneax-_-|AFK is now known as saneax
SCHAAP137 has joined #ruby
freemac136 has joined #ruby
andybernard has quit []
bradleyprice has joined #ruby
berndl has quit [Ping timeout: 258 seconds]
_djbkd has joined #ruby
kith_ has quit [Read error: Connection reset by peer]
nikivi has quit [Quit: irc]
Kazlock has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rgiscard has joined #ruby
ramfjord_ has quit [Ping timeout: 245 seconds]
bradleyprice has quit [Ping timeout: 246 seconds]
chouhoulis has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 258 seconds]
jenrzzz has quit [Ping timeout: 260 seconds]
chouhoulis has joined #ruby
Azure has joined #ruby
QualityAddict has joined #ruby
bradleyprice has joined #ruby
saslam has quit [Ping timeout: 268 seconds]
ramfjord has joined #ruby
bradleyprice has quit [Ping timeout: 240 seconds]
Lord_of_Life has quit [Excess Flood]
whathappens has quit [Quit: Leaving...]
jasonb has left #ruby ["Leaving"]
TomyLobo has quit [Ping timeout: 260 seconds]
Lord_of_Life has joined #ruby
callenb1 has joined #ruby
grenierm has joined #ruby
jenrzzz has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
centrx has joined #ruby
centrx has joined #ruby
centrx has quit [Changing host]
shayan has quit [Quit: shayan]
shayan__ has joined #ruby
<shayan__> yo
grenierm has quit [Quit: grenierm]
shayan__ is now known as shayan_
hightower3 has joined #ruby
shayan_ has quit [Quit: shayan_]
shayan_ has joined #ruby
grenierm has joined #ruby
hightower2 has quit [Ping timeout: 248 seconds]
fullofcaffeine has quit [Remote host closed the connection]
Qommand0r has joined #ruby
fullofcaffeine has joined #ruby
DLSteve has quit [Quit: All rise, the honorable DLSteve has left the channel.]
bradleyp_ has joined #ruby
Fernando-Basso has quit [Quit: WeeChat 1.6]
postmodern has joined #ruby
fullofcaffeine has quit [Ping timeout: 240 seconds]
_djbkd has quit [Remote host closed the connection]
tyang has quit [Read error: Connection reset by peer]
mikecmpbll has quit [Quit: inabit. zz.]
pwnd_nsfw has joined #ruby
_djbkd has joined #ruby
nankyokusei has joined #ruby
ramfjord has quit [Ping timeout: 258 seconds]
pwnd_nsfw` has quit [Ping timeout: 250 seconds]
malconis has joined #ruby
tubuliferous_ has joined #ruby
enterprisey has joined #ruby
TPug has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
_djbkd has quit [Ping timeout: 250 seconds]
cfec0b8d has quit [Ping timeout: 252 seconds]
UserJosh has joined #ruby
pwnd_nsfw has quit [Read error: Connection reset by peer]