fluke/devops-service/db/validators/key/file_existence.rb
2015-09-01 17:08:02 +03:00

10 lines
205 B
Ruby

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