Add Ruby to 'isInterpretedLanguage'
This commit is contained in:
parent
ac402bf222
commit
a1f71cfecf
3 changed files with 5 additions and 3 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue