class CDMDEXER::ToIFormatter

Public Class Methods

format(value) click to toggle source
# File lib/cdmdexer/formatters.rb, line 154
def self.format(value)
  value.to_i if value.respond_to?(:to_i)
end