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
Search Repo:
Try to make gem configuration comments clearer (thanks VVSiz and 
harm_kabisa)
nicksieger (author)
Mon Jun 30 08:50:24 -0700 2008
commit  325947fd2ba159218790ea98c39cc4c32a10cfcc
tree    2304e55d113c067d28fdfd96b5efa2ad40ac0012
parent  02ed0e57ca5ec582cfb0d2fe7c967b39243e709a
...
27
28
29
30
31
32
33
 
 
 
 
34
35
 
 
 
 
 
 
 
36
37
38
...
27
28
29
 
 
 
 
30
31
32
33
34
 
35
36
37
38
39
40
41
42
43
44
0
@@ -27,12 +27,18 @@ Warbler::Config.new do |config|
0
   # for details of how to specify a pathmap.
0
   # config.pathmaps.java_classes << "%{target/classes/,}p"
0
 
0
- # Gems to be packaged in the webapp. Note that Rails gems are added to this
0
- # list if vendor/rails is not present, so be sure to include rails if you
0
- # overwrite the value
0
- # config.gems = ["activerecord-jdbc-adapter", "jruby-openssl"]
0
+ # Gems to be included. You need to tell Warbler which gems your application needs
0
+ # so that they can be packaged in the war file.
0
+ # The Rails gems are included by default unless the vendor/rails directory is present.
0
+ # config.gems += ["activerecord-jdbcmysql-adapter", "jruby-openssl"]
0
   # config.gems << "tzinfo"
0
- # config.gems["rails"] = "1.2.3"
0
+
0
+ # Uncomment this if you don't want to package rails gem.
0
+ # config.gems -= ["rails"]
0
+
0
+ # The most recent versions of gems are used.
0
+ # You can specify versions of gems by using a hash assignment:
0
+ # config.gems["rails"] = "2.0.2"
0
 
0
   # Include gem dependencies not mentioned specifically
0
   config.gem_dependencies = true

Comments

    No one has commented yet.