Sha256: 157bed66163aa7dbf5b3dd8da93a2d93413da07513f3d79bf2029c2fd7443e66
Contents?: true
Size: 1.52 KB
Versions: 1
Compression:
Stored size: 1.52 KB
Contents
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <welcome-file-list> <welcome-file>/index.html</welcome-file> </welcome-file-list> <context-param> <param-name>jruby.max.runtimes</param-name> <param-value>1</param-value> </context-param> <context-param> <param-name>jruby.min.runtimes</param-name> <param-value>1</param-value> </context-param> <context-param> <param-name>jruby.compat.version</param-name> <param-value>1.9</param-value> </context-param> <!-- for more config options see https://github.com/jruby/jruby-rack --> <filter> <filter-name>RackFilter</filter-name> <filter-class>org.jruby.rack.RackFilter</filter-class> <!-- optional filter configuration init-params : --> <init-param> <param-name>resetUnhandledResponse</param-name> <param-value>true</param-value> <!-- true (default), false or buffer --> </init-param> <init-param> <param-name>addsHtmlToPathInfo</param-name> <param-value>true</param-value> <!-- true (default), false --> </init-param> <init-param> <param-name>verifiesHtmlResource</param-name> <param-value>false</param-value> <!-- true, false (default) --> </init-param> </filter> <filter-mapping> <filter-name>RackFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <listener> <listener-class>org.jruby.rack.RackServletContextListener</listener-class> </listener> </web-app>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gwt-run-0.1.0 | lib/maven/gwt/rack-web.xml~ |