summaryrefslogtreecommitdiffstats
path: root/lib/redmine/hook.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2010-11-14 16:24:21 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2010-11-14 16:24:21 +0000
commit2ee45e8cac909991ddf782a8d2947ae99473404a (patch)
tree48456af96778489fcc65f77c347140adf206d66a /lib/redmine/hook.rb
parentc4a218358f499b6252874b8260ffa475fd7be3d7 (diff)
downloadredmine-2ee45e8cac909991ddf782a8d2947ae99473404a.tar.gz
redmine-2ee45e8cac909991ddf782a8d2947ae99473404a.zip
Use Object#tap instead of #returning (#6887).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4406 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/hook.rb')
-rw-r--r--lib/redmine/hook.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/hook.rb b/lib/redmine/hook.rb
index 7f4b6e07e..84c33e326 100644
--- a/lib/redmine/hook.rb
+++ b/lib/redmine/hook.rb
@@ -57,7 +57,7 @@ module Redmine
# Calls a hook.
# Returns the listeners response.
def call_hook(hook, context={})
- returning [] do |response|
+ [].tap do |response|
hls = hook_listeners(hook)
if hls.any?
hls.each {|listener| response << listener.send(hook, context)}