Package bin_utils

Source Code of bin_utils.BinUtilsService

package bin_utils;

import org.jruby.Ruby;
import org.jruby.RubyArray;
import org.jruby.RubyClass;
import org.jruby.RubyFixnum;
import org.jruby.RubyModule;
import org.jruby.runtime.builtin.IRubyObject;
import org.jruby.runtime.load.BasicLibraryService;

public class BinUtilsService implements BasicLibraryService {
    public boolean basicLoad(Ruby ruby) {
  RubyModule bin_utils = ruby.defineModule("BinUtils");
  RubyModule java_utils = bin_utils.defineModuleUnder("Native");
  java_utils.defineAnnotatedMethods(JavaUtils.class);
  java_utils.extend_object(java_utils);
  return true;
    }
}
TOP

Related Classes of bin_utils.BinUtilsService

TOP
Copyright © 2018 www.massapi.com. 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.