Sha256: 3c82b07e0e1498d040332aa1a9bdbba22fc927e558e77905a04aaa07a9112e59
Contents?: true
Size: 502 Bytes
Versions: 10
Compression:
Stored size: 502 Bytes
Contents
package thread_safe; import java.io.IOException; import org.jruby.Ruby; import org.jruby.ext.thread_safe.JRubyCacheBackendLibrary; import org.jruby.runtime.load.BasicLibraryService; // can't name this JRubyCacheBackendService or else JRuby doesn't pick this up public class JrubyCacheBackendService implements BasicLibraryService { public boolean basicLoad(final Ruby runtime) throws IOException { new JRubyCacheBackendLibrary().load(runtime, false); return true; } }
Version data entries
10 entries across 10 versions & 3 rubygems