class Athena::Formats::Lingo::MultiKey
“Fax;Faxkopie;Telefax”
Constants
- SEPARATOR
Public Instance Methods
convert(record)
click to toggle source
Calls superclass method
Athena::Formats::Lingo#convert
# File lib/athena/formats/lingo.rb 82 def convert(record) 83 super.map { |terms| 84 terms.join(SEPARATOR) if check_args('> 1', terms.size) { |actual| 85 actual > 1 86 } 87 }.compact 88 end