Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我做了一个 rails rake 任务,上传/裁剪/重新调整大小(用回形针)愚蠢的图像数量。
我想知道如何在终端运行时向终端输出一条消息(例如处理过的chipolata.jpg),最后,它需要几分钟的运行时间,并且有一点反馈会很好。
谢谢。
只需使用标准的 Rubyputs命令:
puts
puts "Hello from Rake!"
您可以使用字符串插值在循环中输出各个文件名:
puts "#{image_filename} processed"
在您的循环中只需调用:
puts "chipolata.jpg processed"