Add Ruby to 'isInterpretedLanguage'

This commit is contained in:
Arthur Baars 2021-06-24 18:52:53 +02:00
parent ac402bf222
commit a1f71cfecf
3 changed files with 5 additions and 3 deletions

2
lib/analysis-paths.js generated
View file

@ -9,7 +9,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
Object.defineProperty(exports, "__esModule", { value: true });
const path = __importStar(require("path"));
function isInterpretedLanguage(language) {
return language === "javascript" || language === "python";
return (language === "javascript" || language === "python" || language === "ruby");
}
// Matches a string containing only characters that are legal to include in paths on windows.
exports.legalWindowsPathCharactersRegex = /^[^<>:"|?]*$/;