Skip to content

Instantly share code, notes, and snippets.

@LTe
Created June 15, 2011 10:28
Show Gist options
  • Save LTe/1026851 to your computer and use it in GitHub Desktop.
Save LTe/1026851 to your computer and use it in GitHub Desktop.
class Proc
alias :original_call :call
def call
puts "custom call from proc"
original_call
super if defined? super
end
end
proc = Proc.new do
puts "hello i'm proc!"
end
proc.call
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment