Created
April 5, 2010 22:49
-
-
Save donv/356989 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.jruby.RubyInstanceConfig.CompileMode; | |
import org.jruby.embed.LocalContextScope; | |
import org.jruby.embed.ScriptingContainer; | |
public class Test { | |
public static void main(String[] args) { | |
System.setProperty("jruby.home", "/Users/uwe/workspace/aifudis/aifudis.dispatcher/platform/jruby"); | |
ScriptingContainer container = new ScriptingContainer(LocalContextScope.THREADSAFE); | |
container.getProvider().getRubyInstanceConfig().setCompileMode(CompileMode.JIT); | |
container.put("my_var", "Hullo!"); | |
content = container.runScriptlet("puts my_var"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment