class ActiveSupport::Testing::Performance::Metrics::Base

def with_gc_stats

def with_gc_stats
  GC::Profiler.enable
  GC.start
  yield
ensure
  GC::Profiler.disable
end