Skip to content

Instantly share code, notes, and snippets.

@bankair
Created August 13, 2015 15:48
Show Gist options
  • Save bankair/1adc553423c2fd22b910 to your computer and use it in GitHub Desktop.
Save bankair/1adc553423c2fd22b910 to your computer and use it in GitHub Desktop.
class Proc
def + (first)
Proc.new { |*args| call(*first.call(*args)) }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment