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

View file

@ -4,7 +4,9 @@ import * as configUtils from "./config-utils";
import { Logger } from "./logging";
function isInterpretedLanguage(language): boolean {
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.