Sha256: 529250c8ee57edf40808ac46e3c9e1d127baae88bc2e0410a20d12bf478ea8ac
Contents?: true
Size: 337 Bytes
Versions: 17
Compression:
Stored size: 337 Bytes
Contents
class FloatFormatValidator < CsvRowModel::Validators::NumberValidator # :nodoc: def validate_each(record, attribute, value) before, after = before_after_decimal(value) return if value.present? && value.to_f.to_s =~ /#{before}\.#{after.present? ? after : 0}/ record.errors.add(attribute, 'is not a Float format') end end
Version data entries
17 entries across 17 versions & 1 rubygems