Sha256: 3d0164133357f709e94812ef08b991f123ec19128957b21b1fe86503270ad5cd

Contents?: true

Size: 505 Bytes

Versions: 41

Compression:

Stored size: 505 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.IOBuffer;
import org.jruby.puma.MiniSSL;

public class PumaHttp11Service implements BasicLibraryService { 
    public boolean basicLoad(final Ruby runtime) throws IOException {
        Http11.createHttp11(runtime);
        IOBuffer.createIOBuffer(runtime);
        MiniSSL.createMiniSSL(runtime);
        return true;
    }
}

Version data entries

41 entries across 41 versions & 3 rubygems

Version Path
puma-4.0.0 ext/puma_http11/PumaHttp11Service.java