method
search_file
v1_9_1_378 -
Show latest stable
- Class:
IRB::Locale
search_file(path, file)private
No documentation available.
# File lib/irb/locale.rb, line 156
def search_file(path, file)
each_sublocale do |lc|
full_path = path + lc_path(file, lc)
return full_path if File.exist?(full_path)
end
nil
end