Sha256: d90c0cc5d414b7082a41276157390d9a7578056a730ce8aad31b5bc9c39a643f
Contents?: true
Size: 368 Bytes
Versions: 6
Compression:
Stored size: 368 Bytes
Contents
import java.io.IOException; import org.jruby.Ruby; import org.jruby.runtime.load.BasicLibraryService; import org.msgpack.jruby.MessagePackLibrary; public class MsgpackJrubyService implements BasicLibraryService { public boolean basicLoad(final Ruby runtime) throws IOException { new MessagePackLibrary().load(runtime, false); return true; } }
Version data entries
6 entries across 6 versions & 1 rubygems