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
jstorimer-deep-test-0.2.0 sample_rails_project/vendor/rails/railties/lib/commands/performance/benchmarker.rb
jstorimer-deep-test-0.1.0 sample_rails_project/vendor/rails/railties/lib/commands/performance/benchmarker.rb
gemstreamer-1.2.0 spec/assets/testapp/vendor/rails/railties/lib/commands/performance/benchmarker.rb
gemstreamer-1.1.1 spec/assets/testapp/vendor/rails/railties/lib/commands/performance/benchmarker.rb
gemstreamer-1.1.0 spec/assets/testapp/vendor/rails/railties/lib/commands/performance/benchmarker.rb
gemstreamer-1.0.0 spec/assets/testapp/vendor/rails/railties/lib/commands/performance/benchmarker.rb
gemstreamer-0.0.0 spec/assets/testapp/vendor/rails/railties/lib/commands/performance/benchmarker.rb
radiant-rc-0.9.0 vendor/rails/railties/lib/commands/performance/benchmarker.rb
rails-2.2.3 lib/commands/performance/benchmarker.rb
webroar-0.2.2 src/admin_panel/vendor/rails/railties/lib/commands/performance/benchmarker.rb
radiant-0.8.1 vendor/rails/railties/lib/commands/performance/benchmarker.rb
rails-2.3.4 lib/commands/performance/benchmarker.rb
rails-2.3.3 lib/commands/performance/benchmarker.rb
antfarm-0.3.0 rails/vendor/rails/railties/lib/commands/performance/benchmarker.rb
antfarm-0.4.0 rails/vendor/rails/railties/lib/commands/performance/benchmarker.rb
authorails-1.0.0 lib/commands/performance/benchmarker.rb
backlog-0.0.0 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.0.1 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.0.2 vendor/rails/railties/lib/commands/performance/benchmarker.rb
backlog-0.0.5 vendor/rails/railties/lib/commands/performance/benchmarker.rb