diff options
author | Matias Flores <mflores@atlanware.com> | 2009-09-27 16:14:40 -0300 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2009-09-28 14:38:24 +1300 |
commit | 173ee14c3d95238cfb828400862a24a14aec600f (patch) | |
tree | 79b57b6dc6dc0bb19f6a15a7097a61c8f89cd0ef | |
parent | c9318e9010712aeae33b1dd0e8bed4795ae37caf (diff) | |
download | rails-173ee14c3d95238cfb828400862a24a14aec600f.tar.gz rails-173ee14c3d95238cfb828400862a24a14aec600f.tar.bz2 rails-173ee14c3d95238cfb828400862a24a14aec600f.zip |
Prefer tap to returning
Signed-off-by: Michael Koziarski <michael@koziarski.com>
[#3280 state:committed]
-rw-r--r-- | 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 1bb8682315..ecd8f0f5b6 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 |