Flowdock
method

each_localized_path

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: IRB::Locale
each_localized_path(dir, file) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/irb/locale.rb, line 155
    def each_localized_path(dir, file)
      return enum_for(:each_localized_path) unless block_given?
      each_sublocale do |lc|
        yield lc.nil? ? File.join(dir, LOCALE_DIR, file) : File.join(dir, LOCALE_DIR, lc, file)
      end
    end
Register or log in to add new notes.