Skip to content

Commit 590c245

Browse files
authored
Merge pull request #593 from github/aibaars/ruby-is-interpreted
Add Ruby to 'isInterpretedLanguage'
2 parents ac402bf + a1f71cf commit 590c245

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

lib/analysis-paths.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analysis-paths.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/analysis-paths.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import * as configUtils from "./config-utils";
44
import { Logger } from "./logging";
55

66
function isInterpretedLanguage(language): boolean {
7-
return language === "javascript" || language === "python";
7+
return (
8+
language === "javascript" || language === "python" || language === "ruby"
9+
);
810
}
911

1012
// Matches a string containing only characters that are legal to include in paths on windows.

0 commit comments

Comments
 (0)