Sha256: 2253cc2fad78c532105afd4beaaca80c9e9a246a2587f9c7dca378623d08acfd
Contents?: true
Size: 569 Bytes
Versions: 19
Compression:
Stored size: 569 Bytes
Contents
package rcd_test; import org.jruby.Ruby; import org.jruby.RubyClass; import org.jruby.RubyModule; import org.jruby.runtime.ObjectAllocator; import org.jruby.runtime.builtin.IRubyObject; import org.jruby.runtime.load.BasicLibraryService; import java.io.IOException; public class RcdTestExtService implements BasicLibraryService { @Override public boolean basicLoad(final Ruby ruby) throws IOException { RubyModule rb_mRcdTest = ruby.defineModule("RcdTest"); rb_mRcdTest.defineAnnotatedMethods(RubyRcdTest.class); return true; } }
Version data entries
19 entries across 19 versions & 1 rubygems