class Bodhi::IsNotBlankValidator

Public Class Methods

new(value) click to toggle source
# File lib/bodhi-slam/validators/blank.rb, line 4
def initialize(value); end

Public Instance Methods

to_options() click to toggle source
# File lib/bodhi-slam/validators/blank.rb, line 20
def to_options
  {self.to_sym => true}
end
validate(record, attribute, value) click to toggle source
# File lib/bodhi-slam/validators/blank.rb, line 6
def validate(record, attribute, value)
  unless value.nil?
    
    if value.is_a?(Array)
      unless value.empty?
        record.errors.add(attribute, "must not contain blank Strings") unless value.delete_if{ |v| !v.empty? }.empty?
      end
    else
      record.errors.add(attribute, "can not be blank") if value.empty?
    end
    
  end
end