class Danger::PluginFileResolver

Attributes

refs[R]

Public Class Methods

new(references) click to toggle source

Takes an array of files, gems or nothing, then resolves them into paths that should be sent into the documentation parser

# File lib/danger/plugin_support/plugin_file_resolver.rb, line 7
def initialize(references)
  @refs = references
end

Public Instance Methods

resolve() click to toggle source

When given existing paths, map to absolute & existing paths When given a list of gems, resolve for list of gems When empty, imply you want to test the current lib folder as a plugin

# File lib/danger/plugin_support/plugin_file_resolver.rb, line 14
def resolve
  if !refs.nil? and refs.select { |ref| File.file? ref }.any?
    paths = refs.select { |ref| File.file? ref }.map { |path| File.expand_path(path) }
  elsif refs and refs.kind_of? Array
    paths, gems = GemsResolver.new(refs).call
  else
    paths = Dir.glob(File.join(".", "lib/**/*.rb")).map { |path| File.expand_path(path) }
  end

  { paths: paths, gems: gems || [] }
end