fluke/devops-service/db/validators/key/file_existence.rb

10 lines
205 B
Ruby
Raw Normal View History

2015-09-01 16:54:21 +03:00
require_relative '../helpers/file_existence'
2015-02-12 13:01:05 +03:00
module Validators
2015-07-16 17:18:55 +03:00
module Key
class FileExistence < Base
delegate_to_helper_validator { Helpers::FileExistence.new(@model.path) }
end
2015-02-12 13:01:05 +03:00
end
end