module Reek::Configuration::ExcludedPaths
Array extension for excluded paths.
Public Instance Methods
Source
# File lib/reek/configuration/excluded_paths.rb, line 16 def add(paths) paths.flat_map { |path| Dir[path] }. each { |path| self << Pathname(path) } end
@param paths [String] @return [undefined]