unicorn.git  about / heads / tags
Rack HTTP server for Unix and fast clients
blob 5d78c491c7f3f020db286e313ffdef8834d0f92b 344 bytes (raw)
$ git show v0.0.0:ext/http11_java/Http11Service.java	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
 
import java.io.IOException;
        
import org.jruby.Ruby;
import org.jruby.runtime.load.BasicLibraryService;

import org.jruby.mongrel.Http11;

public class Http11Service implements BasicLibraryService { 
    public boolean basicLoad(final Ruby runtime) throws IOException {
        Http11.createHttp11(runtime);
        return true;
    }
}

git clone https://yhbt.net/unicorn.git