What can I use to profile code in 1.9.2? All of the versions of ruby-prof I've found segfault against 1.9.2.
For instance, when I add
gem "ruby-prof"
to my Rails project's Gemfile and run
bundle
bundle exec ruby-prof config/environment.rb
I get a segfault.
Is there a new profiling gem in town? Is there a way to make ruby-prof play nice?
gem "ruby-prof"
but run the bundle commands? – Aleutianruby-prof
in the bundle, then I can'tbundle exec ruby-prof
. Butbundle exec ruby config/environment.rb
doesn't segfault. – Bradbradan