Skip to content

Instantly share code, notes, and snippets.

@tenderlove
Created July 25, 2018 21:52
Show Gist options
  • Save tenderlove/5b534b11b62dc03c544e0fc5bc0c7a57 to your computer and use it in GitHub Desktop.
Save tenderlove/5b534b11b62dc03c544e0fc5bc0c7a57 to your computer and use it in GitHub Desktop.
#!/Users/aaron/.rbenv/versions/ruby-trunk/bin/ruby
require 'benchmark/ips'
require './lib/track_obj'
if ARGV[0] == "--trace"
tp = TrackObj.make_tp
tp.enable
end
Benchmark.ips do |x|
x.report "allocation speed" do
Object.new
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment