wtnabe (owner)

Revisions

gist: 112660 Download_button fork
public
Public Clone URL: git://gist.github.com/112660.git
Embed All Files: show embed
except-with-rake.rb #
1
2
3
4
5
6
class FooExcept < StandardError; end
 
task :default do
  raise FooExcept, 'bar'
end