Sha256: 50e74b2a06bc5b4f1c6009e524931d8ccd1b5c3ef2e3898f46811cbc89d56117

Contents?: true

Size: 524 Bytes

Versions: 176

Compression:

Stored size: 524 Bytes

Contents

if ARGV.empty?
  puts "Usage: ./script/performance/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 RAILS_ROOT + '/config/environment'
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

176 entries across 175 versions & 19 rubygems

Version Path
backlog-0.5.10 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.5.4 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.5.3 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.5.6 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.5.5 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.5.7 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.5.8 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.5.9 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.6.0 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.6.2 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.6.1 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.6.3 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.6.5 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.6.4 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.6.6 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.7.0 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.7.1 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.7.10 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.7.12 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.7.11 vendor/rails/railties/lib/commands/performance/benchmarker.rb