Sha256: 43a18167fb6e14165341b7003f282a85be2c2f323c8704d1faeb17ad84503a68
Contents?: true
Size: 761 Bytes
Versions: 97
Compression:
Stored size: 761 Bytes
Contents
require "pathname" module CC module Analyzer module IssueValidations class RelativePathValidation < Validation BUILDER_CODE_PATH = "/tmp/workspace/code".freeze def valid? path && !path.start_with?("/") && ( relative_to?(MountedPath.code.container_path) || relative_to?(BUILDER_CODE_PATH) ) end def message "Path must be relative to the project directory" end private def relative_to?(directory) expanded_base = Pathname.new(directory).expand_path.to_s expanded_path = Pathname.new(path).expand_path.to_s expanded_path.start_with?(expanded_base) end end end end end
Version data entries
97 entries across 97 versions & 2 rubygems