1 28 package org.jruby.test; 29 30 import java.io.IOException ; 31 import org.jruby.Ruby; 32 import org.jruby.runtime.load.BasicLibraryService; 33 34 public class BasicLibraryTestService implements BasicLibraryService { 35 public static int counter = 0; 36 37 public boolean basicLoad(Ruby runtime) throws IOException { 38 counter++; 39 return true; 40 } 41 } 42 | Popular Tags |