Class: ReadableValidator
- Inherits:
-
ActiveModel::EachValidator
- Object
- ActiveModel::EachValidator
- ReadableValidator
- Defined in:
- lib/readable_validator.rb
Instance Method Summary collapse
Instance Method Details
#validate_each(record, attribute, value) ⇒ Object
6 7 8 9 10 |
# 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 |