baweaver changed the topic of #ruby to: Rules & more: https://ruby-community.com | Ruby 2.5.1, 2.4.4, 2.3.7, 2.6.0-preview1: https://www.ruby-lang.org | Paste 4+ lines of text to https://gist.github.com | Rails questions? Ask in #RubyOnRails | Books: https://goo.gl/wpGhoQ | Logs: https://irclog.whitequark.org/ruby
karapetyan has quit [Ping timeout: 260 seconds]
emilford has joined #ruby
sytherax has joined #ruby
nitric_ has quit [Ping timeout: 260 seconds]
emilford has quit [Ping timeout: 252 seconds]
emilford has joined #ruby
CuriousMind has joined #ruby
rivalomega has quit []
<CuriousMind> Hi, what does `local: true` mean for the `form_with` method?
<apeiros> CuriousMind: have you consulted the docs of whichever library you're using there?
<CuriousMind> apeiros: No.
<CuriousMind> apeiros: I'll do that right now
<apeiros> then I suggest you do that as a first step
emilford has quit [Ping timeout: 268 seconds]
<CuriousMind> ok
darkhanb has joined #ruby
mroutis has joined #ruby
jcarl43 has quit [Quit: WeeChat 2.1]
emilford has joined #ruby
apeiros has quit [Ping timeout: 240 seconds]
emilford has quit [Ping timeout: 260 seconds]
emilford has joined #ruby
orbyt_ has joined #ruby
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
emilford has quit [Ping timeout: 240 seconds]
capellaS72 has joined #ruby
jenrzzz has quit [Ping timeout: 256 seconds]
emilford has joined #ruby
mlkkk has quit [Remote host closed the connection]
capellaS7 has quit [Ping timeout: 260 seconds]
mlkkk has joined #ruby
KeyJoo has quit [Remote host closed the connection]
Andrevan has quit [Quit: WeeChat 2.1]
Guest39593 is now known as ged
ged is now known as Guest42528
mlkkk has quit [Ping timeout: 256 seconds]
<CuriousMind> Hi. I asked about 30m ago what `local: true` means for the `form_with` method
<CuriousMind> I referred to this doc (http://api.rubyonrails.org/v5.1/classes/ActionView/Helpers/FormHelper.html#method-i-form_with) which says `:local - By default form submits are remote and unobstrusive XHRs. Disable remote submits with local: true
<CuriousMind> I didn't understand what XHR was so I researched that. After doing all this, I think `local: true` means that when the form is submitted it won't execute a XmlHttpRequest. Am I correct?
shinnya has joined #ruby
emilford has quit [Ping timeout: 256 seconds]
emilford has joined #ruby
jyaworski has joined #ruby
karapetyan has joined #ruby
bayprogrammer has quit [Quit: WeeChat 2.0.1]
karapetyan has quit [Ping timeout: 260 seconds]
emilford has quit [Ping timeout: 245 seconds]
emilford has joined #ruby
caoraivoso has joined #ruby
<caoraivoso> hi
<havenwood> caoraivoso: hi
emilford has quit [Ping timeout: 260 seconds]
houhoulis has joined #ruby
<caoraivoso> I'm curious if there is a better way to do this? n.to_s.chars.to_a.reverse.each_slice(3).map(&:join).join(",").reverse I'm trying to format numbers like 1234 to 1,234, 987654321 to 987,654,321 and so on
tdy has joined #ruby
<caoraivoso> here is my current spec: https://ptpb.pw/vx05/ruby
houhoulis has quit [Remote host closed the connection]
emilford has joined #ruby
<caoraivoso> I'm also curious what's the difference with the Integer and Numeric classes
<caoraivoso> because I'm doing this: return "0" unless n.is_a? Integer
<caoraivoso> however, my test is also passing with Numeric
<caoraivoso> not sure which one I must use
TomyLobo has quit [Ping timeout: 245 seconds]
<havenwood> caoraivoso: Numeric is a more general class that also includes Rational, Float and Complex. Integer inherits from Numeric.
<caoraivoso> I see
jyaworski has quit [Ping timeout: 252 seconds]
<caoraivoso> it sounds like Integer is fine for this then
emilford has quit [Ping timeout: 245 seconds]
darkhanb has joined #ruby
emilford has joined #ruby
<caoraivoso> havenwood: thanks
<havenwood> caoraivoso: In Ruby 2.4+ you can: 1234.digits.each_slice(3).reverse_each.map(&:join).join(',')
<havenwood> Oops.
<havenwood> I did that wrong.
<havenwood> 1234.digits.each_slice(3).map(&:join).join(',').reverse
<havenwood> #=> "1,234"
<caoraivoso> it works, thanks :)
<havenwood> caoraivoso: Anyhoo, #digits is neat.
amar has joined #ruby
emilford has quit [Ping timeout: 245 seconds]
<havenwood> caoraivoso: 1234.to_s.reverse.gsub(/\d{3}/) { |digits| "#{digits}," }.reverse => "1,234"
<havenwood> caoraivoso: this ^ doesn't involve arrays
<havenwood> caoraivoso: but does involve regexp ¯\_(ツ)_/¯
amar has quit [Ping timeout: 252 seconds]
emilford has joined #ruby
CuriousMind has quit [Ping timeout: 260 seconds]
<havenwood> caoraivoso: Here's a benchmark comparison of the two in CRuby, JRuby and TruffleRuby: https://gist.github.com/havenwood/ce3c24ed20b74f085330ac15bb89e640
<havenwood> TL;DR: gsub wins
emilford has quit [Ping timeout: 260 seconds]
emilford has joined #ruby
eb0t has quit [Quit: WeeChat 1.9.1]
<caoraivoso> with the regex version I'm getting: ",987,654,321" rather than "987,654,321" for some reason
eblip has quit [Ping timeout: 245 seconds]
<havenwood> caoraivoso: I probably messed up. Long day!
white_lilies has quit [Ping timeout: 240 seconds]
<havenwood> caoraivoso: sec
<havenwood> >> 12345678.to_s.reverse.gsub(/\d{3}/) { |digits| "#{digits}," }.reverse
<ruby[bot]> havenwood: # => "12,345,678" (https://eval.in/1010422)
<havenwood> caoraivoso: ah
emilford has quit [Ping timeout: 252 seconds]
<caoraivoso> >> 987654321.to_s.reverse.gsub(/\d{3}/) { |digits| "#{digits}," }.reverse
<ruby[bot]> caoraivoso: # => ",987,654,321" (https://eval.in/1010423)
emilford has joined #ruby
Guest42528 is now known as ged
<caoraivoso> the leading , is the one I'm trying to get rid of
<havenwood> >> 123456789.to_s.reverse.gsub(/\d{3}(?!\z)/) { |digits| "#{digits}," }.reverse
<ruby[bot]> havenwood: # => "123,456,789" (https://eval.in/1010424)
<havenwood> caoraivoso: ^
<caoraivoso> thanks
ur5us has joined #ruby
ged is now known as Guest17277
lxsameer has quit [Ping timeout: 256 seconds]
Immune has joined #ruby
Immune has left #ruby [#ruby]
<havenwood> caoraivoso: np, updated the gist but same diff
thapakazi has joined #ruby
<caoraivoso> interesting
capellaS72 has quit [Ping timeout: 245 seconds]
capellaS7 has joined #ruby
<havenwood> pry>> 123456789.to_s.reverse.gsub(/\d{3}/) { |digits| "#{digits}," }.chomp(',').reverse
<havenwood> In 2.5 we have remove_suffix ;-)
ur5us has quit [Ping timeout: 260 seconds]
<havenwood> delete_suffix**
<havenwood> or delete_prefix would work here too
<havenwood> 123456789.to_s.reverse.gsub(/\d{3}/) { |digits| "#{digits}," }.chomp(',').reverse.delete_prefix(',') #=> "123,456,789"
<havenwood> oh, double chomp >.>
<havenwood> 123456789.to_s.reverse.gsub(/\d{3}/) { |digits| "#{digits}," }.reverse.delete_prefix(',') #=> "123,456,789"
<caoraivoso> nice
emilford has quit [Ping timeout: 240 seconds]
<caoraivoso> <3 ruby
mroutis has quit [Ping timeout: 260 seconds]
emilford has joined #ruby
gnufied has quit [Quit: Leaving]
emilford has quit [Ping timeout: 252 seconds]
agent_white has quit [Quit: happy friday]
emilford has joined #ruby
eb0t has joined #ruby
emilford has quit [Ping timeout: 245 seconds]
emilford has joined #ruby
apeiros has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
thatrubyguy has joined #ruby
emilford has quit [Ping timeout: 245 seconds]
capellaS7 has quit [Ping timeout: 248 seconds]
thatrubyguy has left #ruby [#ruby]
kapil___ has joined #ruby
emilford has joined #ruby
sylario has quit [Quit: Connection closed for inactivity]
<caoraivoso> I wonder how can I make it accept negative values also
<caoraivoso> like -1234
jyaworski has joined #ruby
<caoraivoso> >> -1000.digits.each_slice(3).map(&:join).join(',').reverse
<ruby[bot]> caoraivoso: # => undefined method `digits' for -1000:Fixnum (NoMethodError) ...check link for more (https://eval.in/1010427)
thapakazi has quit [Quit: thapakazi]
<caoraivoso> I'm not sure why n.digits returns Math::DomainError (out of domain) for a negative number?
<caoraivoso> nvm, it's in the docs
caoraivoso has quit [Quit: WeeChat 2.1]
emilford has quit [Ping timeout: 245 seconds]
karapetyan has joined #ruby
jyaworski has quit [Ping timeout: 264 seconds]
cadillac_ has joined #ruby
eblip has joined #ruby
karapetyan has quit [Ping timeout: 260 seconds]
emilford has joined #ruby
capellaS7 has joined #ruby
braincrash has quit [Quit: bye bye]
Guest17277 is now known as ged
ged is now known as Guest72867
cyberg has quit [Quit: Leaving]
emilford has quit [Ping timeout: 252 seconds]
nickjj_ has joined #ruby
braincrash has joined #ruby
Dimik has joined #ruby
nickjj has quit [Ping timeout: 245 seconds]
p0p0pr37 has quit [Ping timeout: 260 seconds]
sanscoeur has quit [Remote host closed the connection]
emilford has joined #ruby
emilford has quit [Ping timeout: 252 seconds]
ur5us has joined #ruby
emilford has joined #ruby
noobineer has joined #ruby
ur5us has quit [Ping timeout: 252 seconds]
minimalism has quit [Quit: minimalism]
Andrevan has joined #ruby
Andrevan has quit [Changing host]
Andrevan has joined #ruby
white_lilies has joined #ruby
amar has joined #ruby
AJA4350 has quit [Read error: Connection reset by peer]
emilford has quit [Ping timeout: 252 seconds]
amar has quit [Ping timeout: 252 seconds]
tag has quit [Quit: Connection closed for inactivity]
Caius has joined #ruby
Caius has joined #ruby
Caius has quit [Changing host]
emilford has joined #ruby
gix has joined #ruby
c0ncealed1 has quit [Remote host closed the connection]
gix- has quit [Ping timeout: 240 seconds]
emilford has quit [Ping timeout: 245 seconds]
c0ncealed1 has joined #ruby
duderonomy has joined #ruby
emilford has joined #ruby
capellaS7 has quit [Ping timeout: 252 seconds]
dbugger_ has joined #ruby
jenrzzz has quit [Ping timeout: 245 seconds]
emilford has quit [Ping timeout: 260 seconds]
Dbugger has quit [Ping timeout: 265 seconds]
sysfault has joined #ruby
sauvin has joined #ruby
emilford has joined #ruby
rkazak has joined #ruby
tacoboy has joined #ruby
Andrevan has quit [Quit: WeeChat 2.1]
Andrevan has joined #ruby
Guest72867 is now known as ged
ged is now known as Guest98996
mtkd has joined #ruby
sanscoeur has joined #ruby
sanscoeur has quit [Ping timeout: 268 seconds]
white_lilies has quit [Ping timeout: 245 seconds]
white_lilies has joined #ruby
ciscam has quit [Ping timeout: 256 seconds]
CuriousMind has joined #ruby
ciscam has joined #ruby
chouhoul_ has joined #ruby
<CuriousMind> Is there a command that returns form helpers?
shinnya has quit [Ping timeout: 264 seconds]
p0p0pr37 has joined #ruby
p0p0pr37 has quit [Changing host]
p0p0pr37 has joined #ruby
p0p0pr37_ has joined #ruby
p0p0pr37_ has joined #ruby
p0p0pr37 has quit [Ping timeout: 240 seconds]
p0p0pr37_ is now known as p0p0pr37
kapil___ has quit [Quit: Connection closed for inactivity]
karapetyan has joined #ruby
noobineer has quit [Remote host closed the connection]
curiolog has joined #ruby
p0p0pr37 has quit [Remote host closed the connection]
jyaworski has joined #ruby
karapetyan has quit [Ping timeout: 260 seconds]
chouhoul_ has quit [Remote host closed the connection]
chouhoulis has joined #ruby
<curiolog> Hello?
p0p0pr37 has joined #ruby
_antares_ has joined #ruby
chouhoulis has quit [Ping timeout: 264 seconds]
curiolog has quit [Quit: Mutter: www.mutterirc.com]
curiolog has joined #ruby
jyaworski has quit [Ping timeout: 264 seconds]
curiolog has quit [Client Quit]
rippa has joined #ruby
jyaworski has joined #ruby
sanscoeur has joined #ruby
sanscoeur has quit [Ping timeout: 252 seconds]
Guest98996 is now known as ged
ged is now known as Guest49912
conta has joined #ruby
amar has joined #ruby
CuriousMind has quit [Quit: Page closed]
emilford has quit [Ping timeout: 256 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
amar has quit [Ping timeout: 252 seconds]
rkazak has quit [Quit: Sleep.....ing....]
phaul has joined #ruby
duderonomy has quit [Quit: Textual IRC Client: www.textualapp.com]
rkazak has joined #ruby
duderonomy has joined #ruby
conta has quit [Ping timeout: 252 seconds]
idiocrash has joined #ruby
mlkkk has joined #ruby
jyaworski has quit [Ping timeout: 252 seconds]
cadillac_ has quit [Ping timeout: 245 seconds]
cadillac_ has joined #ruby
white_lilies has quit [Ping timeout: 268 seconds]
ciscam has quit [Ping timeout: 260 seconds]
ciscam has joined #ruby
conta has joined #ruby
white_lilies has joined #ruby
emilford has joined #ruby
emilford has quit [Ping timeout: 245 seconds]
\void has quit [Quit: So long, and thanks for all the fish.]
emilford has joined #ruby
sanscoeur has joined #ruby
physicist__ has joined #ruby
jyaworski has joined #ruby
emilford has quit [Ping timeout: 268 seconds]
banisterfiend has joined #ruby
emilford has joined #ruby
reber has joined #ruby
sanscoeur has quit [Ping timeout: 252 seconds]
idiocrash has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
p0p0pr37_ has joined #ruby
p0p0pr37_ has joined #ruby
p0p0pr37_ has quit [Changing host]
emilford has quit [Ping timeout: 260 seconds]
karapetyan has joined #ruby
_antares_ has quit [Remote host closed the connection]
p0p0pr37 has quit [Ping timeout: 248 seconds]
p0p0pr37_ is now known as p0p0pr37
Guest49912 is now known as ged
ged is now known as Guest38959
shinnya has joined #ruby
rkazak has quit [Quit: Sleep.....ing....]
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mtkd has quit []
mlkkk has quit [Remote host closed the connection]
ta_ has quit [Remote host closed the connection]
jyaworski has quit [Ping timeout: 248 seconds]
conta has quit [Ping timeout: 256 seconds]
mlkkk has joined #ruby
_antares_ has joined #ruby
karapetyan has quit [Remote host closed the connection]
mlkkk has quit [Ping timeout: 260 seconds]
schleppel has joined #ruby
kapil___ has joined #ruby
xuyuheng has joined #ruby
arashb has quit [Ping timeout: 256 seconds]
jyaworski has joined #ruby
ciscam has quit [Ping timeout: 240 seconds]
ciscam has joined #ruby
emilford has joined #ruby
banisterfiend has joined #ruby
sytherax has quit [Ping timeout: 252 seconds]
emilford has quit [Ping timeout: 256 seconds]
biberu has joined #ruby
emilford has joined #ruby
tvw has joined #ruby
jyaworski has quit [Ping timeout: 260 seconds]
phaul has quit [Ping timeout: 245 seconds]
jyaworski has joined #ruby
emilford has quit [Ping timeout: 260 seconds]
jyaworski has quit [Ping timeout: 240 seconds]
mlh has joined #ruby
<mlh> hi people
<mlh> is slosh a line continuation char?
<mlh> e.g.
<mlh> g = 1 + 2 \
<mlh> + 3 + 4
<mlh> g should equal 10 I think but I get 7 as if the second line is a separate expression
ta_ has joined #ruby
sanscoeur has joined #ruby
conta has joined #ruby
<mlh> I know could end the first line with a + to indicate continuation. Just curious.
jrm has quit [Quit: ciao]
jrm has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
mtkd has joined #ruby
dinfuehr has quit [Ping timeout: 240 seconds]
dinfuehr has joined #ruby
reber has left #ruby ["Leaving"]
sanscoeur has quit [Ping timeout: 264 seconds]
nowhere_man has quit [Ping timeout: 256 seconds]
reber has joined #ruby
jinie has joined #ruby
jrabe has left #ruby ["Leaving all channels"]
amar has joined #ruby
jrabe has joined #ruby
jenrzzz has quit [Ping timeout: 268 seconds]
lightstalker has quit [Ping timeout: 252 seconds]
amar has quit [Ping timeout: 252 seconds]
mtkd has quit []
mtkd has joined #ruby
lightstalker has joined #ruby
emilford has joined #ruby
mlh has quit [Quit: leaving]
Guest38959 is now known as ged
nicesignal has quit [Remote host closed the connection]
ged is now known as Guest10188
nicesignal has joined #ruby
mlh has joined #ruby
<mlh> anyone?
karapetyan has joined #ruby
emilford has quit [Ping timeout: 252 seconds]
karapetyan has quit [Ping timeout: 245 seconds]
Dimik has quit [Ping timeout: 240 seconds]
<apeiros> mlh: yes, \ "escapes" the newline
mtkd has quit []
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
emilford has joined #ruby
ta_ has quit [Ping timeout: 264 seconds]
jyaworski has joined #ruby
ldepandis has joined #ruby
jenrzzz has quit [Ping timeout: 260 seconds]
clemens3 has joined #ruby
mtkd has joined #ruby
sysfault has quit [Ping timeout: 260 seconds]
clemens3_ has joined #ruby
jyaworski has quit [Ping timeout: 260 seconds]
_antares_ has quit [Remote host closed the connection]
marr has joined #ruby
emilford has quit [Ping timeout: 240 seconds]
emilford has joined #ruby
white_lilies has quit [Ping timeout: 240 seconds]
sanscoeur has joined #ruby
sanscoeur has quit [Ping timeout: 256 seconds]
p0p0pr37_ has joined #ruby
emilford has quit [Ping timeout: 268 seconds]
sytherax has joined #ruby
p0p0pr37 has quit [Ping timeout: 245 seconds]
p0p0pr37_ is now known as p0p0pr37
ta_ has joined #ruby
emilford has joined #ruby
jenrzzz has joined #ruby
mtkd has quit []
jenrzzz has quit [Ping timeout: 256 seconds]
apparition has joined #ruby
_antares_ has joined #ruby
emilford has quit [Ping timeout: 256 seconds]
xuyuheng has quit [Ping timeout: 260 seconds]
emilford has joined #ruby
Guest10188 is now known as ged
ged is now known as Guest30985
TomyLobo has joined #ruby
DarthGandalf has quit [Quit: Bye]
DarthGandalf has joined #ruby
emilford has quit [Ping timeout: 245 seconds]
mtkd has joined #ruby
JWOUNLsIRwa2 has joined #ruby
<JWOUNLsIRwa2> THIS IS AN EMERGENCY NOTICE THIS IS NOT SPAM: THIS NOTICE IS CURRENTLY GOING OUT TO ALL CHANNELS THROUGH THE FREENODE EMERGENCY NOTIFICATION SYSTEM: GRUMBLE HAS INADVERTENTLY NOT RESET THE FREENODE SECURITY PASSWORD CAUSING A BREAK IN FREENODE SECURITY WHERE ALL PASSWORDS HAVE BEEN RELEASED. PLEASE SEE GRUMLE IN #FREENODE FOR INFORMATION ON HOW TO SECURE YOUR ACCOUNT!!
<JWOUNLsIRwa2> THIS IS AN EMERGENCY NOTICE THIS IS NOT SPAM: THIS NOTICE IS CURRENTLY GOING OUT TO ALL CHANNELS THROUGH THE FREENODE EMERGENCY NOTIFICATION SYSTEM: GRUMBLE HAS INADVERTENTLY NOT RESET THE FREENODE SECURITY PASSWORD CAUSING A BREAK IN FREENODE SECURITY WHERE ALL PASSWORDS HAVE BEEN RELEASED. PLEASE SEE GRUMLE IN #FREENODE FOR INFORMATION ON HOW TO SECURE YOUR ACCOUNT!!
<JWOUNLsIRwa2> THIS IS AN EMERGENCY NOTICE THIS IS NOT SPAM: THIS NOTICE IS CURRENTLY GOING OUT TO ALL CHANNELS THROUGH THE FREENODE EMERGENCY NOTIFICATION SYSTEM: GRUMBLE HAS INADVERTENTLY NOT RESET THE FREENODE SECURITY PASSWORD CAUSING A BREAK IN FREENODE SECURITY WHERE ALL PASSWORDS HAVE BEEN RELEASED. PLEASE SEE GRUMLE IN #FREENODE FOR INFORMATION ON HOW TO SECURE YOUR ACCOUNT!!
<JWOUNLsIRwa2> THIS IS AN EMERGENCY NOTICE THIS IS NOT SPAM: THIS NOTICE IS CURRENTLY GOING OUT TO ALL CHANNELS THROUGH THE FREENODE EMERGENCY NOTIFICATION SYSTEM: GRUMBLE HAS INADVERTENTLY NOT RESET THE FREENODE SECURITY PASSWORD CAUSING A BREAK IN FREENODE SECURITY WHERE ALL PASSWORDS HAVE BEEN RELEASED. PLEASE SEE GRUMLE IN #FREENODE FOR INFORMATION ON HOW TO SECURE YOUR ACCOUNT!!
<JWOUNLsIRwa2> THIS IS AN EMERGENCY NOTICE THIS IS NOT SPAM: THIS NOTICE IS CURRENTLY GOING OUT TO ALL CHANNELS THROUGH THE FREENODE EMERGENCY NOTIFICATION SYSTEM: GRUMBLE HAS INADVERTENTLY NOT RESET THE FREENODE SECURITY PASSWORD CAUSING A BREAK IN FREENODE SECURITY WHERE ALL PASSWORDS HAVE BEEN RELEASED. PLEASE SEE GRUMLE IN #FREENODE FOR INFORMATION ON HOW TO SECURE YOUR ACCOUNT!!
<JWOUNLsIRwa2> THIS IS AN EMERGENCY NOTICE THIS IS NOT SPAM: THIS NOTICE IS CURRENTLY GOING OUT TO ALL CHANNELS THROUGH THE FREENODE EMERGENCY NOTIFICATION SYSTEM: GRUMBLE HAS INADVERTENTLY NOT RESET THE FREENODE SECURITY PASSWORD CAUSING A BREAK IN FREENODE SECURITY WHERE ALL PASSWORDS HAVE BEEN RELEASED. PLEASE SEE GRUMLE IN #FREENODE FOR INFORMATION ON HOW TO SECURE YOUR ACCOUNT!!
<JWOUNLsIRwa2> THIS IS AN EMERGENCY NOTICE THIS IS NOT SPAM: THIS NOTICE IS CURRENTLY GOING OUT TO ALL CHANNELS THROUGH THE FREENODE EMERGENCY NOTIFICATION SYSTEM: GRUMBLE HAS INADVERTENTLY NOT RESET THE FREENODE SECURITY PASSWORD CAUSING A BREAK IN FREENODE SECURITY WHERE ALL PASSWORDS HAVE BEEN RELEASED. PLEASE SEE GRUMLE IN #FREENODE FOR INFORMATION ON HOW TO SECURE YOUR ACCOUNT!!
<JWOUNLsIRwa2> THIS IS AN EMERGENCY NOTICE THIS IS NOT SPAM: THIS NOTICE IS CURRENTLY GOING OUT TO ALL CHANNELS THROUGH THE FREENODE EMERGENCY NOTIFICATION SYSTEM: GRUMBLE HAS INADVERTENTLY NOT RESET THE FREENODE SECURITY PASSWORD CAUSING A BREAK IN FREENODE SECURITY WHERE ALL PASSWORDS HAVE BEEN RELEASED. PLEASE SEE GRUMLE IN #FREENODE FOR INFORMATION ON HOW TO SECURE YOUR ACCOUNT!!
<JWOUNLsIRwa2> THIS IS AN EMERGENCY NOTICE THIS IS NOT SPAM: THIS NOTICE IS CURRENTLY GOING OUT TO ALL CHANNELS THROUGH THE FREENODE EMERGENCY NOTIFICATION SYSTEM: GRUMBLE HAS INADVERTENTLY NOT RESET THE FREENODE SECURITY PASSWORD CAUSING A BREAK IN FREENODE SECURITY WHERE ALL PASSWORDS HAVE BEEN RELEASED. PLEASE SEE GRUMLE IN #FREENODE FOR INFORMATION ON HOW TO SECURE YOUR ACCOUNT!!
<JWOUNLsIRwa2> THIS IS AN EMERGENCY NOTICE THIS IS NOT SPAM: THIS NOTICE IS CURRENTLY GOING OUT TO ALL CHANNELS THROUGH THE FREENODE EMERGENCY NOTIFICATION SYSTEM: GRUMBLE HAS INADVERTENTLY NOT RESET THE FREENODE SECURITY PASSWORD CAUSING A BREAK IN FREENODE SECURITY WHERE ALL PASSWORDS HAVE BEEN RELEASED. PLEASE SEE GRUMLE IN #FREENODE FOR INFORMATION ON HOW TO SECURE YOUR ACCOUNT!!
<JWOUNLsIRwa2> THIS IS AN EMERGENCY NOTICE THIS IS NOT SPAM: THIS NOTICE IS CURRENTLY GOING OUT TO ALL CHANNELS THROUGH THE FREENODE EMERGENCY NOTIFICATION SYSTEM: GRUMBLE HAS INADVERTENTLY NOT RESET THE FREENODE SECURITY PASSWORD CAUSING A BREAK IN FREENODE SECURITY WHERE ALL PASSWORDS HAVE BEEN RELEASED. PLEASE SEE GRUMLE IN #FREENODE FOR INFORMATION ON HOW TO SECURE YOUR ACCOUNT!!
<JWOUNLsIRwa2> mtkd DarthGandalf TomyLobo _antares_ apparition ta_ sytherax p0p0pr37 marr clemens3_ clemens3 ldepandis mlh nicesignal lightstalker jrabe jinie reber dinfuehr jrm conta tvw biberu banisterfiend ciscam kapil___ schleppel shinnya physicist__ cadillac_ duderonomy rippa Andrevan tacoboy sauvin dbugger_ c0ncealed1 gix Caius braincrash nickjj_ eblip apeiros eb0t darkhanb tdy shortdudey123 herbmillerjr go|dfish mostly-harmless GodFather ogres paraxial Gl Chew Zi
JWOUNLsIRwa2 has quit [Remote host closed the connection]
jinie has quit [Remote host closed the connection]
xuyuheng has joined #ruby
RougeR has joined #ruby
guille-moe has joined #ruby
jyaworski has joined #ruby
jenrzzz has joined #ruby
emilford has joined #ruby
xuyuheng has quit [Ping timeout: 256 seconds]
apeiros has quit [Remote host closed the connection]
ta_ has quit [Ping timeout: 252 seconds]
apeiros has joined #ruby
xuyuheng has joined #ruby
RougeR has quit [Ping timeout: 264 seconds]
apeiros has quit [Ping timeout: 245 seconds]
xuyuheng has quit [Ping timeout: 264 seconds]
emilford has quit [Ping timeout: 260 seconds]
amar has joined #ruby
ogres has quit [Quit: Connection closed for inactivity]
BaroMeter has joined #ruby
emilford has joined #ruby
kapil___ has quit [Quit: Connection closed for inactivity]
roshanavand has joined #ruby
sanscoeur has joined #ruby
jyaworski has quit [Ping timeout: 264 seconds]
alex`` has quit [Quit: WeeChat 2.1]
sanscoeur has quit [Ping timeout: 240 seconds]
alex`` has joined #ruby
emilford has quit [Ping timeout: 268 seconds]
emilford has joined #ruby
apeiros has joined #ruby
lxsameer has joined #ruby
<apeiros> oy, too bad. 3min earlier and I'd have banned them :(
kapil___ has joined #ruby
emilford has quit [Ping timeout: 240 seconds]
emilford has joined #ruby
xuyuheng has joined #ruby
duderono_ has joined #ruby
duderonomy has quit [Ping timeout: 260 seconds]
jyaworski has joined #ruby
xuyuheng has quit [Ping timeout: 268 seconds]
jenrzzz has quit [Ping timeout: 264 seconds]
xuyuheng has joined #ruby
emilford has quit [Ping timeout: 252 seconds]
crankharder has quit [Ping timeout: 264 seconds]
karapetyan has joined #ruby
jyaworski has quit [Ping timeout: 260 seconds]
ciscam has quit [Ping timeout: 252 seconds]
xuyuheng has quit [Ping timeout: 245 seconds]
ciscam has joined #ruby
jenrzzz has joined #ruby
karapetyan has quit [Ping timeout: 245 seconds]
crankharder has joined #ruby
contradictioned has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
emilford has joined #ruby
conta has quit [Ping timeout: 260 seconds]
sytherax has quit [Remote host closed the connection]
emilford has quit [Ping timeout: 268 seconds]
emilford has joined #ruby
jenrzzz has quit [Ping timeout: 248 seconds]
Guest30985 is now known as ged
jenrzzz has joined #ruby
ged is now known as Guest95847
emilford has quit [Ping timeout: 268 seconds]
jenrzzz has quit [Ping timeout: 256 seconds]
emilford has joined #ruby
conta has joined #ruby
tvN has joined #ruby
tvN has left #ruby [#ruby]
jenrzzz has joined #ruby
xuyuheng has joined #ruby
jyaworski has joined #ruby
arkaros has joined #ruby
__antares__ has joined #ruby
_antares_ has quit [Ping timeout: 245 seconds]
xuyuheng has quit [Ping timeout: 256 seconds]
__antares__ has quit [Remote host closed the connection]
nickjj_ is now known as nickjj
pwnd_nsfw` has joined #ruby
sanscoeur has joined #ruby
emilford has quit [Ping timeout: 260 seconds]
pwnd_nsfw has quit [Ping timeout: 264 seconds]
mtkd has quit []
emilford has joined #ruby
chef_byd has quit [Quit: Leaving]
sanscoeur has quit [Ping timeout: 265 seconds]
_antares_ has joined #ruby
p0p0pr37_ has joined #ruby
_antares_ has quit [Remote host closed the connection]
p0p0pr37 has quit [Ping timeout: 256 seconds]
p0p0pr37_ is now known as p0p0pr37
jyaworski has quit [Ping timeout: 264 seconds]
emilford has quit [Ping timeout: 256 seconds]
xuyuheng has joined #ruby
emilford has joined #ruby
conta has quit [Ping timeout: 264 seconds]
_antares_ has joined #ruby
apparition has quit [Quit: Bye]
biberu has quit []
jyaworski has joined #ruby
sytherax has joined #ruby
karapetyan has joined #ruby
xuyuheng has quit [Ping timeout: 276 seconds]
Zaab1t has joined #ruby
_antares_ has quit [Ping timeout: 260 seconds]
emilford has quit [Ping timeout: 240 seconds]
arkaros has left #ruby ["Quit"]
clemens3_ has quit [Ping timeout: 248 seconds]
plexigras has joined #ruby
emilford has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
phaul has joined #ruby
emilford has quit [Ping timeout: 260 seconds]
jyaworski has quit [Ping timeout: 260 seconds]
phaul has quit [Ping timeout: 252 seconds]
jenrzzz has joined #ruby
xuyuheng has joined #ruby
AJA4350 has joined #ruby
emilford has joined #ruby
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
xuyuheng has quit [Ping timeout: 240 seconds]
marr has quit [Ping timeout: 264 seconds]
emilford has quit [Ping timeout: 256 seconds]
ta_ has joined #ruby
mtkd has joined #ruby
emilford has joined #ruby
BaroMeter has quit [Quit: Leaving]
emilford has quit [Ping timeout: 260 seconds]
Guest95847 is now known as ged
ged is now known as Guest27541
xuyuheng has joined #ruby
beefjoe has joined #ruby
jottr has joined #ruby
emilford has joined #ruby
xuyuheng has quit [Ping timeout: 252 seconds]
guille-moe has quit [Ping timeout: 240 seconds]
jottr has quit [Ping timeout: 260 seconds]
xuyuheng has joined #ruby
sphenxes has joined #ruby
emilford has quit [Ping timeout: 240 seconds]
sanscoeur has joined #ruby
ur5us has joined #ruby
thapakazi has joined #ruby
t0xik has quit [Quit: Connection closed for inactivity]
minimalism has joined #ruby
plexigras has quit [Ping timeout: 260 seconds]
jenrzzz has quit [Ping timeout: 252 seconds]
sanscoeur has quit [Ping timeout: 264 seconds]
plexigras has joined #ruby
emilford has joined #ruby
jenrzzz has joined #ruby
emilford has quit [Ping timeout: 245 seconds]
TinkerT has quit [Read error: Connection reset by peer]
ciscam has quit [Ping timeout: 256 seconds]
ta_ has quit [Ping timeout: 264 seconds]
alex`` has quit [Ping timeout: 260 seconds]
ciscam has joined #ruby
TinkerT has joined #ruby
alex`` has joined #ruby
ellcs has joined #ruby
mtkd has quit []
emilford has joined #ruby
mtkd has joined #ruby
emilford has quit [Ping timeout: 260 seconds]
jottr has joined #ruby
emilford has joined #ruby
jyaworski has joined #ruby
jottr has quit [Ping timeout: 248 seconds]
leitz has joined #ruby
mroutis has joined #ruby
<leitz> How can I make the require_relative less location dependent? Right now it must be run from the parent directory of "test". https://github.com/makhidkarun/2d6_ogl_chargen/blob/master/test/ts_2d6_ogl_chargen.rb#L10-L12
jyaworski has quit [Ping timeout: 248 seconds]
jenrzzz has quit [Ping timeout: 264 seconds]
jenrzzz has joined #ruby
xuyuheng has quit [Ping timeout: 260 seconds]
xuyuheng has joined #ruby
thapakazi has quit [Ping timeout: 268 seconds]
mtkd has quit []
ta_ has joined #ruby
InfinityFye has joined #ruby
thapakazi has joined #ruby
Puffball has quit [Remote host closed the connection]
InfinityFye has left #ruby [#ruby]
xuyuheng has quit [Ping timeout: 252 seconds]
Puffball has joined #ruby
cadillac_ has quit [Ping timeout: 260 seconds]
duderono_ has quit [Read error: Connection reset by peer]
houhoulis has joined #ruby
<apeiros> uh, require_relative's entire point is that it is location dependent.
<apeiros> use require if you don't want that (and make sure your $LOAD_PATH is set up properly by the executable)
duderonomy has joined #ruby
* apeiros also still thinks using require_relative is doing it wrong (puts knowledge where it does not belong)
mtkd has joined #ruby
<leitz> Just getting back to the code, forgot a lot.
Guest27541 is now known as ged
ged is now known as Guest72776
<leitz> Okay, that makes sense. Adding "test" to the LOAD_PATH and then removing the "_relative" works.
ta_ has quit [Remote host closed the connection]
sanscoeur has joined #ruby
<leitz> Well, not really. If I cd into test, it fails.
<leitz> Dang.
<leitz> Wait, I think I see it.
<leitz> Hmm...nope. Still letting the coffee kick in.
<leitz> Will just let lt run from the project directory.
p0p0pr37_ has joined #ruby
p0p0pr37_ has joined #ruby
p0p0pr37_ has quit [Changing host]
xuyuheng has joined #ruby
sanscoeur has quit [Ping timeout: 245 seconds]
<apeiros> rereading what you wrote though I have to add this:
<apeiros> require_relative does NOT depend on where you run the script from
<apeiros> it solely depends on where the file is located from which you call it
p0p0pr37 has quit [Ping timeout: 265 seconds]
<leitz> Ah, gotcha. I'm working on my tests. First comes coverage.
p0p0pr37_ is now known as p0p0pr37
jarnalyrkar has joined #ruby
xuyuheng has quit [Ping timeout: 240 seconds]
ellcs has quit [Ping timeout: 245 seconds]
jenrzzz has quit [Ping timeout: 240 seconds]
roshanavand has quit [Ping timeout: 245 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
xuyuheng has joined #ruby
jarnalyrkar has quit [Read error: Connection reset by peer]
jarnalyrkar has joined #ruby
roshanavand has joined #ruby
conta has joined #ruby
xuyuheng has quit [Ping timeout: 248 seconds]
roshanavand has quit [Ping timeout: 265 seconds]
xuyuheng has joined #ruby
beefjoe has quit [Ping timeout: 245 seconds]
mtkd has quit []
mroutis has quit [Read error: Connection reset by peer]
mroutis has joined #ruby
xuyuheng has quit [Ping timeout: 260 seconds]
xuyuheng has joined #ruby
Puffball has quit [Remote host closed the connection]
BH23 has quit [Remote host closed the connection]
ur5us has quit [Remote host closed the connection]
xuyuheng has quit [Ping timeout: 265 seconds]
banisterfiend has joined #ruby
banisterfiend has quit [Client Quit]
jyaworski has joined #ruby
_antares_ has joined #ruby
xuyuheng has joined #ruby
_antares_ has quit [Ping timeout: 276 seconds]
xuyuheng has quit [Ping timeout: 260 seconds]
samwheel has joined #ruby
lupine has quit [Read error: Connection reset by peer]
xuyuheng has joined #ruby
jyaworski has quit [Ping timeout: 268 seconds]
jottr has joined #ruby
sanscoeur has joined #ruby
beefjoe has joined #ruby
ellcs has joined #ruby
jottr has quit [Ping timeout: 240 seconds]
amelliaa has joined #ruby
sanscoeur has quit [Ping timeout: 240 seconds]
banisterfiend has joined #ruby
lupine has joined #ruby
Guest72776 is now known as ged
shinnya has quit [Ping timeout: 240 seconds]
ged is now known as Guest24007
samwheel has quit [Quit: Leaving]
xuyuheng has quit [Quit: Quit: My MacBook Pro has gone to sleep. ZZZzzz?]
shinnya has joined #ruby
beefjoe has quit [Remote host closed the connection]
jyaworski has joined #ruby
ciscam has quit [Ping timeout: 260 seconds]
ciscam has joined #ruby
DLSteve has joined #ruby
jenrzzz has quit [Ping timeout: 256 seconds]
beefjoe has joined #ruby
ellcs has quit [Ping timeout: 260 seconds]
mroutis has quit [Ping timeout: 260 seconds]
thapakazi has quit [Ping timeout: 260 seconds]
MzrE has joined #ruby
MzrE2 has joined #ruby
MzrE2 has quit [Remote host closed the connection]
jenrzzz has joined #ruby
jyaworski has quit [Ping timeout: 252 seconds]
suukim has joined #ruby
kapil___ has quit [Quit: Connection closed for inactivity]
tvw has quit []
kapil___ has joined #ruby
tvN has joined #ruby
tvN has left #ruby [#ruby]
jyaworski has joined #ruby
venmx has joined #ruby
<leitz> Sorry for being confused. If I declare a Hash outside of a method, can't the method see the Hash?
<leitz> Not in a class, just a new hash at the beginning of the file and then a method that uses it. Or does the hash need to be passed to the file?
<apeiros> what the object is is unrelated. what you assign it to is relevant.
<apeiros> if you assign it to a local variable, then no, it can't see it. because locale variables are just that: local. methods create their own lvar scope.
breakfast1 has joined #ruby
<breakfast1> hello
Axy has joined #ruby
Axy has joined #ruby
Axy has quit [Changing host]
breakfast1 has left #ruby [#ruby]
Mia has quit [Ping timeout: 252 seconds]
cyberg has joined #ruby
<leitz> Won't say it's the best test coverage tool, but it beats manually checking...
Axy has quit [Read error: Connection reset by peer]
jyaworski has quit [Ping timeout: 260 seconds]
suukim has quit [Read error: Connection reset by peer]
jyaworski has joined #ruby
<havenwood> braincrash: g'mornin'
<havenwood> oops, breakfast1 left
<leitz> havenwood, it's time for lunch. :)
<leitz> And good morning to you!
<havenwood> o/
emilford has quit [Ping timeout: 252 seconds]
<leitz> Having to face reality.
TinkerT has quit [Ping timeout: 260 seconds]
<leitz> My job doesn't want Ruby, I'm not good enough with Ruby to get a job with it, and if I try other languages my code production plummets.
<leitz> The good news is that my wife doesn't mind if I code on our anniversary. :)
TinkerT has joined #ruby
sanscoeur has joined #ruby
apparition has joined #ruby
Mia has joined #ruby
Mia has joined #ruby
Mia has quit [Changing host]
<havenwood> leitz: What does your job want these days?
<leitz> Linux, Ansible, VEEM, NetApp, VMWare.
<havenwood> ah
<leitz> I'm best with the first, okay with the second, and just starting everywhere else.
jenrzzz has quit [Ping timeout: 264 seconds]
<leitz> Lots of team churn, so Python will become the linga franca based on contractor evailability.
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
<leitz> Yesterday I just gave up on stuff and pulled out my Ruby books. This morning I'm finding out how limited my test cases are, via Ruby.
sanscoeur has quit [Ping timeout: 265 seconds]
<leitz> Rather, my code coverage does.
venmx has quit [Ping timeout: 245 seconds]
jenrzzz has quit [Ping timeout: 264 seconds]
TinkerT_ has joined #ruby
TinkerT has quit [Ping timeout: 248 seconds]
jottr has joined #ruby
jenrzzz has joined #ruby
Guest24007 is now known as ged
jottr has quit [Ping timeout: 252 seconds]
ged is now known as Guest20953
<dbugger_> apeiros, I would have like to see that :D
conta has quit [Remote host closed the connection]
conta has joined #ruby
jenrzzz has quit [Ping timeout: 260 seconds]
<apeiros> dbugger_: ?
Puffball has joined #ruby
jyaworski has quit [Ping timeout: 252 seconds]
Mike11 has joined #ruby
emilford has joined #ruby
jenrzzz has joined #ruby
mlkkk has joined #ruby
mlkkk has quit [Client Quit]
emilford has quit [Ping timeout: 256 seconds]
jenrzzz has quit [Ping timeout: 260 seconds]
jyaworski has joined #ruby
apeiros has quit [Read error: Connection reset by peer]
emilford has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
noobineer has joined #ruby
jyaworski has quit [Ping timeout: 245 seconds]
emilford has quit [Ping timeout: 245 seconds]
dr3w_ has joined #ruby
jenrzzz has quit [Ping timeout: 245 seconds]
orbyt_ has joined #ruby
biberu has joined #ruby
emilford has joined #ruby
noobineer has quit [Ping timeout: 276 seconds]
emilford has quit [Ping timeout: 245 seconds]
emilford has joined #ruby
jottr has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
emilford has quit [Ping timeout: 240 seconds]
jenrzzz has quit [Ping timeout: 252 seconds]
jottr has quit [Ping timeout: 252 seconds]
emilford has joined #ruby
shinnya has quit [Ping timeout: 256 seconds]
sanscoeur has joined #ruby
noobineer has joined #ruby
jenrzzz has joined #ruby
sanscoeur has quit [Ping timeout: 264 seconds]
p4ul has joined #ruby
houhouli_ has joined #ruby
rkazak has joined #ruby
houhoulis has quit [Ping timeout: 245 seconds]
conta has quit [Ping timeout: 256 seconds]
Glenjamin has left #ruby [#ruby]
karapetyan has quit [Remote host closed the connection]
schneider has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jenrzzz has quit [Ping timeout: 264 seconds]
jottr has joined #ruby
jenrzzz has joined #ruby
duderonomy has quit [Ping timeout: 264 seconds]
mtkd has joined #ruby
Guest20953 is now known as ged
thapakazi has joined #ruby
ged is now known as Guest77892
jottr has quit [Ping timeout: 260 seconds]
p4ul has quit [Ping timeout: 248 seconds]
jenrzzz has quit [Ping timeout: 245 seconds]
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
duderonomy has joined #ruby
mtkd has quit []
DLSteve has quit [Quit: All rise, the honorable DLSteve has left the channel.]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jyaworski has joined #ruby
thapakazi has quit [Ping timeout: 264 seconds]
thapakazi has joined #ruby
amelliaa has quit [Ping timeout: 245 seconds]
stairmast0r has quit [Quit: bye]
jyaworski has quit [Ping timeout: 256 seconds]
p0p0pr37_ has joined #ruby
p0p0pr37_ has quit [Changing host]
p0p0pr37_ has joined #ruby
stairmast0r has joined #ruby
herbmillerjr has quit [Remote host closed the connection]
p0p0pr37 has quit [Ping timeout: 245 seconds]
p0p0pr37_ is now known as p0p0pr37
mtkd has joined #ruby
conta has joined #ruby
_antares_ has joined #ruby
sytherax has quit [Remote host closed the connection]
MzrE has quit [Read error: Connection reset by peer]
sytherax has joined #ruby
jottr has joined #ruby
mtkd has quit []
sanscoeur has joined #ruby
mtkd has joined #ruby
Puffball has quit [Remote host closed the connection]
apparition has quit [Quit: Bye]
jottr has quit [Ping timeout: 248 seconds]
sanscoeur has quit [Ping timeout: 260 seconds]
SuperL4g is now known as SuperLag
jenrzzz has quit [Ping timeout: 252 seconds]
karapetyan has joined #ruby
KeyJoo has joined #ruby
KeyJoo has quit [Max SendQ exceeded]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
KeyJoo has joined #ruby
karapetyan has quit [Ping timeout: 265 seconds]
p4ul has joined #ruby
conta has quit [Ping timeout: 240 seconds]
eblip is now known as eb0t_
MXfive has joined #ruby
MXfive has quit [Client Quit]
Guest77892 is now known as ged
ged is now known as Guest54195
ellcs has joined #ruby
arashb has joined #ruby
RyanMcCoskrie has joined #ruby
idiocrash has joined #ruby
p4ul has quit [Ping timeout: 245 seconds]
RyanMcCoskrie has quit [Remote host closed the connection]
BH23 has joined #ruby
rkazak has quit [Quit: Sleep.....ing....]
jenrzzz has quit [Ping timeout: 256 seconds]
noobineer has quit [Ping timeout: 260 seconds]
_antares_ has quit [Remote host closed the connection]
jenrzzz has joined #ruby
jyaworski has joined #ruby
jenrzzz has quit [Ping timeout: 256 seconds]
codymj has joined #ruby
rkazak has joined #ruby
jyaworski has quit [Ping timeout: 256 seconds]
houhouli_ has quit []
jenrzzz has joined #ruby
nadir has joined #ruby
BH23 has quit [Remote host closed the connection]
Dimik has joined #ruby
jenrzzz has quit [Ping timeout: 264 seconds]
sanscoeur has joined #ruby
jenrzzz has joined #ruby
sanscoeur has quit [Ping timeout: 260 seconds]
BH23 has joined #ruby
ldepandis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
BH23 has quit [Remote host closed the connection]
houhoulis has joined #ruby
jenrzzz has quit [Ping timeout: 260 seconds]
jenrzzz has joined #ruby
FsMauri21 has joined #ruby
guille-moe has joined #ruby
karapetyan has joined #ruby
jyaworski has joined #ruby
FsMauri21 has quit [Client Quit]
karapetyan has quit [Ping timeout: 245 seconds]
ellcs has quit [Ping timeout: 245 seconds]
jenrzzz has quit [Ping timeout: 248 seconds]
jyaworski has quit [Ping timeout: 252 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
dr3w_ has quit [Read error: Connection reset by peer]
RougeR has joined #ruby
dr3w_ has joined #ruby
pilne has quit [Ping timeout: 240 seconds]
Guest24064 has quit [Quit: ZNC 1.6.6 - http://znc.in]
jalcine has joined #ruby
guille-moe has quit [Ping timeout: 252 seconds]
apeiros has joined #ruby
BH23 has joined #ruby
jyaworski has joined #ruby
emilford has quit [Ping timeout: 264 seconds]
karapetyan has joined #ruby
emilford has joined #ruby
thapakazi has quit [Quit: thapakazi]
Guest54195 is now known as ged
ged is now known as Guest30562
RougeR has quit [Ping timeout: 264 seconds]
emilford has quit [Ping timeout: 240 seconds]
emilford has joined #ruby
ldepandis has joined #ruby
jyaworski has quit [Ping timeout: 248 seconds]
jenrzzz has quit [Ping timeout: 268 seconds]
apeiros has quit [Ping timeout: 245 seconds]
envex has joined #ruby
envex has quit [Client Quit]
envex has joined #ruby
jenrzzz has joined #ruby
oleo has quit [Quit: Leaving]
jottr has joined #ruby
emilford has quit [Ping timeout: 245 seconds]
sanscoeur has joined #ruby
emilford has joined #ruby
oleo has joined #ruby
oleo is now known as Guest9731
jottr has quit [Ping timeout: 245 seconds]
Guest9731 has quit [Changing host]
Guest9731 has joined #ruby
sanscoeur has quit [Ping timeout: 256 seconds]
Guest9731 is now known as oleo
emilford has quit [Ping timeout: 245 seconds]
saltsa has quit [Quit: leaving]
oleo has quit [Remote host closed the connection]
karapetyan has quit [Remote host closed the connection]
emilford has joined #ruby
amar has quit [Remote host closed the connection]
oleo has joined #ruby
oleo is now known as Guest12164
<arne> if i overload a private method, how can i make sure it remains private?
<Zarthus> the language doesn't prevent that? TIL
<arne> well, i guess it makes sense
<arne> nothing you say when defining it, says you don't want it public
<arne> it would actually be more confusing if it was..
Guest12164 has quit [Changing host]
Guest12164 has joined #ruby
<arne> soluation was obvious: "mark" it private with
<arne> private :method_name
Guest12164 is now known as oleo
emilford has quit [Ping timeout: 245 seconds]
apeiros has joined #ruby
venmx has joined #ruby
apeiros has quit [Read error: Connection reset by peer]
apeiros has joined #ruby
mroutis has joined #ruby
t0xik has joined #ruby
jenrzzz has quit [Ping timeout: 252 seconds]
emilford has joined #ruby
houhoulis has quit [Remote host closed the connection]
\void has joined #ruby
kapil___ has quit [Quit: Connection closed for inactivity]
alex`` has quit [Quit: WeeChat 2.1]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
alex`` has joined #ruby
emilford has quit [Ping timeout: 248 seconds]
emilford has joined #ruby
karapetyan has joined #ruby
ogres has joined #ruby
pilne has joined #ruby
skweek has joined #ruby
emilford has quit [Ping timeout: 240 seconds]
emilford has joined #ruby
coderphive has joined #ruby
jyaworski has joined #ruby
Guest30562 is now known as ged
emilford has quit [Ping timeout: 240 seconds]
ged is now known as Guest60037
emilford has joined #ruby
ta_ has joined #ruby
emilford has quit [Ping timeout: 252 seconds]
emilford has joined #ruby
sanscoeur has joined #ruby
phate408 has quit [Remote host closed the connection]
nadir has quit [Quit: Connection closed for inactivity]
sanscoeur has quit [Ping timeout: 260 seconds]
emilford has quit [Ping timeout: 260 seconds]
phate408 has joined #ruby
mroutis has quit [Read error: Connection reset by peer]
jyaworski has quit [Ping timeout: 240 seconds]
mroutis_ has joined #ruby
nahra has joined #ruby
phate408 has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 245 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
emilford has joined #ruby
ryzokuken has joined #ruby
emilford has quit [Ping timeout: 252 seconds]
emilford has joined #ruby
p0p0pr37_ has joined #ruby
p0p0pr37_ has joined #ruby
p0p0pr37_ has quit [Changing host]
emilford has quit [Ping timeout: 245 seconds]
p0p0pr37 has quit [Ping timeout: 256 seconds]
p0p0pr37_ is now known as p0p0pr37
noobineer has joined #ruby
emilford has joined #ruby
tdy has quit [Ping timeout: 245 seconds]
orbyt_ has joined #ruby
emilford has quit [Ping timeout: 256 seconds]
emilford has joined #ruby
DarthGandalf has quit [Quit: Bye]
jyaworski has joined #ruby
emilford has quit [Ping timeout: 245 seconds]
venmx has quit [Ping timeout: 260 seconds]
nicesignal has quit [Remote host closed the connection]
nicesignal has joined #ruby
emilford has joined #ruby
jyaworski has quit [Ping timeout: 245 seconds]
mroutis_ has quit [Ping timeout: 264 seconds]
roshanavand has joined #ruby
emilford has quit [Ping timeout: 268 seconds]
amar has joined #ruby
sanscoeur has joined #ruby
coderphive has quit [Ping timeout: 240 seconds]
Guest60037 is now known as ged
mostlybadfly has joined #ruby
ged is now known as Guest73321
sanscoeur has quit [Ping timeout: 264 seconds]
emilford has joined #ruby
Danielss89 has quit [Ping timeout: 276 seconds]
Danielss89 has joined #ruby
amar has quit [Read error: Connection reset by peer]
mtkd has quit []
amar has joined #ruby
emilford has quit [Ping timeout: 245 seconds]
rkazak has quit [Quit: Sleep.....ing....]
Zaab1t has quit [Quit: Zaab1t]
ciscam has quit [Ping timeout: 252 seconds]
ciscam has joined #ruby
phaul has joined #ruby
ta_ has quit [Remote host closed the connection]
ta_ has joined #ruby
mtkd has joined #ruby
Mike11 has quit [Quit: Leaving.]
dviola has joined #ruby
phaul has quit [Ping timeout: 252 seconds]
cyberg has quit [Ping timeout: 256 seconds]
ta_ has quit [Ping timeout: 260 seconds]
cyberg has joined #ruby
DarthGandalf has joined #ruby
biberu has quit []
eb0t_ is now known as eblip
beefjoe has quit [Remote host closed the connection]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
emilford has joined #ruby
sphenxes has quit [Quit: Leaving]
rkazak has joined #ruby
nicesignal has quit [Quit: WeeChat 1.4]
phaul has joined #ruby
nicesignal has joined #ruby
jyaworski has joined #ruby
dviola has quit [Quit: WeeChat 2.1]
jenrzzz has quit [Ping timeout: 264 seconds]
jyaworski has quit [Ping timeout: 252 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
ogres has quit []
dviola has joined #ruby
ogres has joined #ruby
emilford has quit [Ping timeout: 245 seconds]
sanscoeur has joined #ruby
marr has joined #ruby
noobineer has quit [Read error: Connection reset by peer]
orbyt_ has quit [Quit: Textual IRC Client: www.textualapp.com]
schneider has quit [Ping timeout: 256 seconds]
sanscoeur has quit [Ping timeout: 248 seconds]
phaul has quit [Quit: WeeChat 2.1]
venmx has joined #ruby
banisterfiend has joined #ruby
jarnalyrkar has quit [Read error: Connection reset by peer]
banisterfiend has quit [Client Quit]
Guest10935 has quit [Quit: Hey, what's that button do?]
cats has joined #ruby
desperek has joined #ruby
Guest73321 is now known as ged
ged is now known as Guest52703
jyaworski has joined #ruby
banisterfiend has joined #ruby
ta_ has joined #ruby
banisterfiend has quit [Client Quit]
Mia has quit [Read error: Connection reset by peer]
ldepandis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jyaworski has quit [Ping timeout: 245 seconds]
mroutis has joined #ruby
banisterfiend has joined #ruby
p0p0pr37_ has joined #ruby
p0p0pr37_ has joined #ruby
p0p0pr37_ has quit [Changing host]
emilford has joined #ruby
<zenspider> arne: don't bother with private... then you don't have that problem.
banisterfiend has quit [Client Quit]
<zenspider> but you can jump through all sorts of nasty hoops with an inherited hook method or somesuch
p0p0pr37 has quit [Ping timeout: 240 seconds]
<zenspider> not worth it in my book
p0p0pr37_ is now known as p0p0pr37
banisterfiend has joined #ruby
tvw has joined #ruby
jenrzzz has quit [Ping timeout: 268 seconds]
emilford has quit [Ping timeout: 256 seconds]
armyriad has quit [Ping timeout: 260 seconds]
roshanavand has quit [Ping timeout: 245 seconds]
emilford has joined #ruby
rkazak has quit [Quit: Sleep.....ing....]
duderonomy has quit [Ping timeout: 252 seconds]
jyaworski has joined #ruby
venmx has quit [Ping timeout: 248 seconds]
roshanavand has joined #ruby
emilford has quit [Ping timeout: 260 seconds]
jenrzzz has joined #ruby
lxsameer has quit [Ping timeout: 260 seconds]
venmx has joined #ruby
codymj has quit [Quit: Leaving]
roshanavand has quit [Ping timeout: 245 seconds]
dbugger_ has quit [Ping timeout: 245 seconds]
emilford has joined #ruby
venmx has quit [Remote host closed the connection]
emilford has quit [Ping timeout: 248 seconds]
prutheus has joined #ruby
schleppel has quit [Quit: Konversation terminated!]
<prutheus> Hello. I am using selenium-webdriver with the chrome driver on my ruby project. I want to use http proxies to make my browsing anonymous. I use that setting for it: https://bpaste.net/show/acc224f63f2d but for some reason, the driver does not have the ip of the proxy, instead it has the server ip ... why?
<prutheus> Why is my proxy not working via that method?
jyaworski has quit [Ping timeout: 245 seconds]
reber has quit [Read error: Connection reset by peer]
jyaworski has joined #ruby
Guest44951 has quit []
postmodern has joined #ruby
ELLIOTTCABLE has joined #ruby
emilford has joined #ruby
mroutis has quit [Read error: Connection reset by peer]
mroutis_ has joined #ruby
armyriad has joined #ruby
sanscoeur has joined #ruby
physicist__ has quit [Quit: Lost terminal]
emilford has quit [Ping timeout: 268 seconds]
emilford has joined #ruby
_antares_ has joined #ruby
sanscoeur has quit [Ping timeout: 268 seconds]
prutheus has quit [Quit: Page closed]
plexigras has quit [Ping timeout: 268 seconds]
Guest17221 is now known as larissa
emilford has quit [Ping timeout: 240 seconds]
_antares_ has quit [Ping timeout: 245 seconds]
jenrzzz has quit [Ping timeout: 240 seconds]
emilford has joined #ruby
armyriad has quit [Quit: Leaving]
emilford has quit [Ping timeout: 256 seconds]
lytol has quit [Remote host closed the connection]
emilford has joined #ruby
jenrzzz has joined #ruby
larissa has quit [Quit: bye]
Guest52703 is now known as ged
ged is now known as Guest99338
jyaworski has quit [Ping timeout: 264 seconds]
karapetyan has quit [Remote host closed the connection]
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
karapetyan has joined #ruby
sauvin has quit [Remote host closed the connection]
emilford has quit [Ping timeout: 245 seconds]
larissa has joined #ruby
banisterfiend has joined #ruby
shaman42 has quit [Ping timeout: 276 seconds]
shaman42 has joined #ruby
karapety_ has joined #ruby
docyam2 has joined #ruby
docyam2 has quit [Client Quit]
karapetyan has quit [Ping timeout: 256 seconds]
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
arashb has quit [Ping timeout: 256 seconds]
clemens3 has quit [Ping timeout: 245 seconds]
mrBen2k2k2k has joined #ruby
emilford has joined #ruby
banisterfiend has joined #ruby
amar has quit [Remote host closed the connection]
emilford has quit [Ping timeout: 248 seconds]
desperek has quit [Quit: xoxo]
jenrzzz has quit [Ping timeout: 260 seconds]
emilford has joined #ruby
Andrevan has quit [Quit: WeeChat 2.1]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
mtkd has quit []
jyaworski has joined #ruby
emilford has quit [Ping timeout: 260 seconds]
sanscoeur has joined #ruby
sanscoeur has quit [Ping timeout: 252 seconds]
jyaworski has quit [Ping timeout: 245 seconds]
zwliew has joined #ruby
p0p0pr37_ has joined #ruby
p0p0pr37 has quit [Ping timeout: 245 seconds]
p0p0pr37_ is now known as p0p0pr37
emilford has joined #ruby
rkazak has joined #ruby
emilford has quit [Ping timeout: 245 seconds]
emilford has joined #ruby
skweek has quit [Ping timeout: 260 seconds]