Rails Rake 任务,在期间和结束时输出一条消息

发布于 2024-08-21 04:21:00 字数 138 浏览 3 评论 0原文

我做了一个 Rails rake 任务,上传/裁剪/调整大小(用回形针)愚蠢的数量的图像。

我想知道如何在运行时向终端输出一条消息(例如处理的chipolata.jpg),最后,运行需要几分钟的时间,并且有一点反馈会很好。

谢谢。

I've made a rails rake task that uploads/crops/re-sizes (with paperclip) silly amounts of images.

I wanted to know how to output a message to the terminal when it was running (e.g. chipolata.jpg processed) and at the end, it takes a good few minutes to run and a little feedback would be good.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鹿! 2024-08-28 04:21:00

只需使用标准 Ruby puts 命令:

puts "Hello from Rake!"

您可以使用字符串插值来输出循环内的各个文件名:

puts "#{image_filename} processed"

Just use the standard Ruby puts command:

puts "Hello from Rake!"

You can use string interpolation to output the individual file names within the loop:

puts "#{image_filename} processed"
末骤雨初歇 2024-08-28 04:21:00

在你的循环中只需调用:

puts "chipolata.jpg processed"

In your loop simply call:

puts "chipolata.jpg processed"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文