Class: Bound::PublicSendCaller

Inherits:
Object
  • Object
show all
Defined in:
lib/bound/caller.rb

Class Method Summary collapse

Class Method Details

.call(object, method, *args) ⇒ Object



3
4
5
# File 'lib/bound/caller.rb', line 3

def self.call(object, method, *args)
  object.public_send(method, *args)
end