mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
e045f787e1
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@744 19e92222-5c0b-0410-8929-a290d50e31e9
13 lines
344 B
Java
13 lines
344 B
Java
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;
|
|
}
|
|
}
|