lib/google-map-stitch/stitcher.rb in google-map-stitch-0.1.1 vs lib/google-map-stitch/stitcher.rb in google-map-stitch-0.1.2

- old
+ new

@@ -25,11 +25,11 @@ column = Magick::ImageList.new row.each do |file| puts "Combining #{file}" column.push(Magick::Image.read(file).first) end - output.push(column.append(false)) + output.push(column.append(true)) end - output.append(true).write(@output_file) + output.append(false).write(@output_file) end end end