From b7a0602f72a384301a8c232994e94a2554ce389d Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Tue, 10 Jun 2014 17:47:53 -0500 Subject: [PATCH] Remove ruby-prof rake task The areas that we are interested in optimizing for performance are things that are invoked repeatedly, and are not evident in the test suite. --- Library/Homebrew/test/Rakefile | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/Library/Homebrew/test/Rakefile b/Library/Homebrew/test/Rakefile index cfb3d7d97c..75b34761aa 100644 --- a/Library/Homebrew/test/Rakefile +++ b/Library/Homebrew/test/Rakefile @@ -48,17 +48,3 @@ begin end rescue LoadError end - -begin - require 'rubygems' - require 'ruby-prof/task' - - RubyProf::ProfileTask.new do |t| - t.libs << Dir.pwd - t.test_files = TEST_FILES - t.output_dir = TEST_DIRECTORY+'prof' - t.printer = :graph_html - t.min_percent = 2 - end -rescue LoadError -end