summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraycabta <aycabta@gmail.com>2019-11-25 07:27:15 +0900
committeraycabta <aycabta@gmail.com>2019-11-25 07:27:15 +0900
commitfd956c72eaeb07d26d61310a9e4b55b500237c02 (patch)
tree7ece90ae4f5b76a7a2817befe1246892f3e632a3
parent90872520674dcc070d693430ee139042ba514591 (diff)
Cache loaded module to suppress method redefined warnings
-rw-r--r--lib/irb/locale.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/irb/locale.rb b/lib/irb/locale.rb
index b713f50e76..ba833eced4 100644
--- a/lib/irb/locale.rb
+++ b/lib/irb/locale.rb
@@ -21,6 +21,7 @@ module IRB # :nodoc:
LOCALE_DIR = "/lc/"
@@legacy_encoding_alias_map = {}.freeze
+ @@loaded = []
def initialize(locale = nil)
@lang = @territory = @encoding_name = @modifier = nil
@@ -107,7 +108,10 @@ module IRB # :nodoc:
def load(file, priv=nil)
found = find(file)
if found
- return real_load(found, priv)
+ unless @@loaded.include?(found)
+ @@loaded << found # cache
+ return real_load(found, priv)
+ end
else
raise LoadError, "No such file to load -- #{file}"
end