module Sandbox

def self.const_get_from_string(klass)

def self.const_get_from_string(klass)
  klass.split("::").inject(self) { |const, klass| const.const_get(klass) }
end