class ReadableValidator
Public Instance Methods
Source
# File lib/readable_validator.rb, line 6 def validate_each(record, attribute, value) if !value.nil? && !File.readable?(value) record.errors.add(attribute, "can't be unreadable path") end end
# File lib/readable_validator.rb, line 6 def validate_each(record, attribute, value) if !value.nil? && !File.readable?(value) record.errors.add(attribute, "can't be unreadable path") end end