class CurrencyValidator

Public Instance Methods

validate_each(record, attribute, value) click to toggle source
# File lib/active_validation/validators/currency_validator.rb, line 5
def validate_each(record, attribute, value)
  return if valid?(value.to_s, options)

  record.errors[attribute] <<
    (options[:message] || I18n.t('active_validation.errors.messages.currency'))
end

Private Instance Methods

valid?(value, options) click to toggle source
# File lib/active_validation/validators/currency_validator.rb, line 22
def valid?(value, options)
  valid_length?(value) &&
    valid_format?(value, options)
end
valid_format?(value, options) click to toggle source
# File lib/active_validation/validators/currency_validator.rb, line 14
def valid_format?(value, options)
  value =~ (options[:strict] ? /^\d+(\.\d{2})$/ : /^\d*+(\.\d{1,2})$/)
end
valid_length?(value) click to toggle source
# File lib/active_validation/validators/currency_validator.rb, line 18
def valid_length?(value)
  value.present?
end