Reputation: 45943
I found this SO question that mentions the GC profiler: Is there a way to profile ruby 1.9.2 scripts with memory allocation reports?
Are there any other profilers? Preferably free, easy to use, and work with Ruby 1.9.3.
Upvotes: 0
Views: 201
Reputation: 1509
There's a built-in profiler available with "-r profile", which I've used happily. There's also a gem called ruby-prof.
Upvotes: 1