Title: [734] trunk/rails-integration/plugins/goldspike-snapshot/lib: Tidy up output messages
Revision
734
Author
tantalon
Date
2007-09-02 20:36:41 -0400 (Sun, 02 Sep 2007)

Log Message

Tidy up output messages

Modified Paths


Diff

Modified: trunk/rails-integration/plugins/goldspike-snapshot/lib/packer.rb (733 => 734)


--- trunk/rails-integration/plugins/goldspike-snapshot/lib/packer.rb	2007-09-03 00:27:13 UTC (rev 733)
+++ trunk/rails-integration/plugins/goldspike-snapshot/lib/packer.rb	2007-09-03 00:36:41 UTC (rev 734)
@@ -109,11 +109,11 @@
       File.makedirs(lib)
       WLog.debug("need to assemble #{config.java_libraries.size} libraries")
       for library in config.java_libraries.values
-        WLog.debug("library to assemble " + library.name )
+        WLog.debug("library to assemble " + library.name)
         target = File.join(lib, library.file)
         WLog.debug("should install to " + target)
         unless File.exists?(target)
-          WLog.info "  adding Java library #{library}"
+          WLog.info "    Adding #{library}"
           library.install(config, target)
         end
       end
@@ -148,7 +148,7 @@
 
       unless File.exists?(gem_target)
         # package up the gem
-        WLog.info "  adding Ruby gem #{gem.name} version #{gem.version}"
+        WLog.info "    Adding #{gem.name} version #{gem.version}"
         # copy the specification
         install(gem.loaded_from, File.join(target_gem_home, 'specifications'), 0644)
         # copy the files
@@ -162,7 +162,7 @@
       # handle dependencies
       if config.add_gem_dependencies
         for gem_child in gem.dependencies
-          #puts "  Gem #{gem.name} requires #{gem_child.name} "
+          WLog.debug "  Gem #{gem.name} requires #{gem_child.name} "
           copy_gem(gem_child.name, gem_child.requirements_list, target_gem_home)
         end
       end

Modified: trunk/rails-integration/plugins/goldspike-snapshot/lib/war_config.rb (733 => 734)


--- trunk/rails-integration/plugins/goldspike-snapshot/lib/war_config.rb	2007-09-03 00:27:13 UTC (rev 733)
+++ trunk/rails-integration/plugins/goldspike-snapshot/lib/war_config.rb	2007-09-03 00:36:41 UTC (rev 734)
@@ -103,7 +103,7 @@
       add_library('goldspike', :version => '1.3', :group => 'org.jruby.extras')
       add_library('activation', :version => '1.1', :group => 'javax.activation')
       add_library('commons-pool', :version => '1.3', :group => 'commons-pool')
-      add_library('bcprov-jdk14', :version => '124', :group => 'bouncycastle')
+      #add_library('bcprov-jdk14', :version => '124', :group => 'bouncycastle')
 
       # default gems
       @gem_libraries = {}
_______________________________________________
Jruby-extras-devel mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/jruby-extras-devel

Reply via email to