Created
May 3, 2012 20:06
-
-
Save panthomakos/2588879 to your computer and use it in GitHub Desktop.
Benchmark Your Bundle
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
#!/usr/bin/env ruby | |
require 'benchmark' | |
REGEXPS = [ | |
/^no such file to load -- (.+)$/i, | |
/^Missing \w+ (?:file\s*)?([^\s]+.rb)$/i, | |
/^Missing API definition file in (.+)$/i, | |
/^cannot load such file -- (.+)$/i, | |
] | |
def pull(dep) | |
required_file = nil | |
begin | |
# Loop through all the specified autorequires for the | |
# dependency. If there are none, use the dependency's name | |
# as the autorequire. | |
Array(dep.autorequire || dep.name).each do |file| | |
required_file = file | |
Kernel.require file | |
end | |
rescue LoadError => e | |
if dep.autorequire.nil? && dep.name.include?('-') | |
begin | |
namespaced_file = dep.name.gsub('-', '/') | |
Kernel.require namespaced_file | |
rescue LoadError | |
REGEXPS.find { |r| r =~ e.message } | |
raise if dep.autorequire || $1.gsub('-', '/') != namespaced_file | |
end | |
else | |
REGEXPS.find { |r| r =~ e.message } | |
raise if dep.autorequire || $1 != required_file | |
end | |
end | |
end | |
require 'rails/all' | |
# If you would prefer gems to incur the cost of autoloading | |
# Rails frameworks, then comment out this next line. | |
ActiveSupport::Autoload.eager_autoload! | |
$VERBOSE = nil | |
Benchmark.bm do |x| | |
Bundler.setup.dependencies.each do |dependency| | |
x.report(dependency.name[0..20].ljust(21)) do | |
pull(dependency) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This script is so awesome!!! I added sorting and percentages here https://gist.github.com/ankane/5022636