fluke/devops-service/db/validators/key/file_existence.rb
2015-07-16 17:18:55 +03:00

10 lines
161 B
Ruby

module Validators
module Key
class FileExistence < Base
delegate_to_helper_validator { Helpers::FileExistence.new(@model.path) }
end
end
end