brew/Library/Contributions/cmd/brew-profile.rb

13 lines
261 B
Ruby
Raw Normal View History

begin
require 'rubygems'
require 'ruby-prof'
rescue LoadError
abort 'This command requires the ruby-prof gem'
end
require 'formula'
RubyProf.start
Formula.names.each { |n| Formula.factory(n) }
RubyProf::GraphHtmlPrinter.new(RubyProf.stop).print(STDOUT)