public
Fork of nicksieger/warbler
Description: Warbler chirpily constructs .war files of your Rails applications.
Homepage: http://caldersphere.rubyforge.org/warbler
Clone URL: git://github.com/dysinger/warbler.git
Search Repo:
warbler / History.txt
100644 48 lines (35 sloc) 2.062 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
== 0.9.9
 
* Now shipping with JRuby-Rack 0.9!
* Upgrade to JRuby 1.1.1
* warble.rb and web.xml.erb have changed as a result of the change to JRuby-Rack -- we
  recommend comparing the new base copies with any existing configuration you have to
  make sure you pick up the differences.
* Config changes:
** config.webxml.booter chooses what kind of application to use (:rails, :merb or plain :rack).
** config.webxml.pool.* have been replaced by config.webxml.jruby.(min|max).runtimes
** config.webxml.standalone and config.webxml.jruby_home no longer have any effect.
 
== 0.9.5
 
* Fix bug in plugin warbler.rake task file that would favor loading warbler from gems before the version
  installed as a plugin
* Upgrade to JRuby 1.1 final and Goldspike 1.6.1
 
== 0.9.4
 
* Update bundled JRuby to 1.1RC3 and Goldspike to 1.6.
* Fix inclusion of gems with platform-specific bits (e.g., Hpricot)
 
== 0.9.3
 
* Update bundled JRuby to 1.1RC2, and Goldspike to 1.5.
* The bundled JRuby and Goldspike now require JDK 5 or greater. If you wish to use JDK 1.4, use Warbler 0.9.2.
 
== 0.9.2
 
* Update bundled JRuby to version 1.0.3 and Goldspike 1.4.
* Add config.java_classes to allow you to copy loose Java classes into WEB-INF/classes.
* Make jar command a single command string so that jar creation doesn't fail (works around bug in JRuby 1.0.2)
* Use File.join to form staging directory, should produce the proper jar-command path in Windows
 
== 0.9.1
 
* Add rake >= 0.7.3 as a dependency in the gem specification.
* Add debug tasks: war:debug, war:debug:gems, war:debug:public, war:debug:app, war:debug:includes,
  war:debug:excludes, war:debug:java_libs gives you a breakdown of what Warbler expects to package.
 
== 0.9
 
* Birthday! Warbler is a gem to make a .war file out of a Rails project. The intent is to provide a
  minimal, flexible, ruby-like way to bundle up all of your application files for deployment to a
  Java application server.
* Bundled versions: goldspike-1.4-SNAPSHOT and jruby-complete-1.0.1
* Works as both a gem (rake application) or a plugin