tsantos-rakejava 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/rakejava.rb +2 -1
- metadata +1 -1
data/lib/rakejava.rb
CHANGED
|
@@ -91,6 +91,7 @@ class JarFiles < Rake::FileList
|
|
|
91
91
|
@resolving = true
|
|
92
92
|
pushd @root
|
|
93
93
|
super
|
|
94
|
+
puts "Resolving JarFiles list"
|
|
94
95
|
# Hack time because the jar command is busted. Every arg after the
|
|
95
96
|
# first file listed after a -C needs to have paths relative to the
|
|
96
97
|
# command-launch rather than the -C specified dir. The first file arg
|
|
@@ -197,7 +198,7 @@ module RakeJava
|
|
|
197
198
|
class JarTask < Rake::Task
|
|
198
199
|
include RakeJavaUtil
|
|
199
200
|
|
|
200
|
-
attr_accessor :
|
|
201
|
+
attr_accessor :files, :main_class, :manifest
|
|
201
202
|
|
|
202
203
|
def initialize name, app
|
|
203
204
|
super
|