From b3a56dfbb303cfe9528244ddcc8c1fe5fee2fa6c Mon Sep 17 00:00:00 2001 From: Matias Flores Date: Sun, 27 Sep 2009 16:14:40 -0300 Subject: [PATCH] Prefer tap to returning --- actionmailer/lib/action_mailer/helpers.rb | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/actionmailer/lib/action_mailer/helpers.rb b/actionmailer/lib/action_mailer/helpers.rb index 1bb8682..ecd8f0f 100644 --- a/actionmailer/lib/action_mailer/helpers.rb +++ b/actionmailer/lib/action_mailer/helpers.rb @@ -106,7 +106,7 @@ module ActionMailer private # Extend the template class instance with our controller's helper module. def initialize_template_class_with_helper(assigns) - returning(template = initialize_template_class_without_helper(assigns)) do + initialize_template_class_without_helper(assigns).tap do |template| template.extend self.class.master_helper_module end end -- 1.6.0.4