Sha256: 42bb228fbd0a4969ee0d8b175bc78b6c45c8edc813a3e6255b1684c160048d6f
Contents?: true
Size: 664 Bytes
Versions: 6
Compression:
Stored size: 664 Bytes
Contents
package jubilee; import org.jruby.Ruby; import org.jruby.jubilee.RubyHttpServerResponse; import org.jruby.jubilee.RubyServer; import org.jruby.jubilee.impl.RubyIORackInput; import org.jruby.jubilee.impl.RubyNullIO; import org.jruby.runtime.load.BasicLibraryService; import java.io.IOException; public class JubileeService implements BasicLibraryService { public boolean basicLoad(final Ruby ruby) throws IOException { RubyServer.createServerClass(ruby); RubyHttpServerResponse.createHttpServerResponseClass(ruby); RubyIORackInput.createIORackInputClass(ruby); RubyNullIO.createNullIOClass(ruby); return true; } }
Version data entries
6 entries across 6 versions & 1 rubygems