This commit is contained in:
bjiang
2016-05-06 17:22:39 -04:00
parent 83ab122ddf
commit 06dad8f79c

View File

@@ -27,8 +27,8 @@ import org.owasp.dependencycheck.dependency.Dependency;
/** /**
* This analyzer accepts the fully resolved .gemspec created by the Ruby bundler (http://bundler.io) * This analyzer accepts the fully resolved .gemspec created by the Ruby bundler (http://bundler.io)
* for better evidence results. It also tries to resolve the dependency packagePath * for better evidence results. It also tries to resolve the dependency packagePath
* to where the gem is actually installed. Then during <code>AnalysisPhase.PRE_FINDING_ANALYSIS</code> * to where the gem is actually installed. Then during {@link AnalysisPhase.PRE_FINDING_ANALYSIS}
* <code>DependencyBundlingAnalyzer</code> would merge two .gemspec dependencies together if * {@link DependencyBundlingAnalyzer} will merge two .gemspec dependencies together if
* <code>Dependency.getPackagePath()</code> are the same. * <code>Dependency.getPackagePath()</code> are the same.
* *
* Ruby bundler creates new .gemspec files under a folder called "specifications" at deploy time, * Ruby bundler creates new .gemspec files under a folder called "specifications" at deploy time,
@@ -37,8 +37,8 @@ import org.owasp.dependencycheck.dependency.Dependency;
* evidences, whereas the original .gemspec from source often contain variables for attributes * evidences, whereas the original .gemspec from source often contain variables for attributes
* that can't be used for evidences. * that can't be used for evidences.
* *
* Note this analyzer share the same <code>Settings.KEYS.ANALYZER_RUBY_GEMSPEC_ENABLED</code> as * Note this analyzer share the same {@link Settings.KEYS.ANALYZER_RUBY_GEMSPEC_ENABLED} as
* <code>RubyGemspecAnalyzer</code>, so it will enabled/disabled with <code>RubyGemspecAnalyzer</code>. * {@link RubyGemspecAnalyzer}, so it will enabled/disabled with {@link RubyGemspecAnalyzer}.
* *
* @author Bianca Jiang (biancajiang@gmail.com) * @author Bianca Jiang (biancajiang@gmail.com)
*/ */