Sha256: 6181419f795ab58d07d54457f6f0cbe13374193d05237375d7c7901d37656df1
Contents?: true
Size: 1.02 KB
Versions: 3
Compression:
Stored size: 1.02 KB
Contents
require 'benchmark' unless Object.const_defined? :BindingOfCaller $:.unshift File.expand_path '../../lib', __FILE__ require 'binding_of_caller' require 'binding_of_caller/version' end n = 250000 Benchmark.bm(10) do |x| x.report("#of_caller") do 1.upto(n) do 1.times do 1.times do binding.of_caller(2) binding.of_caller(1) end end end end x.report("#frame_count") do 1.upto(n) do 1.times do 1.times do binding.frame_count end end end end x.report("#callers") do 1.upto(n) do 1.times do 1.times do binding.callers end end end end x.report("#frame_description") do 1.upto(n) do 1.times do 1.times do binding.of_caller(1).frame_description end end end end x.report("#frame_type") do 1.upto(n) do 1.times do 1.times do binding.of_caller(1).frame_type end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
binding_of_caller-0.8.0 | examples/benchmark.rb |
binding_of_caller-0.7.3 | examples/benchmark.rb |
binding_of_caller-0.7.3.pre1 | examples/benchmark.rb |