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
rails-2.3.18 lib/commands/performance/benchmarker.rb
rails_csi-2.3.5.p8 lib/commands/performance/benchmarker.rb
rails-2.3.17 lib/commands/performance/benchmarker.rb
rails_csi-2.3.5.p7 lib/commands/performance/benchmarker.rb
rails_csi-2.3.5.p6 lib/commands/performance/benchmarker.rb
rails-2.3.16 lib/commands/performance/benchmarker.rb
rails-2.3.15 lib/commands/performance/benchmarker.rb
radiant-1.0.0 ruby-debug/ruby/1.8/gems/rails-2.3.14/lib/commands/performance/benchmarker.rb
vanity-1.7.1 vendor/ruby/1.9.1/gems/rails-2.3.12/lib/commands/performance/benchmarker.rb
rails-2.3.14 lib/commands/performance/benchmarker.rb
kajam-1.0.3.rc2 vendor/rails/railties/lib/commands/performance/benchmarker.rb
rails-2.3.12 lib/commands/performance/benchmarker.rb
radiant-1.0.0.rc2 vendor/rails/railties/lib/commands/performance/benchmarker.rb
radiant-1.0.0.rc1 vendor/rails/railties/lib/commands/performance/benchmarker.rb
webroar-0.5.0 src/admin_panel/vendor/rails/railties/lib/commands/performance/benchmarker.rb
rails-2.3.11 lib/commands/performance/benchmarker.rb
radiantcms-couchrest_model-0.2.4 vendor/rails/railties/lib/commands/performance/benchmarker.rb
radiantcms-couchrest_model-0.2.2 vendor/rails/railties/lib/commands/performance/benchmarker.rb
radiantcms-couchrest_model-0.2.1 vendor/rails/railties/lib/commands/performance/benchmarker.rb
radiantcms-couchrest_model-0.2 vendor/rails/railties/lib/commands/performance/benchmarker.rb