Add missing clear method to memory_store

This commit is contained in:
Tobias Lütke
2008-04-29 16:34:01 -04:00
parent 09517e3aea
commit 5be5305877

View File

@@ -24,6 +24,10 @@ module ActiveSupport
super
@data.delete_if { |k,v| k =~ matcher }
end
def clear
@data.clear
end
end
end
end