Skip to content

Instantly share code, notes, and snippets.

@neektza
Created April 14, 2017 17:53
Show Gist options
  • Save neektza/d057c087048eb306118d305769d1b27a to your computer and use it in GitHub Desktop.
Save neektza/d057c087048eb306118d305769d1b27a to your computer and use it in GitHub Desktop.
module Celluloid
class Call
def dispatch(obj)
check(obj) # check if @method's arity matches
_b = @block && @block.to_proc
obj.public_send(@method, *@arguments, &_b)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment