method
run_profile
v3.2.8 -
Show latest stable
- Class:
ActiveSupport::Testing::Performance
run_profile(metric)protected
No documentation available.
# File activesupport/lib/active_support/testing/performance.rb, line 136
def run_profile(metric)
klass = full_profile_options[:benchmark] ? Benchmarker : Profiler
performer = klass.new(self, metric)
performer.run
puts performer.report
performer.record
end