closer changed the topic of #ruby-core to: check the latest release candidate for 1.9.1 release ftp.ruby-lang.org:/home/yugui/ruby-1.9.1-r26021+1.tar.bz2
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
tax has quit [Quit: Leaving]
tax has joined #ruby-core
hsbt is now known as hsbt_away
tax has quit [Ping timeout: 252 seconds]
tax has joined #ruby-core
hsbt_away is now known as hsbt
Aethenelle has joined #ruby-core
tax has quit [Read error: Connection reset by peer]
tax has joined #ruby-core
tax has quit [Remote host closed the connection]
tax has joined #ruby-core
tax has quit [Remote host closed the connection]
tax has joined #ruby-core
tax has quit [Quit: Leaving]
tax has joined #ruby-core
tax has quit [Remote host closed the connection]
tax has joined #ruby-core
tax has quit [Read error: Connection reset by peer]
tax has joined #ruby-core
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
tax has quit [Quit: Leaving]
tax has joined #ruby-core
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
tax has quit [Quit: Leaving]
Aethenelle has quit [Quit: Aethenelle]
hsbt is now known as hsbt_away
<znz_jp> biff: [ruby-changes:43004] rhe:r55078 (trunk): openssl: don't test default session lifetime value - http://mla.n-z.jp/?ruby-changes=43004
<zzak> [Ryan Bigg, irc.freenode.net] roelof: .select, not .collect
<zzak> [524ACD6D.cm-4-3d.dynamic.ziggo.nl/82.74.205.109, irc.freenode.net] Radar: thanks, Im trying to display a image which is divided into 2, 3 or 4 parts
<zzak> [524ACD6D.cm-4-3d.dynamic.ziggo.nl/82.74.205.109, irc.freenode.net] I think I will use a table without border so the user sees only 1 image
<zzak> [realname, irc.freenode.net] on MRI don't Structs technically allocate less memory than Arrays?
tax has joined #ruby-core
ItSANg___ has joined #ruby-core
tax has quit [Quit: Leaving]
ItSANgo has quit [Ping timeout: 240 seconds]
<zzak> [109.110.240.32 - http://webchat.freenode.net, irc.freenode.net] I apologise. I am new to refactoring. For a reason I cannot test this. Could you please tell me if my refactoring to the new file correct? (https://gist.github.com/stefioan/6b781ef54b89ea3a5c97f40c42eafe6c) Will it call the new method?
<zzak> [sil, irc.freenode.net] Hi , i wanted to make a standalone authentication in ruby . Any suggestions except SAML ?
hsbt_away is now known as hsbt
<zzak> [14.139.122.120 - http://webchat.freenode.net, irc.freenode.net] I am currently benchmarking ruby, so for every commit made to ruby trunk I have to fetch, recompile everything and then benchmark. Compiling takes me a lot of time. Is there another way out?
<zzak> [14.139.122.120 - http://webchat.freenode.net, irc.freenode.net] I am currently benchmarking ruby, so for every commit made to ruby trunk I have to fetch, recompile everything and then benchmark. Compiling takes me a lot of time. Is there another way out?
<zzak> [purple, irc.freenode.net] saush: i don't think there is an easy way ... i also use "rvm reinstall ruby-head" to rebuild ruby
<zzak> [14.139.122.120 - http://webchat.freenode.net, irc.freenode.net] hanmac: So for a single commit we need to recompile everything? Can't we use the previously compiled ruby in some way and just make the necessary changes?
<zzak> [purple, irc.freenode.net] saush: it depends how you checkout and install your ruby ... if you have a checked out repo from ruby and you build it there, than it should probably only build whats needed to build ... otherwise you might get a problem because you might need to run configure again (and then you probably need to rebuild all again too) ... so its not an easy answer for that.
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
hsbt is now known as hsbt_away
<zzak> [New Now Know How, irc.freenode.net] Hello ! I don't get perfectly the synthax "#{}". I do understand that it can be used in a text with a variable. But I don't understand this way of using it
<zzak> [New Now Know How, irc.freenode.net] all_tasks.map.with_index { |l, i| "(#{i.next}): #{l}"}
<zzak> [New Now Know How, irc.freenode.net] I see that it works however I would have done more something like this all_tasks.map.with_index { |v, i| i + next v
<zzak> [New Now Know How, irc.freenode.net] Can you explain me a bit more the use of this syntax ?
<zzak> [Pete, irc.freenode.net] anything inside the #{} gets evaluated, then the result is interpolated into the string
<zzak> [New Now Know How, irc.freenode.net] I see now
<zzak> [New Now Know How, irc.freenode.net] thanks for the help.
<zzak> [Pete, irc.freenode.net] you're welcome labaleine
nokada_ has joined #ruby-core
nokada has quit [Read error: Connection reset by peer]
nokada has joined #ruby-core
nokada_ has quit [Read error: Connection reset by peer]
nokada_ has joined #ruby-core
nokada has quit [Read error: Connection reset by peer]
<zzak> [Князь Пидер Третий, irc.freenode.net] hey I'm playing around with regular expressions could anyone help me out I'm not sure why there are two matches happening here http://puu.sh/oYCnH/e818e2ebde.png
<zzak> [Князь Пидер Третий, irc.freenode.net] Is it something special about the $ character?
<zzak> [Adædra, irc.freenode.net] It's the end of line
<zzak> [Adædra, irc.freenode.net] you match twice: once you match a<eol>, then <eol> (as a? is ignored the second time)
<zzak> [Jonne Haß, irc.freenode.net] strigonLeader: you make a optional with ?, so the first match is a[endofstringorline] which makes the string "aat", a$ no longer matches, so next you match $/[endofstringorline] and replace it with t, and you get "aatt"
<zzak> [Adædra, irc.freenode.net] Use sub instead of gsub.
<zzak> [Jonne Haß, irc.freenode.net] then the index moved past the string size and the replacement stops
<zzak> [KVIrc 4.2.0 Equilibrium http://kvirc.net/, irc.freenode.net] use /n modifier?
<zzak> [Князь Пидер Третий, irc.freenode.net] thanks guys, sub will do exactly what I want to
<zzak> [Князь Пидер Третий, irc.freenode.net] I'll see if that works as well
<zzak> [Jonne Haß, irc.freenode.net] giz|work: could you elaborate how changing the encoding of the literal would change anything?
<znz_jp> biff: [ruby-changes:43005] nobu:r55079 (trunk): exclude non-VALUE in memo from GC - http://mla.n-z.jp/?ruby-changes=43005
<znz_jp> biff: [ruby-changes:43006] nobu:r55080 (trunk): win32ole.c: remove dead code - http://mla.n-z.jp/?ruby-changes=43006
nagachika has joined #ruby-core
nagachika has quit [Remote host closed the connection]
nagachika has joined #ruby-core
nagachika has quit [Ping timeout: 240 seconds]
<znz_jp> biff: [ruby-changes:43007] nobu:r55081 (trunk): win32ole.c: share the content - http://mla.n-z.jp/?ruby-changes=43007
<znz_jp> biff: [ruby-changes:43008] ngoto:r55082 (trunk): Use RB_GNUC_EXTENSION_BLOCK instead of __extension__ - http://mla.n-z.jp/?ruby-changes=43008
hsbt_away is now known as hsbt
Aethenelle has joined #ruby-core
<znz_jp> biff: [ruby-changes:43009] kazu:r55083 (trunk): fix typos [ci skip] - http://mla.n-z.jp/?ruby-changes=43009
<znz_jp> biff: [ruby-changes:43010] ngoto:r55084 (trunk): Use HAVE_BUILTIN___BUILTIN_CONSTANT_P - http://mla.n-z.jp/?ruby-changes=43010
enebo has joined #ruby-core
Aethenelle has quit [Read error: Connection reset by peer]
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
<znz_jp> biff: [ruby-changes:43011] nobu:r55085 (trunk): thread_pthread.c: no fork, no gvl_atfork - http://mla.n-z.jp/?ruby-changes=43011
shinnya has joined #ruby-core
hsbt is now known as hsbt_away
Aethenelle has joined #ruby-core
<znz_jp> biff: [ruby-changes:43012] ngoto:r55086 (trunk): capa should be even number on 64-bit SPARC for 8-byte word alignment - http://mla.n-z.jp/?ruby-changes=43012
<znz_jp> biff: [ruby-changes:43014] svn:r55088 (trunk): * 2016-05-21 - http://mla.n-z.jp/?ruby-changes=43014
<znz_jp> biff: [ruby-changes:43013] rhe:r55087 (trunk): openssl: improve handling of password for encrypted PEM - http://mla.n-z.jp/?ruby-changes=43013
<znz_jp> biff: [ruby-changes:43015] nobu:r55089 (trunk): ossl.c: suppress warnings - http://mla.n-z.jp/?ruby-changes=43015
<znz_jp> biff: [ruby-changes:43016] nobu:r55090 (trunk): io.c: conditionally used functions - http://mla.n-z.jp/?ruby-changes=43016
<znz_jp> biff: [ruby-changes:43017] nobu:r55091 (trunk): fix build on no-fork-spawnv platforms - http://mla.n-z.jp/?ruby-changes=43017
shinnya has quit [Ping timeout: 244 seconds]
hsbt_away is now known as hsbt
nagachika has joined #ruby-core
hsbt is now known as hsbt_away
<znz_jp> biff: [ruby-changes:43018] nagachika:r55092 (ruby_2_3): merge revision(s) 55078: - http://mla.n-z.jp/?ruby-changes=43018
Aethenelle_ has joined #ruby-core
Aethenelle has quit [Read error: Connection reset by peer]
Aethenelle_ is now known as Aethenelle
rafaelfranca has quit [Remote host closed the connection]
rafaelfranca has joined #ruby-core
rafaelfranca has quit [Remote host closed the connection]
hsbt_away is now known as hsbt
hsbt is now known as hsbt_away
rafaelfranca has joined #ruby-core
rafaelfranca has joined #ruby-core
hsbt_away is now known as hsbt
<dsferreira> ruby 3x3
<dsferreira> How can we take part on the discussions?
<dsferreira> Is there any channel we can subscribe to?
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
hsbt is now known as hsbt_away
nagachika has quit [Remote host closed the connection]
nagachika has joined #ruby-core
nagachika has quit [Ping timeout: 252 seconds]
_whitelogger has joined #ruby-core
enebo has quit [Quit: enebo]
hsbt_away is now known as hsbt
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
rafaelfranca has quit [Remote host closed the connection]
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
shinnya has joined #ruby-core
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
nagachika has joined #ruby-core
nagachika has quit [Ping timeout: 244 seconds]