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.
This commit is contained in:
Jack Nagel 2014-06-10 17:47:53 -05:00
parent 191e588212
commit b7a0602f72

View File

@ -48,17 +48,3 @@ begin
end end
rescue LoadError rescue LoadError
end 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