10 lines
161 B
Ruby
10 lines
161 B
Ruby
module Validators
|
|
module Key
|
|
class FileExistence < Base
|
|
|
|
delegate_to_helper_validator { Helpers::FileExistence.new(@model.path) }
|
|
|
|
end
|
|
end
|
|
end
|