public
Rubygem
Description: Warbler chirpily constructs .war files of your Rails applications.
Homepage: http://caldersphere.rubyforge.org/warbler
Clone URL: git://github.com/nicksieger/warbler.git
Update history for release
nicksieger (author)
Sat May 03 12:03:20 -0700 2008
commit  11da14c779f8a8d0b875eb169e77316a1605a6c8
tree    eeb9eadf3f8b666d2b0d5e07ef05b33865c8757e
parent  a8d5ad6f9a58244334b1ddcfc58ff2b8efde6c3f
...
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
0
@@ -1,3 +1,15 @@
0
+== 0.9.9
0
+
0
+* Now shipping with JRuby-Rack 0.9!
0
+* Upgrade to JRuby 1.1.1
0
+* warble.rb and web.xml.erb have changed as a result of the change to JRuby-Rack -- we
0
+ recommend comparing the new base copies with any existing configuration you have to
0
+ make sure you pick up the differences.
0
+* Config changes:
0
+** config.webxml.booter chooses what kind of application to use (:rails, :merb or plain :rack).
0
+** config.webxml.pool.* have been replaced by config.webxml.jruby.(min|max).runtimes
0
+** config.webxml.standalone and config.webxml.jruby_home no longer have any effect.
0
+
0
 == 0.9.5
0
 
0
 * Fix bug in plugin warbler.rake task file that would favor loading warbler from gems before the version
...
2
3
4
5
 
6
7
8
9
10
 
11
12
13
...
22
23
24
25
 
26
27
28
29
30
31
 
32
33
...
2
3
4
 
5
6
7
8
9
 
10
11
12
13
...
22
23
24
 
25
26
27
28
29
30
 
31
32
33
0
@@ -2,12 +2,12 @@
0
   "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
0
   "http://java.sun.com/dtd/web-app_2_3.dtd">
0
 <web-app>
0
- <% webxml.context_params.each do |k,v| %>
0
+<% webxml.context_params.each do |k,v| %>
0
   <context-param>
0
     <param-name><%= k %></param-name>
0
     <param-value><%= v %></param-value>
0
   </context-param>
0
- <% end %>
0
+<% end %>
0
 
0
   <filter>
0
     <filter-name>RackFilter</filter-name>
0
@@ -22,11 +22,11 @@
0
     <listener-class><%= webxml.servlet_context_listener %></listener-class>
0
   </listener>
0
 
0
- <% if webxml.jndi %>
0
+<% if webxml.jndi %>
0
   <resource-ref>
0
     <res-ref-name><%= webxml.jndi %></res-ref-name>
0
     <res-type>javax.sql.DataSource</res-type>
0
     <res-auth>Container</res-auth>
0
   </resource-ref>
0
- <% end %>
0
+<% end %>
0
 </web-app>
0
\ No newline at end of file

Comments

    No one has commented yet.