Skip to content

Instantly share code, notes, and snippets.

@sbellware
Created December 29, 2013 22:16
Show Gist options
  • Save sbellware/8175453 to your computer and use it in GitHub Desktop.
Save sbellware/8175453 to your computer and use it in GitHub Desktop.
require 'benchmark'
class Thing
end
module SomeMod
end
Benchmark.bm do |x|
x.report do
1_000_000.times do
t = Thing.new
t.extend SomeMod
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment