J'ai essayé de bricoler avec un module de cache global, mais je n'arrive pas à comprendre pourquoi cela ne fonctionne pas.alias_method et class_methods ne se mélangent pas?
Quelqu'un a-t-il des suggestions?
C'est l'erreur:
NameError: undefined method `get' for module `Cache'
from (irb):21:in `alias_method'
... généré par ce code:
module Cache
def self.get
puts "original"
end
end
module Cache
def self.get_modified
puts "New get"
end
end
def peek_a_boo
Cache.module_eval do
# make :get_not_modified
alias_method :get_not_modified, :get
alias_method :get, :get_modified
end
Cache.get
Cache.module_eval do
alias_method :get, :get_not_modified
end
end
# test first round
peek_a_boo
# test second round
peek_a_boo
Vous n'avez pas besoin toute 'Cache.module_eval faire classe <
Chuck
@Chuck, bon point; actualisé! – molf