Created
May 10, 2020 06:40
-
-
Save korakotlee/9b606e563595b99257bebb8956eb8167 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# lib/profiler.rb | |
class Profiler | |
def self.prof(file_name) | |
RubyProf.start | |
yield | |
results = RubyProf.stop | |
# Print a flat profile to text | |
File.open "#{Rails.root}/tmp/profiler-#{file_name}-graph.html", 'w' do |file| | |
RubyProf::GraphHtmlPrinter.new(results).print(file) | |
end | |
File.open "#{Rails.root}/tmp/profiler-#{file_name}-stack.html", 'w' do |file| | |
RubyProf::CallStackPrinter.new(results).print(file) | |
end | |
end | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment