Sha256: 762c2bf13aad10039bd02c55e394d7b244968f7ab6bab5af4fc7c5e005422e87
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
class AwesomeTranslations::Handlers::ErbHandler < AwesomeTranslations::Handlers::BaseHandler METHOD_NAMES = ["_", "t"] VALID_BEGINNING = '(^|\s+|\(|\{|<%=\s*)' def groups ArrayEnumerator.new do |yielder| erb_inspector.files.each do |file| id = file.file_path.gsub(/[^A-z0-9]/, "_") group = AwesomeTranslations::Group.new( id: id, handler: self, data: { name: file.file_path, root_path: file.root_path, full_path: file.full_path, file_path: file.file_path } ) yielder << group if translations_for_group(group).any? end end end def translations_for_group(group) ArrayEnumerator.new do |yielder| # Parse views for translations. file = erb_inspector.file(group.data.fetch(:root_path), group.data.fetch(:file_path)) file.translations.each do |translation| next if translation.global? yielder << translation.model end end end private def erb_inspector @erb_inspector ||= AwesomeTranslations::ErbInspector.new( exts: [".erb", ".haml"] ) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
awesome_translations-0.0.25 | lib/awesome_translations/handlers/erb_handler.rb |