module Sandbox

def self.add_method(klass, method_name, proc_obj=nil, &blk)

def self.add_method(klass, method_name, proc_obj=nil, &blk)
  self.const_get_from_string(klass).send(:define_method, method_name, proc_obj || blk)
end