aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-08-07 14:55:14 -0500
committerJoshua Peek <josh@joshpeek.com>2008-08-07 14:55:14 -0500
commita8057669ff6ba11e228fc73eef7390b826d0de25 (patch)
treefab205b4b3900d9c9a3ef0f169491ae94d327317
parent105093f90728f81268367bd52581fccfa165f170 (diff)
downloadrails-a8057669ff6ba11e228fc73eef7390b826d0de25.tar.gz
rails-a8057669ff6ba11e228fc73eef7390b826d0de25.tar.bz2
rails-a8057669ff6ba11e228fc73eef7390b826d0de25.zip
Fixed memoize with punctuation and freezing memoized methods with arguments
Signed-off-by: Joshua Peek <josh@joshpeek.com>
-rw-r--r--activesupport/lib/active_support/memoizable.rb15
-rw-r--r--activesupport/test/memoizable_test.rb15
2 files changed, 26 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/memoizable.rb b/activesupport/lib/active_support/memoizable.rb
index 7e2e28712c..e6049d9496 100644
--- a/activesupport/lib/active_support/memoizable.rb
+++ b/activesupport/lib/active_support/memoizable.rb
@@ -10,9 +10,16 @@ module ActiveSupport
end
def freeze_with_memoizable
- methods.each do |method|
- __send__($1) if method.to_s =~ /^_unmemoized_(.*)/
- end unless frozen?
+ unless frozen?
+ methods.each do |method|
+ if method.to_s =~ /^_unmemoized_(.*)/
+ begin
+ __send__($1)
+ rescue ArgumentError
+ end
+ end
+ end
+ end
freeze_without_memoizable
end
@@ -21,7 +28,7 @@ module ActiveSupport
def memoize(*symbols)
symbols.each do |symbol|
original_method = "_unmemoized_#{symbol}"
- memoized_ivar = "@_memoized_#{symbol}"
+ memoized_ivar = "@_memoized_#{symbol.to_s.sub(/\?\Z/, '_query').sub(/!\Z/, '_bang')}"
class_eval <<-EOS, __FILE__, __LINE__
include Freezable
diff --git a/activesupport/test/memoizable_test.rb b/activesupport/test/memoizable_test.rb
index cd84dcda53..01631dc5e1 100644
--- a/activesupport/test/memoizable_test.rb
+++ b/activesupport/test/memoizable_test.rb
@@ -16,6 +16,16 @@ uses_mocha 'Memoizable' do
"Josh"
end
+ def name?
+ true
+ end
+ memoize :name?
+
+ def update(name)
+ "Joshua"
+ end
+ memoize :update
+
def age
@age_calls += 1
nil
@@ -88,6 +98,10 @@ uses_mocha 'Memoizable' do
assert_equal 1, @person.name_calls
end
+ def test_memoization_with_punctuation
+ assert_equal true, @person.name?
+ end
+
def test_memoization_with_nil_value
assert_equal nil, @person.age
assert_equal 1, @person.age_calls
@@ -114,6 +128,7 @@ uses_mocha 'Memoizable' do
def test_memoized_is_not_affected_by_freeze
@person.freeze
assert_equal "Josh", @person.name
+ assert_equal "Joshua", @person.update("Joshua")
end
def test_memoization_with_args