class CDMDEXER::UniqueFormatter
Public Class Methods
format(value)
click to toggle source
# File lib/cdmdexer/formatters.rb, line 57 def self.format(value) if value.respond_to?(:uniq) value.uniq else value.titleize end end