зеркало из https://github.com/github/aws-s3.git
Fixes instance of Ruby version = 1.8.7 for Kernel method
This commit is contained in:
Родитель
449c6afca2
Коммит
b8e453834b
|
@ -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)
|
||||
|
|
Загрузка…
Ссылка в новой задаче