aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/ruby.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers/ruby.js')
-rw-r--r--lib/compilers/ruby.js13
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/compilers/ruby.js b/lib/compilers/ruby.js
index af31f8d3d..f725601c4 100644
--- a/lib/compilers/ruby.js
+++ b/lib/compilers/ruby.js
@@ -24,13 +24,15 @@
import path from 'path';
-import { BaseCompiler } from '../base-compiler';
-import { resolvePathFromAppRoot } from '../utils';
+import {BaseCompiler} from '../base-compiler';
+import {resolvePathFromAppRoot} from '../utils';
-import { BaseParser } from './argument-parsers';
+import {BaseParser} from './argument-parsers';
export class RubyCompiler extends BaseCompiler {
- static get key() { return 'ruby'; }
+ static get key() {
+ return 'ruby';
+ }
constructor(compilerInfo, env) {
super(compilerInfo, env);
@@ -82,7 +84,8 @@ export class RubyCompiler extends BaseCompiler {
outputFilename,
'--fname',
path.basename(this.compileFilename),
- '--inputfile'];
+ '--inputfile',
+ ];
}
getArgumentParser() {