Package org.jruby.util

Examples of org.jruby.util.BuiltinScript


            }
        });
       
        String[] builtins = {"fcntl", "yaml", "yaml/syck", "jsignal" };
        for (String library : builtins) {
            addBuiltinIfAllowed(library + ".rb", new BuiltinScript(library));
        }
       
        RubyKernel.autoload(topSelf, newSymbol("Java"), newString("java"));

        if (config.getCompatVersion() == CompatVersion.RUBY1_9) {
View Full Code Here


            }
        });
       
        String[] builtins = {"jsignal_internal", "generator_internal"};
        for (String library : builtins) {
            addBuiltinIfAllowed(library + ".rb", new BuiltinScript(library));
        }
       
        RubyKernel.autoload(topSelf, newSymbol("Java"), newString("java"));

        if(is1_9()) {
View Full Code Here

TOP

Related Classes of org.jruby.util.BuiltinScript

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.