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;
}