Changeset 439
- Timestamp:
- 07/18/07 23:39:00 (1 year ago)
- Files:
-
- version_0/Rakefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
version_0/Rakefile
r436 r439 163 163 end 164 164 165 166 desc "Clean extension and JAR builds out of the lib directory" 167 task :clean do |t| 168 files = %W(lib/*.so lib/*.jar) 169 files = FileList[files.map { |file| File.join(".", file) }].to_a 170 files.each {|f| 171 $>.puts "unlinking file: #{f}" 172 File.unlink f 173 } 174 end 165 175 166 176 … … 331 341 332 342 343 # This task creates the JRuby JAR file and leaves it in the lib directory. 344 # This step is required before executing the jgem task. 345 desc "Compile the JAR" 346 task :jar do |t| 347 p "JAR?" 348 end 349
