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
charliesome has joined #ruby-core
charliesome_ has joined #ruby-core
charliesome has quit [Ping timeout: 244 seconds]
hsbt_away is now known as hsbt
<znz_jp>
biff: [ruby-changes:43094] duerst:r55168 (trunk): * test/ruby/enc/test_case_comprehensive.rb: Add set of comprehensive - http://mla.n-z.jp/?ruby-changes=43094
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
charliesome has joined #ruby-core
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
hsbt_away is now known as hsbt
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
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
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
madgen has joined #ruby-core
hsbt_away is now known as hsbt
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
heroux has quit [Ping timeout: 246 seconds]
heroux has joined #ruby-core
knu_ has quit [Quit: Reboot...]
knu has joined #ruby-core
charliesome has joined #ruby-core
madgen has quit [Read error: Connection reset by peer]
madgen has joined #ruby-core
nagachika has joined #ruby-core
nagachika has quit [Remote host closed the connection]
madgen has quit [Ping timeout: 260 seconds]
madgen has joined #ruby-core
enebo has joined #ruby-core
Aethenelle has joined #ruby-core
<zzak>
[Rick Jones, irc.freenode.net] How to deal with unexpected values? Should I put in a guard or use exceptions? Suggestions...
<zzak>
[philip, irc.freenode.net] Expect them and you not be disappointed...
<zzak>
[Rick Jones, irc.freenode.net] Very zen :D
<zzak>
[Vladimir Karmishin, irc.freenode.net] wrote 3 line according habitullence question, but phutchins answered with 8 words
<zzak>
[philip, irc.freenode.net] :)
<zzak>
[Rick Jones, irc.freenode.net] I might need the eight lines though, wisdom that is beyond my grasp
<zzak>
[Rick Jones, irc.freenode.net] :P
Aethenelle has quit [Ping timeout: 260 seconds]
<zzak>
[shevy, irc.freenode.net] it is either beer - or wisdom
<zzak>
[Rick Jones, irc.freenode.net] lol
<zzak>
[Rick Jones, irc.freenode.net] from great beer, comes great wisdom
<zzak>
[Rick Jones, irc.freenode.net] and from great wisdom, comes great beer
<zzak>
[Vladimir Karmishin, irc.freenode.net] exceptions are for general stuff, like user can't log in, in case of DB connection failure, for example. Guards are for local stuff, like dude forgot @ from his/her email address
<zzak>
[Vladimir Karmishin, irc.freenode.net] IMHO, of course
<zzak>
[shevy, irc.freenode.net] habitullence so true
<zzak>
[jokke, irc.freenode.net] hello, i assume someone here uses mac os. could that someone run following command for me and paste the output? openssl enc -h 2>&1 | grep '\-gcm'
<zzak>
[Rick Jones, irc.freenode.net] Vlat, I see what you're getting at.. I guess it comes down simply to what you consider an exception and where it can be dealt with. If you can deal with it locally, then do so, otherwise you need to throw it up the chain.
<zzak>
[Rick Jones, irc.freenode.net] Sounds like a sensible approach
<zzak>
[Vladimir Karmishin, irc.freenode.net] habitullence: exception is something big,terrible and loud. like a whole application crash. :) in my own way of thinking.
tax has quit [Read error: Connection reset by peer]
tax has joined #ruby-core
tax has quit [Read error: Connection reset by peer]
tax has joined #ruby-core
tax has quit [Read error: Connection reset by peer]
tax has joined #ruby-core
shinnya has joined #ruby-core
nagachika has joined #ruby-core
<zzak>
[Bradley Schaefer, irc.freenode.net] in ruby 2.2 I have a `define_method(:foo) { super(args) }` sort of thing, and it works great. In 2.3 I get "super called outside of method" errors
nagachika has quit [Ping timeout: 272 seconds]
<zzak>
[Bradley Schaefer, irc.freenode.net] Do I have to fall back to the old alias_method_chain style of calling super there?