Skip to content

Instantly share code, notes, and snippets.

@mhoran
Created February 10, 2012 16:06
Show Gist options
  • Save mhoran/1790509 to your computer and use it in GitHub Desktop.
Save mhoran/1790509 to your computer and use it in GitHub Desktop.
ruby-1.8.7-p352 :001 > class T
ruby-1.8.7-p352 :002?> def something
ruby-1.8.7-p352 :003?> do_something do
ruby-1.8.7-p352 :004 > raise 'hello'
ruby-1.8.7-p352 :005?> end
ruby-1.8.7-p352 :006?> end
ruby-1.8.7-p352 :007?> def do_something
ruby-1.8.7-p352 :008?> yield
ruby-1.8.7-p352 :009?> end
ruby-1.8.7-p352 :010?> end
=> nil
ruby-1.8.7-p352 :011 > class U < T
ruby-1.8.7-p352 :012?> def something
ruby-1.8.7-p352 :013?> super
ruby-1.8.7-p352 :014?> rescue
ruby-1.8.7-p352 :015?> return 'bananas'
ruby-1.8.7-p352 :016?> end
ruby-1.8.7-p352 :017?> end
=> nil
ruby-1.8.7-p352 :019 > U.new.something
=> "bananas"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment