lib/ting/procable.rb in ting-0.9.0 vs lib/ting/procable.rb in ting-0.10.0
- old
+ new
@@ -1,7 +1,11 @@
module Ting
module Procable
def to_proc
method(:call).to_proc
end
+
+ def memoize
+ MemoizeCall.new(self)
+ end
end
end