Rails Rake 任务,在期间和结束时输出一条消息
我做了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用标准 Ruby
puts
命令:您可以使用字符串插值来输出循环内的各个文件名:
Just use the standard Ruby
puts
command:You can use string interpolation to output the individual file names within the loop:
在你的循环中只需调用:
In your loop simply call: