Sha256: 847e7f13f72f577edbed2619aa0acb02e6856f80925d86002a9cbd49a537f2ba
Contents?: true
Size: 342 Bytes
Versions: 44
Compression:
Stored size: 342 Bytes
Contents
module Tins module AskAndSend def ask_and_send(method_name, *args, &block) if respond_to?(method_name) __send__(method_name, *args, &block) end end def ask_and_send!(method_name, *args, &block) if respond_to?(method_name, true) __send__(method_name, *args, &block) end end end end
Version data entries
44 entries across 43 versions & 3 rubygems