From 9dc4f6611043d032e576d93430cd29efc8864bc4 Mon Sep 17 00:00:00 2001 From: Nick Date: Sat, 19 Apr 2008 10:18:02 -0500 Subject: Add method punctuation handling to #synchronize --- .../lib/active_support/core_ext/module/synchronization.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'activesupport/lib') diff --git a/activesupport/lib/active_support/core_ext/module/synchronization.rb b/activesupport/lib/active_support/core_ext/module/synchronization.rb index bf7740f851..c55a3f07ee 100644 --- a/activesupport/lib/active_support/core_ext/module/synchronization.rb +++ b/activesupport/lib/active_support/core_ext/module/synchronization.rb @@ -19,13 +19,15 @@ class Module end methods.each do |method| - if instance_methods.include?("#{method}_without_synchronization") + aliased_method, punctuation = method.to_s.sub(/([?!=])$/, ''), $1 + + if instance_methods.include?("#{aliased_method}_without_synchronization#{punctuation}") raise ArgumentError, "#{method} is already synchronized. Double synchronization is not currently supported." end module_eval(<<-EOS, __FILE__, __LINE__) - def #{method}_with_synchronization(*args, &block) + def #{aliased_method}_with_synchronization#{punctuation}(*args, &block) #{with}.synchronize do - #{method}_without_synchronization(*args,&block) + #{aliased_method}_without_synchronization#{punctuation}(*args,&block) end end EOS -- cgit v1.2.3