Sha256: 061117fd69f50a2b5758c99786f248df0f0165f26dd4cbb00b45a4e2a7100d42
Contents?: true
Size: 501 Bytes
Versions: 26
Compression:
Stored size: 501 Bytes
Contents
package org.embulk.cli; public class Main { public static void main(String[] args) { // TODO set GEM_HOME to point the internal gem repository created by gem-maven-plugin? // $ java -jar jruby-complete.jar classpath:embulk/command/embulk.rb "$@" String[] jrubyArgs = new String[args.length + 1]; jrubyArgs[0] = "classpath:embulk/command/embulk.rb"; System.arraycopy(args, 0, jrubyArgs, 1, args.length); org.jruby.Main.main(jrubyArgs); } }
Version data entries
26 entries across 26 versions & 1 rubygems