module I18nChecker::Collectible
Public Instance Methods
collect(file)
click to toggle source
# File lib/i18n_checker/collectible.rb, line 3 def collect(file) end
collect_all(files)
click to toggle source
# File lib/i18n_checker/collectible.rb, line 6 def collect_all(files) texts = files.map { |file| collect(file) } texts.reduce { |merged_texts, n| merged_texts.concat(n) } end