You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.info "`gem install ruby-prof` to enable action profiling."
yield if block_given?
end
end
class ActionController::Base
extend MissingActionProfiler
include MissingActionProfiler
logger.info "Action profiling disabled. `gem install ruby-prof` to enable."
end
else
require 'action_profiler'
class ActionController::Base
include ActionController::ActionProfiler
logger.info "Action profiling enabled. Add around_filter :action_profiler to ApplicationController then append ?profile=process_time to any URL to profile the page load and download a calltree file. Open it with kcachegrind."