Fixes instance of Ruby version = 1.8.7 for Kernel method

This commit is contained in:
Harry Love 2009-04-28 14:12:05 -06:00
Родитель 449c6afca2
Коммит b8e453834b
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -131,10 +131,10 @@ module Kernel
def __called_from__
caller[1][/`([^']+)'/, 1]
end if RUBY_VERSION > '1.8.7'
end if RUBY_VERSION >= '1.8.7'
def expirable_memoize(reload = false, storage = nil)
current_method = RUBY_VERSION > '1.8.7' ? __called_from__ : __method__(1)
current_method = RUBY_VERSION >= '1.8.7' ? __called_from__ : __method__(1)
storage = "@#{storage || current_method}"
if reload
instance_variable_set(storage, nil)