module Tins::AskAndSend

def ask_and_send_or_self(method_name, *args, &block)

def ask_and_send_or_self(method_name, *args, &block)
  if respond_to?(method_name)
    __send__(method_name, *args, &block)
  else
    self
  end
end