Sha256: cf72ad64b945dfbee17895383aea9bc49a3c6589fb7a15dcb2b4c04a8ed0412e
Contents?: true
Size: 477 Bytes
Versions: 9
Compression:
Stored size: 477 Bytes
Contents
# frozen_string_literal: true require_relative './configuration_validator' require_relative '../errors/config_file_error' module Reek module Configuration # # Array extension for excluded paths. # module ExcludedPaths include ConfigurationValidator # @param paths [String] # @return [undefined] def add(paths) paths.flat_map { |path| Dir[path] }. each { |path| self << Pathname(path) } end end end end
Version data entries
9 entries across 9 versions & 1 rubygems