aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/benchmarking.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_controller/benchmarking.rb')
-rw-r--r--actionpack/lib/action_controller/benchmarking.rb7
1 files changed, 2 insertions, 5 deletions
diff --git a/actionpack/lib/action_controller/benchmarking.rb b/actionpack/lib/action_controller/benchmarking.rb
index a30212c8bd..8b548f9d25 100644
--- a/actionpack/lib/action_controller/benchmarking.rb
+++ b/actionpack/lib/action_controller/benchmarking.rb
@@ -8,11 +8,8 @@ module ActionController #:nodoc:
base.extend(ClassMethods)
base.class_eval do
- alias_method :perform_action_without_benchmark, :perform_action
- alias_method :perform_action, :perform_action_with_benchmark
-
- alias_method :render_without_benchmark, :render
- alias_method :render, :render_with_benchmark
+ alias_method_chain :perform_action, :benchmark
+ alias_method_chain :render, :benchmark
end
end