class ReadableValidator

Public Instance Methods

validate_each(record, attribute, value) click to toggle source
# File lib/readable_validator.rb, line 4
def validate_each(record, attribute, value)
  if !value.nil? && !File.readable?(value)
    record.errors.add(attribute, "can't be unreadable path")
  end
end