Package org.jruby.embed

Examples of org.jruby.embed.ScriptingContainer


    private final RubyExecuteTaskFactory factory;

    public RubyParser( ExecuteManager executeManager ) throws IOException
    {
        this.executeManager = executeManager;
        this.jruby = new ScriptingContainer();
        this.jruby.setCompatVersion( CompatVersion.RUBY1_9 );
        this.parser = runScript( "parser.rb" );
        this.factory = new RubyExecuteTaskFactory( jruby );
    }
View Full Code Here

TOP

Related Classes of org.jruby.embed.ScriptingContainer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.