Sha256: 810c103d9941c747becf37646bca94bdb22415c5013542914ead2f2245391974
Contents?: true
Size: 543 Bytes
Versions: 1
Compression:
Stored size: 543 Bytes
Contents
require 'active_support/core_ext/object/inclusion' if ARGV.first.in?([nil, "-h", "--help"]) puts "Usage: rails benchmarker [times] 'Person.expensive_way' 'Person.another_expensive_way' ..." exit 1 end begin N = Integer(ARGV.first) ARGV.shift rescue ArgumentError N = 1 end require 'benchmark' include Benchmark # Don't include compilation in the benchmark ARGV.each { |expression| eval(expression) } bm(6) do |x| ARGV.each_with_index do |expression, idx| x.report("##{idx + 1}") { N.times { eval(expression) } } end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
railties-3.1.0.beta1 | lib/rails/commands/benchmarker.rb |