havenwood changed the topic of #ruby to: Rules & more: https://ruby-community.com | Ruby 2.5.3, 2.4.5, 2.3.8, 2.6.0-preview3: https://www.ruby-lang.org | Paste 4+ lines of text to https://dpaste.de/ and select ruby as the language | Rails questions? Ask in #RubyOnRails | Books: https://goo.gl/wpGhoQ | Logs: https://irclog.whitequark.org/ruby | Can't talk? Register/identify with Nickserv first!
bmurt has joined #ruby
sgen has joined #ruby
alicef has quit [Ping timeout: 246 seconds]
Exuma has quit [Quit: Textual IRC Client: www.textualapp.com]
Exuma has joined #ruby
alicef has joined #ruby
knight33_ has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Exuma has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cow[moo] has joined #ruby
nicesignal has quit [Remote host closed the connection]
nicesignal has joined #ruby
smutnysy1 has joined #ruby
phaul has quit [Ping timeout: 272 seconds]
sgen has quit [Ping timeout: 264 seconds]
smutnysy1 has quit [Read error: Connection reset by peer]
smutnysy1 has joined #ruby
queip has quit [Read error: Connection reset by peer]
paulscoder has joined #ruby
queip has joined #ruby
alicef has quit [Ping timeout: 246 seconds]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
smutnysy1 has quit [Quit: WeeChat 2.2]
alicef has joined #ruby
cow[moo] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
DTZUZO has joined #ruby
Freshnuts has quit [Quit: Leaving]
galaxie has joined #ruby
<galaxie> Should I take this seriously anymore? https://sakurity.com/blog/2015/02/28/openuri.html
<galaxie> Is there a way to call OpenURI#open directly? It's listed as a private method.
arescorpio has joined #ruby
<woodruffw> galaxie: `require 'open-uri'; open('https://whatever')` doesn't work?
Exuma has joined #ruby
lupine has quit [Ping timeout: 260 seconds]
paulscoder has quit [Quit: paulscoder]
<galaxie> woodruff: It does, but RuboCop says it's a security hazard and while I don't think it might make a difference, I'd rather not get those annoying messages when they aren't relevant.
queip has quit [Read error: Connection reset by peer]
DTZUZO has quit [Read error: Connection reset by peer]
jrhorn424_away has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
DTZUZO has joined #ruby
queip has joined #ruby
lupine has joined #ruby
<nchambers> what about net/http?
<galaxie> nchambers: It's an idea, but it's also more low-level. I'm a bit lazy.
<nchambers> ah
<nchambers> fwiw, i cheat and use this: https://jhawthorn.github.io/curl-to-ruby/
<galaxie> How would I monkeypatch rand() so that every object uses the new method? I'm trying to monkeypatch Kernel#rand and that works but it does not carry over to rand().
gnufied has quit [Quit: Leaving]
elphe has quit [Ping timeout: 244 seconds]
knight33_ has joined #ruby
elphe has joined #ruby
queip has quit [Read error: Connection reset by peer]
jgpawletko has joined #ruby
elphe has quit [Ping timeout: 245 seconds]
arescorpio has quit [Ping timeout: 240 seconds]
<woodruffw> galaxie: yeah, that's a problem with `open-uri` as a whole. as nchambers mentioned, net/http is probably the right way to go
<woodruffw> FWIW, using `net/http` is as simple as this: `Net::HTTP.get(URI(your_url))`
<woodruffw> that returns a `String` containing just the response body
<woodruffw> ref for open-uri being generally dangerous: https://sakurity.com/blog/2015/02/28/openuri.html
queip has joined #ruby
<galaxie> woodruffw: Hmm, OK. How easy to set a user-agent?
<woodruffw> galaxie: for that, you'll need to create a `Net::HTTP::Get` object, i think. that object can then be treated like a hash to add headers, e.g. `foo['X-Whatever'] = 'bar'`
<woodruffw> in terms of personal choice, that's where i'd switch to `httparty` or another gem for simplicity, unless it's just a short script
jetchisel has quit [Ping timeout: 272 seconds]
elphe has joined #ruby
jetchisel has joined #ruby
elphe has quit [Ping timeout: 244 seconds]
gix has quit [Ping timeout: 268 seconds]
elphe has joined #ruby
_whitelogger has joined #ruby
jrhorn424 has joined #ruby
evdubs_ has joined #ruby
ptx0 has quit [Ping timeout: 246 seconds]
evdubs has quit [Ping timeout: 276 seconds]
arescorpio has joined #ruby
arescorpio has quit [Max SendQ exceeded]
jrhorn424 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tag has joined #ruby
arescorpio has joined #ruby
howdoicomputer has joined #ruby
knight33_ has quit [Quit: Textual IRC Client: www.textualapp.com]
Arkantos has joined #ruby
AJA4350 has quit [Quit: AJA4350]
Exuma has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Exuma has joined #ruby
arescorpio has quit [Remote host closed the connection]
Exuma has quit [Client Quit]
Exuma has joined #ruby
braincrash has quit [Quit: bye bye]
braincrash has joined #ruby
awkwords has joined #ruby
cd has joined #ruby
justicefries has joined #ruby
justicefries has left #ruby [#ruby]
<nchambers> So I wrote an each method for my class, but I'd like to return an enumerator if no block is given. Is there a good article or doc on how to define an enumerator for your class?
queip has quit [Read error: Connection reset by peer]
_whitelogger has joined #ruby
<havenwood> nchambers: return enum_for __method__ unless block_given?
<havenwood> nchambers: If you know the size of the Enumerator, you might want to also provide a lazily calculated size to your enum.
<nchambers> great thank you!
<nchambers> and no i don't :c
<nchambers> what is enum_for?
<havenwood> nchambers: an alias for #to_enum
<nchambers> ah
<havenwood> nchambers: and `__method__` is just `:each`
<havenwood> nchambers: just a little more resilient to method name changes
<nchambers> oh ok
<nchambers> thanks!
<havenwood> no prob, you're welcome!
queip has joined #ruby
<havenwood> for a lazily calculated size of 2, for example: return enum_for(__method__) { 2 } unless block_given?
_whitelogger has joined #ruby
elphe has quit [Ping timeout: 240 seconds]
<woodruffw> woah, i had no idea __method__ or __callee__ existed
Exuma has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ivanskie has joined #ruby
Exuma has joined #ruby
elphe has joined #ruby
Arkantos has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Exuma has quit [Client Quit]
RougeR has joined #ruby
MoritaShinobu has joined #ruby
houhoulis has quit [Remote host closed the connection]
luminous has joined #ruby
irdr has quit [Remote host closed the connection]
BTRE has joined #ruby
dviola has quit [Quit: WeeChat 2.3]
irdr has joined #ruby
queip has quit [Read error: Connection reset by peer]
patr0clus has joined #ruby
queip has joined #ruby
patr0clus is now known as s3nd1v0g1us
ivanskie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
RougeR has quit [Ping timeout: 272 seconds]
ivanskie has joined #ruby
FrankD has joined #ruby
elphe has quit [Ping timeout: 272 seconds]
_whitelogger has joined #ruby
tag has quit [Quit: Connection closed for inactivity]
elphe has joined #ruby
rippa has joined #ruby
elphe has quit [Ping timeout: 268 seconds]
awkwords has quit [Quit: sleepy time]
queip has quit [Read error: Connection reset by peer]
s3nd1v0g1us has quit [Quit: WeeChat 2.1]
queip has joined #ruby
ivanskie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
_whitelogger has joined #ruby
kapil____ has joined #ruby
elphe has joined #ruby
reber has joined #ruby
elphe has quit [Ping timeout: 272 seconds]
ss_much has quit [Quit: Connection closed for inactivity]
conta has joined #ruby
whysthatso has joined #ruby
elphe has joined #ruby
yohji has joined #ruby
yohji has quit [Remote host closed the connection]
samort7 has quit [Read error: Connection reset by peer]
mochiyoda has quit [Ping timeout: 252 seconds]
reber__ has joined #ruby
reber has quit [Ping timeout: 246 seconds]
elphe has quit [Ping timeout: 245 seconds]
howdoicomputer has quit [Ping timeout: 244 seconds]
joast has quit [Ping timeout: 240 seconds]
howdoicomputer has joined #ruby
ur5us has joined #ruby
dellavg_ has joined #ruby
howdoicomputer has quit [Quit: WeeChat 2.3]
Dbugger has joined #ruby
whysthatso has quit [Quit: whysthatso]
phaul has joined #ruby
<baweaver> All six parts are done, and Reducing Enumerable has now been made into a series of text posts. Enjoy: https://medium.com/@baweaver/reducing-enumerable-part-one-the-journey-begins-ddc1d4108490
<havenwood> baweaver: Great posts!
lomex has joined #ruby
Yxhuvud has quit [Remote host closed the connection]
Yxhuvud has joined #ruby
elphe has joined #ruby
elphe has quit [Ping timeout: 252 seconds]
venmx has joined #ruby
apparition has joined #ruby
zapata has quit [Read error: Connection reset by peer]
zapata has joined #ruby
lomex has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gix has joined #ruby
lxsameer has joined #ruby
RougeR has joined #ruby
MoritaShinobu has quit [Ping timeout: 268 seconds]
ur5us has quit [Remote host closed the connection]
venmx has quit [Ping timeout: 252 seconds]
yohji has joined #ruby
MoritaShinobu has joined #ruby
hays has quit [Read error: Connection reset by peer]
hays has joined #ruby
yohji has quit [Quit: Leaving]
wildermind has joined #ruby
MoritaShinobu has quit [Quit: Leaving]
elphe has joined #ruby
conta has quit [Quit: conta]
luminous has quit [Quit: Connection closed for inactivity]
rubydoc has quit [Remote host closed the connection]
rubydoc has joined #ruby
MoritaShinobu has joined #ruby
queip has quit [Read error: Connection reset by peer]
queip has joined #ruby
dbugger_ has joined #ruby
Dbugger has quit [Ping timeout: 276 seconds]
jetchisel has quit [Ping timeout: 252 seconds]
Guest24308 has quit [Ping timeout: 252 seconds]
jetchisel has joined #ruby
conta has joined #ruby
RougeR has quit [Ping timeout: 240 seconds]
kapil____ has quit [Quit: Connection closed for inactivity]
pskosinski has quit [Ping timeout: 272 seconds]
pskosinski has joined #ruby
gix has quit [Quit: Client exiting]
clemens3 has joined #ruby
im0nde has joined #ruby
whysthatso has joined #ruby
desperek has joined #ruby
Yxhuvud has quit [Ping timeout: 260 seconds]
govg has joined #ruby
Inline has quit [Read error: Connection reset by peer]
whysthatso has quit [Quit: whysthatso]
Inline has joined #ruby
Inline has quit [Read error: Connection reset by peer]
AJA4350 has joined #ruby
Miron has quit [Ping timeout: 240 seconds]
whysthatso has joined #ruby
lomex has joined #ruby
govg has quit [Ping timeout: 268 seconds]
asphyxia has quit [Ping timeout: 252 seconds]
LinuxKnight has quit [Remote host closed the connection]
LinuxKnight has joined #ruby
queip has quit [Read error: Connection reset by peer]
Inline has joined #ruby
queip has joined #ruby
kapil____ has joined #ruby
<kapil____> hi
<phaul> hi kapil____
Yxhuvud has joined #ruby
<kapil____> i am using begin rescue myfunc() end
<kapil____> sorry. i am using `begin ..rescue..myfunc()..rescue..end`
<kapil____> but second rescue cant catch error if myfunc() fails.
<canton7> indeed, because it doesn't appear between the 'begin' and the 'rescue'
<canton7> if you want to catch errors from it, put it in its own begin/rescue block
<kapil____> canton7: thanks
<kapil____> what multiple rescue statements for?
<canton7> catching different sorts of errors
<kapil____> oh thanks
<canton7> 'rescue OneTypeOfException' ... 'rescue AnotherTypeOfException' ...
<kapil____> thanks
dbugger__ has joined #ruby
Inline has quit [Read error: Connection reset by peer]
dbugger_ has quit [Ping timeout: 240 seconds]
lomex has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Inline has joined #ruby
conta has quit [Quit: conta]
elphe has quit [Ping timeout: 252 seconds]
dkmueller has joined #ruby
whysthatso has quit [Quit: whysthatso]
Yxhuvud has quit [Ping timeout: 276 seconds]
weird_error has quit [Quit: weird_error]
Guest24308 has joined #ruby
roshanavand has joined #ruby
queip has quit [Read error: Connection reset by peer]
queip has joined #ruby
desperek has quit [Quit: xoxo]
elphe has joined #ruby
ua_ has quit [Ping timeout: 268 seconds]
weaksauce has quit [Ping timeout: 268 seconds]
jetchisel has quit [Ping timeout: 246 seconds]
BTRE has quit [Remote host closed the connection]
im0nde has quit [Ping timeout: 264 seconds]
clemens3 has quit [Remote host closed the connection]
BTRE has joined #ruby
_whitelogger has joined #ruby
whysthatso has joined #ruby
joast has joined #ruby
im0nde has joined #ruby
pabs has quit [Ping timeout: 252 seconds]
reber has joined #ruby
whysthatso has quit [Quit: whysthatso]
reber__ has quit [Read error: Connection reset by peer]
akem has joined #ruby
pabs has joined #ruby
dbugger__ has quit [Remote host closed the connection]
conta has joined #ruby
akem has quit [Remote host closed the connection]
elphe has quit [Ping timeout: 240 seconds]
akem has joined #ruby
akem has quit [Read error: Connection reset by peer]
akem has joined #ruby
wildermind has quit [Quit: Connection closed for inactivity]
maximjaffe has joined #ruby
paulscoder has joined #ruby
whysthatso has joined #ruby
elphe has joined #ruby
elphe has quit [Ping timeout: 244 seconds]
desperek has joined #ruby
houhoulis has joined #ruby
apparition has quit [Quit: Bye]
kaleido has joined #ruby
sgen has joined #ruby
queip has quit [Read error: Connection reset by peer]
queip has joined #ruby
luminous has joined #ruby
ptx0 has joined #ruby
universa1 has joined #ruby
conta has quit [Ping timeout: 244 seconds]
Sembei has joined #ruby
ByronJohnson has quit [Remote host closed the connection]
Puffball has quit [Remote host closed the connection]
Puffball has joined #ruby
yohji has joined #ruby
Yxhuvud has joined #ruby
yohji has quit [Client Quit]
whysthatso has quit [Quit: whysthatso]
akem has quit [Read error: Connection reset by peer]
ChatCodingLab has joined #ruby
akem has joined #ruby
sgen has quit [Ping timeout: 250 seconds]
ivanskie has joined #ruby
jetchisel has joined #ruby
jetchisel has quit [Max SendQ exceeded]
queip has quit [Read error: Connection reset by peer]
bairyn has joined #ruby
akem has quit [Remote host closed the connection]
jetchisel has joined #ruby
akem has joined #ruby
za1b1tsu has joined #ruby
kn-928 has joined #ruby
kn-928 has quit [Client Quit]
queip has joined #ruby
akem has quit [Ping timeout: 246 seconds]
akem has joined #ruby
clemens3 has joined #ruby
Nicmavr has quit [Read error: Connection reset by peer]
lomex has joined #ruby
clemens3 has quit [Remote host closed the connection]
Nicmavr has joined #ruby
akem has quit [Remote host closed the connection]
akaiiro has joined #ruby
ChatCodingLab has quit [Quit: Leaving]
Puffball has quit [Remote host closed the connection]
Puffball has joined #ruby
Tom-_ has joined #ruby
<Tom-_> is learning ruby from learnrubythehardway.org a good idea?
<kaleido> the generic, but still accurate, answer is that yes it will help you learn the basics just as well as any other means.
pabs has quit [Ping timeout: 240 seconds]
pabs has joined #ruby
lomex has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jordila has joined #ruby
jaddison has joined #ruby
<Tom-_> that's quite good enough for me, thanks very much!
bendersteed has joined #ruby
ua has joined #ruby
jthomas has joined #ruby
<jordila> absolute ruby beginner here, trying to get to know Nil ... on the following snippet at https://pastebin.com/Ly2hCVfC , what __ should be substituted for ?
<ruby[bot]> jordila: we in #ruby do not like pastebin.com, it loads slowly for most, has ads which are distracting and has terrible formatting. Please use https://gist.github.com
voice_ftp has quit [Read error: Connection reset by peer]
<jordila> sure ... , when trying to get to know Nil ... on the following snippet at https://gist.github.com/jordila/98fd2dd291889581a8418750c43765f8 , what __ should be substituted for in order to the function to become true ?
whysthatso has joined #ruby
paulscoder has quit [Quit: paulscoder]
dkmueller has quit [Ping timeout: 268 seconds]
<nchambers> &>> nil.is_a? Object
<rubydoc> # => true (https://carc.in/#/r/5k9b)
<nchambers> jordila: ^
<nchambers> its just trying to show you that nil is an object of (I think) NilClass
<nchambers> versus something like None in python, or NULL in C, which effectively means "no data" and is not an object
queip has quit [Read error: Connection reset by peer]
jgpawletko has left #ruby [#ruby]
kapil____ has quit [Quit: Connection closed for inactivity]
<phaul> ah, good old ((void*)0) :)
<phaul> so glad those days are behind me :)
<jordila> nchambers, umh.. so may i substitute '__' for '&>> ' ?
ivanskie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<nchambers> &>> is just to tell the bot to run the following code
<nchambers> what is the result of nil.is_a?(Object)
<nchambers> and what are you comparing against?
Inline has quit [Read error: Connection reset by peer]
queip has joined #ruby
ivanskie has joined #ruby
Inline has joined #ruby
Inline has quit [Read error: Connection reset by peer]
<al2o3-cr> jordila: you substitute `__` with true.
jthomas has quit [Quit: WeeChat 2.1]
jaddison has quit [Quit: jaddison]
* jordila ... can continue the ruby path-to-enlightenment, by substituting `__` with true as long as current koan is satisfied
ivanskie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<phaul> now .. that's what you call enlightenment
<nchambers> i should probably finish my ruby koans :/
za1b1tsu has quit [Quit: WeeChat 2.2]
ivanskie has joined #ruby
* jordila loves #ruby
conta has joined #ruby
za1b1tsu has joined #ruby
jordila has quit [Ping timeout: 268 seconds]
ivanskie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Inline has joined #ruby
lomex has joined #ruby
luminous has quit [Quit: Connection closed for inactivity]
dkmueller has joined #ruby
roshanavand has quit [Quit: Gone planting!]
za1b1tsu has quit [Quit: WeeChat 2.2]
roshanavand has joined #ruby
RougeR has joined #ruby
lomex has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
pabs has quit [Ping timeout: 244 seconds]
dviola has joined #ruby
Guest24308 has quit [Ping timeout: 252 seconds]
tdy has quit [Ping timeout: 268 seconds]
raul782 has joined #ruby
akaiiro has quit [Remote host closed the connection]
lomex has joined #ruby
conta has quit [Remote host closed the connection]
jordila has joined #ruby
dviola has quit [Quit: WeeChat 2.3]
conta has joined #ruby
conta has quit [Client Quit]
patr0clus has joined #ruby
ivanskie has joined #ruby
kapil____ has joined #ruby
dkmueller has quit [Quit: Lost terminal]
dkmueller has joined #ruby
conta has joined #ruby
ptx0 has quit [Read error: Connection reset by peer]
ptx0 has joined #ruby
patr0clus has quit [Quit: WeeChat 2.1]
nchambers has quit [Ping timeout: 252 seconds]
segy has quit [Quit: ZNC - http://znc.in]
segy has joined #ruby
<jordila> when trying to get to know a little bit more on Nil ... on the following snippet at https://dpaste.de/ZsMV , what __ should be substituted for in order to the function to become true ?
phil80 has joined #ruby
raul782 has quit []
patr0clus has joined #ruby
conta has quit [Quit: conta]
<phaul> jordila: make it something - anyting that would make it run past syntax errors. change __ to any object you like: 1, 'a', nil, [13] etc. then run it again and observe.
phil80 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<jordila> phaul, tried 'nil' , unsuccesfully
elphe has joined #ruby
patr0clus has quit [Quit: WeeChat 2.1]
<phaul> did you get different output? What did it say?
elphe has quit [Ping timeout: 240 seconds]
<jordila> Koans application says ... 'Expected nil to equal NoMethodError ' ... but i cannot (yet) see the light .
<jordila> Eve when substituting '__' by 'NoMethodError' ?
<phaul> yeah. that should get you further
<phaul> always read what it says. and try to make sense of it..
nchambers has joined #ruby
weaksauce has joined #ruby
queip has quit [Read error: Connection reset by peer]
clemens3 has joined #ruby
lomex has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bmurt has joined #ruby
Dbugger has joined #ruby
clemens3 has quit [Remote host closed the connection]
queip has joined #ruby
<jordila> when substituting '__' for 'NoMethodError' i cannot (yet) see the light.
im0nde has quit [Quit: im0nde]
phil80 has joined #ruby
aufi has joined #ruby
Tom-_ has quit [Quit: Leaving]
Tom-_ has joined #ruby
phil80 has quit []
<phaul> jordila: 'NoMethodError' is different from NoMethodError. Notice the 'marks'.
akaiiro has joined #ruby
<phaul> one is a constant pointing to some object. Typically a class or module, but sometimes, something else. The other with single quotes is a string
elphe has joined #ruby
<phaul> NoMethodError is a class in this case which denotes the error of method on object is non-existent
<phaul> &ri NoMethodError
thejs has joined #ruby
relyks has joined #ruby
relyks has quit [Client Quit]
relyks has joined #ruby
relyks has quit [Client Quit]
MoritaShinobu has quit [Quit: Leaving]
BH23 has joined #ruby
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
jaddison has joined #ruby
elphe has quit [Ping timeout: 250 seconds]
ur5us has joined #ruby
ur5us has quit [Remote host closed the connection]
jaddison has quit [Quit: jaddison]
sgen has joined #ruby
ivanskie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bairyn is now known as ByronJohnson
akaiiro has quit [Ping timeout: 252 seconds]
sheepman has joined #ruby
venmx has joined #ruby
Guest24308 has joined #ruby
elphe has joined #ruby
reber has quit [Remote host closed the connection]
Guest24308 has quit [Ping timeout: 252 seconds]
lunarkitty7 has joined #ruby
paulscoder has joined #ruby
bendersteed has quit [Remote host closed the connection]
daemonwrangler has quit [Quit: ZNC 1.6.5 - http://znc.in]
dviola has joined #ruby
daemonwrangler has joined #ruby
akaiiro has joined #ruby
beeman has quit []
Exuma has joined #ruby
beeman has joined #ruby
paulscoder has quit [Quit: paulscoder]
aufi has quit [Ping timeout: 252 seconds]
paulscoder has joined #ruby
<nchambers> is there something like Object#class expcet it outputs the basename of the class? I've got a class named Raspberry::Type::Lambda and I'd like to just get Lambda
<nchambers> other than foo.class.name.split("::")[-1]
<phaul> there aretwo distinct things in play. scope nesting and inheritance
<phaul> :: separates nesting. and it's independent of inheritance
<phaul> &ri nesting
RougeR has quit [Quit: Leaving]
RougeR has joined #ruby
<phaul> I'm not sure if you referred to inheritance at all, but basename sounded like base class...
<phaul> you could get #nesting.last ?
<phaul> not sure if it always does whatyou need..
kaleido has quit [Ping timeout: 250 seconds]
<nchambers> thanks phaul, I'll check those out
<phaul> nchambers: actually it doesn't do what you need. nm, sorry, I don't know better way than what you said...
desperek has quit [Quit: xoxo]
<nchambers> oh well
<nchambers> its just cosmetic anyways
queip has quit [Read error: Connection reset by peer]
<phaul> also there is a gotcha with the difference between module A; module B; end; end; vs module A::B; end; #nesting shows that these are different, I did some writeup of what I found here https://github.com/phaul/ruby_101/blob/master/content/book.md#lexical-scope-nesting
queip has joined #ruby
GodFather has quit [Ping timeout: 264 seconds]
GodFather has joined #ruby
akaiiro has quit [Remote host closed the connection]
<jordila> phaul , indeed ... with NoMethodError class came the light
crankharder has joined #ruby
themsay has joined #ruby
DTZUZO has quit [Ping timeout: 252 seconds]
sagax has quit [Quit: Konversation terminated!]
dviola has quit [Quit: WeeChat 2.3]
phaul has quit [Ping timeout: 252 seconds]
crankhar1er has joined #ruby
crankharder has quit [Quit: leaving]
crankhar1er is now known as crankharder
phaul has joined #ruby
Dbugger has quit [Ping timeout: 264 seconds]
venmx has quit [Ping timeout: 260 seconds]
venmx has joined #ruby
GodFather has quit [Ping timeout: 244 seconds]
paulscoder has quit [Quit: paulscoder]
houhoulis has quit [Remote host closed the connection]
jaddison has joined #ruby
queip has quit [Read error: Connection reset by peer]
darthfork has joined #ruby
venmx has quit [Ping timeout: 240 seconds]
paulscoder has joined #ruby
jaddison has quit [Client Quit]
queip has joined #ruby
roshanavand has quit [Remote host closed the connection]
roshanavand has joined #ruby
venmx has joined #ruby
seabee has joined #ruby
jordila has left #ruby [#ruby]
TheBloke has quit [Read error: Connection reset by peer]
seabee has quit [Client Quit]
TheBloke has joined #ruby
ausmat has joined #ruby
venmx has quit [Ping timeout: 240 seconds]
phaul has quit [Ping timeout: 272 seconds]
tdy has joined #ruby
jhass has quit [Ping timeout: 264 seconds]
cd has quit [Quit: cd]
<baweaver> Hrm hrm
jhass has joined #ruby
patr0clus has joined #ruby
dellavg_ has quit [Ping timeout: 245 seconds]
zapata has quit [Read error: Connection reset by peer]
zapata has joined #ruby
darthfork has quit [Quit: darthfork]
jcalla has quit [Ping timeout: 252 seconds]
ivanskie has joined #ruby
whysthatso has quit [Quit: whysthatso]
DTZUZO has joined #ruby
ivanskie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jcalla has joined #ruby
queip has quit [Read error: Connection reset by peer]
jcalla has quit [Ping timeout: 240 seconds]
dviola has joined #ruby
queip has joined #ruby
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
FrankD has quit [Ping timeout: 244 seconds]
jhass has quit [Quit: Bye]
jcalla has joined #ruby
bmurt has joined #ruby
sgen has quit [Ping timeout: 268 seconds]