golf_prelude.rb: suppress the redefining warning

This commit is contained in:
Nobuyoshi Nakada 2019-06-22 23:38:07 +09:00
Родитель bad66f3e36
Коммит f738eeabc2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4BC7D6DF58D8DF60
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -1,6 +1,7 @@
class Object
@@golf_hash = {}
verbose, $VERBOSE = $VERBOSE, nil
def method_missing m, *a, &b
t = @@golf_hash[ [m, self.class] ] ||= matching_methods(m)[0]
if t && b
@ -12,6 +13,7 @@ class Object
t ? __send__(t, *a, &b) : super
end
end
$VERBOSE = verbose
def matching_methods(s = '', m = callable_methods)
r = /^#{s.to_s.gsub(/./){"(.*?)" + Regexp.escape($&)}}/