class RSpec::Core::Configuration

def custom_formatter(formatter_ref)

def custom_formatter(formatter_ref)
  if Class === formatter_ref
    formatter_ref
  elsif string_const?(formatter_ref)
    begin
      eval(formatter_ref)
    rescue NameError
      require path_for(formatter_ref)
      eval(formatter_ref)
    end
  end
end