compressit 1.0.1 → 1.0.2
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/compressit/base.rb +0 -1
- data/lib/compressit/version.rb +1 -1
- metadata +1 -1
data/lib/compressit/base.rb
CHANGED
@@ -18,7 +18,6 @@ module Compressit
|
|
18
18
|
# compress each file in @files_to_compress and save the compressed file to @destination_path
|
19
19
|
begin
|
20
20
|
@files_to_compress.each do |file|
|
21
|
-
puts "FILE: #{file}"
|
22
21
|
unless File.path(file).include?('compressed')
|
23
22
|
`#{@java} -jar #{@yuicompressor} #{file} >> #{File.path(@destination_path)}/#{@compressed}`
|
24
23
|
puts "Added: #{File.basename(file)}... \n"
|
data/lib/compressit/version.rb
CHANGED