All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jruby.maven.IRBMojo Maven / Gradle / Ivy

The newest version!
package org.jruby.maven;

import org.apache.maven.plugin.MojoExecutionException;

/**
 * @goal irb
 */
public class IRBMojo extends JRubyMojo {
    public IRBMojo() {
        shouldFork = false;
    }

    public void execute() throws MojoExecutionException {
        String commandString = "-S irb";
        if (args != null) {
            commandString += " " + args;
        }
        executeCmd(commandString);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy