public
Description: Rack for JRuby and Java appservers
Homepage: http://jruby-rack.kenai.com/pages/Home
Clone URL: git://github.com/nicksieger/jruby-rack.git
jruby-rack / examples / rails / appengine-web.xml
100644 16 lines (13 sloc) 0.497 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
  <application>jruby-rack</application>
  <version>4</version>
 
  <static-files/>
 
  <resource-files/>
 
  <system-properties>
    <property name="jruby.management.enabled" value="false" />
    <property name="os.arch" value="" />
    <property name="jruby.rack.logging" value="stdout"/>
    <property name="jruby.rack.input.rewindable" value="false"/>
  </system-properties>
</appengine-web-app>