module Sandbox
def self.add_class_method(klass, method_name, proc_obj=nil, &blk)
def self.add_class_method(klass, method_name, proc_obj=nil, &blk) singleton = ( class << self.const_get_from_string(klass); self end) singleton.send(:define_method, method_name, proc_obj || blk) end