Sha256: 321c2bcbf75e42060aba5e3129f4b86359ce21125b74a68ea6a01551ddc5dc4c
Contents?: true
Size: 832 Bytes
Versions: 29
Compression:
Stored size: 832 Bytes
Contents
# -*- encoding : utf-8 -*- # This module provides the body of an email export based on the document's semantic values module Blacklight::Document::Email # Return a text string that will be the body of the email def to_email_text semantics = self.to_semantic_values body = [] body << I18n.t('blacklight.email.text.title', value: semantics[:title].join(" ")) unless semantics[:title].blank? body << I18n.t('blacklight.email.text.author', value: semantics[:author].join(" ")) unless semantics[:author].blank? body << I18n.t('blacklight.email.text.format', value: semantics[:format].join(" ")) unless semantics[:format].blank? body << I18n.t('blacklight.email.text.language', value: semantics[:language].join(" ")) unless semantics[:language].blank? return body.join("\n") unless body.empty? end end
Version data entries
29 entries across 29 versions & 1 rubygems