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]
<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?
<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] 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.
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: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