Sha256: 1f4422d369722b85bd01e6bd411a6a2ef239853e268bda21beb891891823e401
Contents?: true
Size: 431 Bytes
Versions: 257
Compression:
Stored size: 431 Bytes
Contents
package puma; import java.io.IOException; import org.jruby.Ruby; import org.jruby.runtime.load.BasicLibraryService; import org.jruby.puma.Http11; import org.jruby.puma.MiniSSL; public class PumaHttp11Service implements BasicLibraryService { public boolean basicLoad(final Ruby runtime) throws IOException { Http11.createHttp11(runtime); MiniSSL.createMiniSSL(runtime); return true; } }
Version data entries
257 entries across 252 versions & 21 rubygems