class CDMDEXER::SplitFormatter

Public Class Methods

format(value) click to toggle source
# File lib/cdmdexer/formatters.rb, line 110
def self.format(value)
  (value.respond_to?(:split)) ? value.split(';') : value
end